Home
last modified time | relevance | path

Searched refs:argument (Results 1 – 25 of 193) sorted by relevance

12345678

/Zephyr-latest/samples/boards/nordic/coresight_stm/
DREADME.rst61 [00:00:00.227,264] <inf> app/app: test with one argument 100
62 [00:00:00.227,265] <inf> app/app: test with one argument 100
64 [00:00:00.585,558] <inf> rad/app: test with one argument 100
65 [00:00:00.585,569] <inf> rad/app: test with one argument 100
67 [00:00:00.624,408] <inf> ppr/app: test with one argument 100
68 [00:00:00.624,433] <inf> ppr/app: test with one argument 100
70 [00:00:00.625,249] <inf> flpr/app: test with one argument 100
71 [00:00:00.625,251] <inf> flpr/app: test with one argument 100
74 rad: Timing for log message with 1 argument: 6.10us
81 flpr: Timing for log message with 1 argument: 1.20us
[all …]
/Zephyr-latest/soc/st/stm32/stm32wbax/hci_if/
Dstm32_timer.c18 void (*callback)(void *), void *argument) in UTIL_TIMER_Create() argument
27 timer_object->argument = argument; in UTIL_TIMER_Create()
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dthread_apis.c38 static void thread1(void *argument) in thread1() argument
43 struct thread1_args *args = (struct thread1_args *)argument; in thread1()
67 static void thread2(void *argument) in thread2() argument
71 int *yield_check = (int *)argument; in thread2()
164 static void thread3(void *argument) in thread3() argument
170 int *state = (int *)argument; in thread3()
251 static void thread5(void *argument) in thread5() argument
258 static void thread4(void *argument) in thread4() argument
260 osThreadId_t tB = argument; in thread4()
329 void thread6(void *argument) in thread6() argument
[all …]
/Zephyr-latest/cmake/sca/sparse/
Dsparse.template6 # First argument after `--` is the real compiler, but that is defined in REAL_CC
8 # argument to be passed to sparse is 2nd argument after `--`.
/Zephyr-latest/cmake/
Dextra_flags.cmake8 # A length of zero means no argument.
9 # A length of one means a single argument or a space separated list was provided.
10 # In both cases, it is safe to do a separate_arguments on the argument.
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v1/src/
Dthread_apis.c21 void thread1(void const *argument) in thread1() argument
42 void thread2(void const *argument) in thread2() argument
54 void thread3(void const *argument) in thread3() argument
Dthread_instance.c17 void thread_inst_check(void const *argument) in thread_inst_check() argument
/Zephyr-latest/cmake/bintools/arcmwdt/
Delfconvert_command.cmake48 foreach(argument ${CMAKE_ARGV${n}})
49 if(${argument} MATCHES "-DONLY_SECTION=(.*)")
65 foreach(argument ${CMAKE_ARGV${n}})
66 if(${argument} MATCHES "-DRENAME_SECTION=(.*)")
/Zephyr-latest/subsys/portability/cmsis_rtos_v1/
Dcmsis_timer.c20 void (*callback_function)(void const *argument);
39 void *argument) in osTimerCreate() argument
58 timer->arg = argument; in osTimerCreate()
/Zephyr-latest/scripts/ci/
Dpylintrc71 bad-classmethod-argument,
72 bad-mcs-method-argument,
73 bad-mcs-classmethod-argument,
92 duplicate-argument-name,
104 no-method-argument,
105 no-self-argument,
179 redefined-argument-from-local,
203 bad-staticmethod-argument,
230 unused-format-string-argument,
/Zephyr-latest/doc/develop/west/
Dwest-apis.rst65 The argument parser created by calling ``WestCommand.add_parser()``.
133 The *topdir* argument was added.
154 The *cwd* keyword argument was replaced with a catch-all ``**kwargs``.
163 The *cwd* keyword argument was replaced with a catch-all ``**kwargs``.
187 The *end* argument.
192 The *end* argument.
197 The *end* argument.
202 The *end* argument.
375 All arguments were made keyword-only. The *source_file* argument was
379 The *config* argument.
[all …]
Dalias.rst11 full text and parsed as a new shell argument list (using the Python function
12 `shlex.split()`_ internally to split the value). This enables adding argument
14 argument separators; use proper escaping if arguments shouldn't be split.
/Zephyr-latest/boards/raspberrypi/rpi_pico2/support/
Dopenocd.cfg5 # Set the adaptor speed, if unset, and given as an argument.
/Zephyr-latest/doc/services/
Dformatted_output.rst53 part of a format string (format string or any ``%s`` argument). Package primary
124 of the location where address argument is stored. During packaging address is set
126 location within the package. Updating address argument must happen just before string
134 | | 1 byte: Number of read-only string argument locations |
136 | | 1 byte: Number of transient string argument locations |
144 | | argument 0 |
148 | | argument 1 |
154 | (optional) | Pairs of argument index and argument location index where transient |
157 | Appended | 1 byte: Index within the package to the location of associated argument |
/Zephyr-latest/boards/wiznet/w5500_evb_pico/support/
Dopenocd.cfg5 # Set the adaptor speed, if unset, and given as an argument.
/Zephyr-latest/boards/sparkfun/pro_micro_rp2040/support/
Dopenocd.cfg5 # Set the adaptor speed, if unset, and given as an argument.
/Zephyr-latest/boards/raspberrypi/rpi_pico/support/
Dopenocd.cfg5 # Set the adaptor speed, if unset, and given as an argument.
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dtimer.c38 void *argument, const osTimerAttr_t *attr) in osTimerNew() argument
61 timer->arg = argument; in osTimerNew()
Dwrapper.h37 void (*callback_function)(void *argument);
/Zephyr-latest/include/zephyr/portability/
Dcmsis_os.h127 typedef void (*os_pthread) (void const *argument);
131 typedef void (*os_ptimer) (void const *argument);
313 osThreadId osThreadCreate (const osThreadDef_t *thread_def, void *argument);
391 osTimerId osTimerCreate (const osTimerDef_t *timer_def, os_timer_type type, void *argument);
Dcmsis_os2.h158 typedef void (*osThreadFunc_t) (void *argument);
161 typedef void (*osTimerFunc_t) (void *argument);
368 osThreadId_t osThreadNew(osThreadFunc_t func, void *argument, const osThreadAttr_t *attr);
494 osTimerId_t osTimerNew(osTimerFunc_t func, osTimerType_t type, void *argument, const osTimerAttr_t …
/Zephyr-latest/boards/infineon/cy8ckit_062s4/doc/
Dindex.rst92 …e multiple ways of doing this. The example below uses a permanent CMake argument to set the CMake …
99 # Run west config once to set permanent CMake argument
102 # Do a pristine build once after setting CMake argument
112 # Run west config once to set permanent CMake argument
115 # Do a pristine build once after setting CMake argument
/Zephyr-latest/boards/infineon/cy8cproto_063_ble/doc/
Dindex.rst104 …e multiple ways of doing this. The example below uses a permanent CMake argument to set the CMake …
111 # Run west config once to set permanent CMake argument
114 # Do a pristine build once after setting CMake argument
124 # Run west config once to set permanent CMake argument
127 # Do a pristine build once after setting CMake argument
/Zephyr-latest/cmake/util/
Dfmerge.cmake4 # Usage: list of files as arguments, first argument is the destination file
/Zephyr-latest/boards/infineon/cy8ckit_062s2_ai/doc/
Dindex.rst116 The example below uses a permanent CMake argument to set the CMake variable ``OPENOCD``.
123 # Run west config once to set permanent CMake argument
126 # Do a pristine build once after setting CMake argument
136 # Run west config once to set permanent CMake argument
139 # Do a pristine build once after setting CMake argument

12345678