Home
last modified time | relevance | path

Searched full:arguments (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/Zephyr-latest/samples/boards/nordic/coresight_stm/
DREADME.rst73 rad: Timing for log message with 0 arguments: 5.10us
75 rad: Timing for log message with 2 arguments: 6.0us
76 rad: Timing for log message with 3 arguments: 6.40us
80 flpr: Timing for log message with 0 arguments: 1.20us
82 flpr: Timing for log message with 2 arguments: 1.20us
83 flpr: Timing for log message with 3 arguments: 1.30us
87 app: Timing for log message with 0 arguments: 1.80us
89 app: Timing for log message with 2 arguments: 2.0us
90 app: Timing for log message with 3 arguments: 2.10us
94 ppr: Timing for log message with 0 arguments: 25.20us
[all …]
Dsample.yaml43 - "Timing for log message with 0 arguments:"
45 - "Timing for log message with 2 arguments:"
46 - "Timing for log message with 3 arguments:"
/Zephyr-latest/samples/subsys/logging/logger/src/
Dext_log_system.c20 ext_log(EXT_LOG_ERROR, "error level log, 1 arguments: %d", 1); in ext_log_system_foo()
22 ext_log(EXT_LOG_WARNING, "warning level log, 2 arguments: %d %d", 1, 2); in ext_log_system_foo()
24 ext_log(EXT_LOG_NOTICE, "notice level log, 3 arguments: %d, %s, 0x%08x", in ext_log_system_foo()
27 ext_log(EXT_LOG_INFO, "info level log, 4 arguments : %d %d %d %d", in ext_log_system_foo()
30 ext_log(EXT_LOG_DEBUG, "debug level log, 5 arguments: %d %d %d %d %d", in ext_log_system_foo()
/Zephyr-latest/tests/boards/nrf/coresight_stm/
Dtestcase.yaml60 - "Timing for log message with 0 arguments:"
62 - "Timing for log message with 2 arguments:"
63 - "Timing for log message with 3 arguments:"
79 - "Timing for log message with 0 arguments:"
81 - "Timing for log message with 2 arguments:"
82 - "Timing for log message with 3 arguments:"
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/
Desiost_args.py32 """creates an arguments object for the ESIOST,
33 the arguments are taken from the command line and/or
54 arguments = _create_parser("")
55 valid_arguments = arguments[0]
56 invalid_arguments = arguments[1]
79 """populate the esiost arguments according to the command line/ args file"""
95 """create argument parser according to pre-defined arguments
97 :param arg_list: when empty, parses command line arguments,
/Zephyr-latest/drivers/gnss/
Dgnss_nmea0183.h31 * @param ... Arguments
40 * @param argv Array of arguments split by ',' including message id and checksum
41 * @param argc Number of arguments in argv
107 * @param argv Array of arguments split by ',' including message id and checksum
108 * @param argc Number of arguments in argv'
123 * @param argv Array of arguments split by ',' including message id and checksum
124 * @param argc Number of arguments in argv'
150 * @param argv Array of arguments split by ',' including message id and checksum
151 * @param argc Number of arguments in argv
166 * @param argv Array of arguments split by ',' including message id and checksum
[all …]
/Zephyr-latest/samples/kernel/bootargs/
DREADME.rst42 argv[4] = arguments
61 To pass your own arguments you can manually invoke qemu with ``-append "your args"``, for example:
65 …-system-x86_64 -kernel ./build/zephyr/zephyr.elf -nographic -append "This is 'a list of' arguments"
76 argv[4] = arguments
103 To pass your own arguments you can press ESC and write your arguments after name of the Zephyr efi …
108 Shell> run.efi This is 'a list of' arguments
122 argv[4] = arguments
/Zephyr-latest/subsys/mgmt/mcumgr/grp/enum_mgmt/src/
Denum_mgmt.c190 struct enum_mgmt_list_arg arguments = { in enum_mgmt_list() local
204 mgmt_groups_foreach(enum_mgmt_cb_list, (void *)&arguments); in enum_mgmt_list()
222 struct enum_mgmt_single_arg arguments = { in enum_mgmt_single() local
231 ZCBOR_MAP_DECODE_KEY_DECODER("index", zcbor_uint32_decode, &arguments.index), in enum_mgmt_single()
237 if (!ok || arguments.index > MAX_MCUMGR_GROUPS) { in enum_mgmt_single()
241 mgmt_groups_foreach(enum_mgmt_cb_single, &arguments); in enum_mgmt_single()
243 if (!arguments.found) { in enum_mgmt_single()
248 zcbor_uint32_put(zse, arguments.group); in enum_mgmt_single()
250 if (arguments.last) { in enum_mgmt_single()
311 struct enum_mgmt_details_arg arguments = { in enum_mgmt_details() local
[all …]
/Zephyr-latest/cmake/util/
Dfmerge.cmake4 # Usage: list of files as arguments, first argument is the destination file
7 # First 3 arguments are "cmake", "-P", and "process.cmake"
9 message(FATAL_ERROR "Not enough arguments")
/Zephyr-latest/samples/boards/nordic/coresight_stm/src/
Dmain.c69 t0 = TEST_LOG(rpt, (LOG_INF("test no arguments"))); in main()
75 t2 = TEST_LOG(rpt, (LOG_INF("test with two arguments %d %d", 100, 10))); in main()
78 t3 = TEST_LOG(rpt, (LOG_INF("test with three arguments %d %d %d", 100, 10, 1))); in main()
95 timing_report(t0, rpt, "log message with 0 arguments"); in main()
97 timing_report(t2, rpt, "log message with 2 arguments"); in main()
98 timing_report(t3, rpt, "log message with 3 arguments"); in main()
/Zephyr-latest/tests/bluetooth/host/id/bt_id_create/src/
Dtest_suite_invalid_inputs.c19 * Test invalid input arguments to bt_id_create() using NULLs for address and IRK parameters.
38 * Test invalid input arguments to bt_id_create() using NULL for the address parameter
59 * Test invalid input arguments to bt_id_create() using NULLs for address and IRK parameters
82 * Test invalid input arguments to bt_id_create() by using a valid address of type public and using
106 * Test invalid input arguments to bt_id_create() by using a valid address of type RPA and using
126 * Test invalid input arguments to bt_id_create() by using an address that already exists
150 * Test invalid input arguments to bt_id_create() by using a valid static random address and
/Zephyr-latest/include/zephyr/bluetooth/audio/
Daudio.h780 * @retval -EINVAL Arguments are invalid
828 * @retval -EINVAL Arguments are invalid.
838 * @retval -EINVAL Arguments are invalid.
848 * @retval -EINVAL Arguments are invalid
861 * @retval -EINVAL Arguments are invalid
873 * @retval -EINVAL Arguments are invalid.
883 * @retval -EINVAL Arguments are invalid.
893 * @retval -EINVAL Arguments are invalid
906 * @retval -EINVAL Arguments are invalid
928 * @retval -EINVAL Arguments are invalid
[all …]
/Zephyr-latest/include/zephyr/logging/
Dlog_msg.h144 /* Mode optimized for simple messages with 0 to 2 32 bit word arguments.*/
236 /* Determine if amount of arguments (less than 3) qualifies to simple message. */
240 /* Set of marcos used to determine if arguments type allows simplified message creation mode. */
246 /** brief Determine if string arguments types allow to use simplified message creation mode.
248 * @param ... String with arguments.
257 * - Number of arguments from 0 to 2
260 * @param ... String with arguments.
275 /* Helper macro for handing log with two arguments. Macro casts arguments to uint32_t.
282 /* Call specific function based on the number of arguments.
283 * Since up 2 to arguments are supported COND_CODE_0 and COND_CODE_1 can be used to
[all …]
/Zephyr-latest/lib/posix/options/getopt/
Dgetopt.h62 * @brief Parses the command-line arguments.
70 * @param[in] argc Arguments count.
71 * @param[in] argv Arguments.
87 * @brief Parses the command-line arguments.
97 * @param[in] argc Arguments count.
98 * @param[in] argv Arguments.
/Zephyr-latest/boards/native/common/extra_args/
DKconfig6 string "Extra command line arguments"
8 Extra command line options/arguments which will be handled like if they were passed to the
/Zephyr-latest/cmake/bintools/llvm/
Dtarget_bintools.cmake20 # elfconvert_flag_infile : empty, objcopy doesn't take arguments for filenames
21 # elfconvert_flag_outfile : empty, objcopy doesn't take arguments for filenames
61 # disassembly_flag_infile : empty, objdump doesn't take arguments for filenames
62 # disassembly_flag_outfile : '>', objdump doesn't take arguments for output file, but resul…
93 # strip_flag_infile : empty, strip doesn't take arguments for input file
116 # readelf_flag_infile : empty, readelf doesn't take arguments for filenames
117 # readelf_flag_outfile : '>', readelf doesn't take arguments for output
/Zephyr-latest/soc/nuvoton/npcx/common/ecst/
Decst_args.py67 """creates an arguments object for the ECST,
68 the arguments are taken from the command line and/or
102 arguments = _create_parser("")
103 valid_arguments = arguments[0]
104 invalid_arguments = arguments[1]
125 """populate the ecst arguments according to the command line/ args file"""
180 """create argument parser according to pre-defined arguments
182 :param arg_list: when empty, parses command line arguments,
212 used to parse the arguments in a given argfile
/Zephyr-latest/cmake/bintools/gnu/
Dtarget_bintools.cmake20 # elfconvert_flag_infile : empty, objcopy doesn't take arguments for filenames
21 # elfconvert_flag_outfile : empty, objcopy doesn't take arguments for filenames
66 # disassembly_flag_infile : empty, objdump doesn't take arguments for filenames
67 # disassembly_flag_outfile : '>', objdump doesn't take arguments for output file, but resul…
86 # strip_flag_infile : empty, strip doesn't take arguments for input file
110 # readelf_flag_infile : empty, readelf doesn't take arguments for filenames
111 # readelf_flag_outfile : '>', readelf doesn't take arguments for output
/Zephyr-latest/tests/bsim/babblekit/include/babblekit/
Dtestcase.h18 * @param ... format-string and arguments to print to console
32 * @param ... format-string and arguments to print to console
51 * @param ... format-string and arguments to print to console
70 * @param ... format-string and arguments to print to console
107 * @param ... format-string and arguments to print to console
/Zephyr-latest/include/zephyr/sys/
Dutil_macro.h274 * processing `__VA_ARGS__` to avoid processing empty arguments.
317 * @brief Remove empty arguments from list.
379 * @param ... Variable list of arguments from which one argument is returned.
386 * @brief Strips n first arguments from the argument list.
388 * @param N Number of arguments to discard.
389 * @param ... Variable list of arguments.
391 * @return argument list without N first arguments.
458 * @param F A macro function that accepts at least two arguments:
461 * the variable list of arguments passed to LISTIFY are passed
467 * @note Calling LISTIFY with undefined arguments has undefined
[all …]
/Zephyr-latest/include/zephyr/
Dsyscall.h43 * verify arguments passed up from userspace, and call the
55 * necessary to sanitize the arguments passed into the system call:
63 * - If the system call has more than 6 arguments, then arg6 will be a pointer
64 * to some struct containing arguments 6+. The struct itself needs to be
67 * implementation like normal arguments
/Zephyr-latest/scripts/west_commands/zspdx/
Dscanner.py58 Arguments:
88 Arguments:
108 Arguments:
128 Arguments:
140 Arguments:
159 Arguments:
187 Arguments:
Dspdxids.py12 Arguments:
29 Arguments:
40 Arguments:
/Zephyr-latest/subsys/logging/
DKconfig.misc32 Dedicated code for handling simple log messages (0-2 32 bit word arguments).
78 bool "Using tagged arguments for packaging"
83 If enabled, packaging uses tagged arguments.
109 read-only string arguments in the package. This should be selected by
/Zephyr-latest/drivers/ethernet/
DKconfig41 string "Extra arguments to QEMU -nic option"
45 Extra arguments passed to QEMU -nic option when Ethernet Networking
48 arguments. Each QEMU argument must be separated by comma "," and no
49 spaces between arguments. Example: "mac=02:03:04:f0:0d:01" or

12345678910>>...24