Searched refs:void (Results 51 – 75 of 108) sorted by relevance
12345
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | extra.ecl | 8 -extra_definitions+="^(z_x86_user_string_nlen)_(fault_start|fault_end|fixup)\\(void\\)$"
|
D | toolchain.ecl | 38 -doc="See Chapter \"6.24 Arithmetic on void- and Function-Pointers\" of "GCC_MANUAL"."
|
/Zephyr-latest/samples/subsys/llext/shell_loader/ |
D | README.rst | 49 call_fn :Call extension function with prototype void fn(void). Syntax:
|
/Zephyr-latest/doc/hardware/peripherals/can/ |
D | controller.rst | 155 void tx_callback(const struct device *dev, int error, void *user_data) 190 void rx_callback_function(const struct device *dev, struct can_frame *frame, void *user_data)
|
/Zephyr-latest/doc/kernel/services/timing/ |
D | timers.rst | 114 extern void my_expiry_function(struct k_timer *timer_id); 137 void my_work_handler(struct k_work *work) 145 void my_timer_handler(struct k_timer *dummy)
|
/Zephyr-latest/doc/kernel/services/threads/ |
D | workqueue.rst | 158 static void work_handler(struct k_work *work) 291 void my_isr(void *arg) 300 void print_error(struct k_work *item) 429 static void work_handler(struct work *work) 436 (void)k_work_submit(work); 487 code should clearly document this, by (1) casting the return value to ``void`` 496 (void)k_work_cancel_delayable(&pub->timer);
|
/Zephyr-latest/cmake/compiler/clang/ |
D | compiler_flags.cmake | 53 # Prohibit void pointer arithmetic. Illegal in C99
|
/Zephyr-latest/tests/ztest/error_hook/ |
D | README.txt | 102 ASSERTION FAIL [a != ((void *)0)] @ WEST_TOPDIR/zephyr/tests/ztest/error_hook/src/main.c:41 175 ASSERTION FAIL [a != ((void *)0)] @ WEST_TOPDIR/zephyr/tests/ztest/error_hook/src/main.c:41
|
/Zephyr-latest/doc/services/device_mgmt/ |
D | mcumgr_callbacks.rst | 48 void *data, size_t data_size) 150 void *data, size_t data_size) 273 casted to void.
|
/Zephyr-latest/boards/arduino/opta/doc/ |
D | index.rst | 225 void setup() { 229 void loop() { }
|
/Zephyr-latest/doc/kernel/services/other/ |
D | atomic.rst | 57 int call_counting_routine(void)
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | http_server.rst | 235 struct http_response_ctx *response_ctx, void *user_data) 345 int ws_setup(int sock, void *user_data) 391 uint8_t *buffer, size_t len, void *user_data)
|
D | mqtt.rst | 61 void mqtt_evt_handler(struct mqtt_client *client,
|
D | mqtt_sn.rst | 61 static void evt_cb(struct mqtt_sn_client *client,
|
/Zephyr-latest/subsys/logging/ |
D | Kconfig.misc | 73 casted to the pointer of another type (e.g. void *). With this feature
|
/Zephyr-latest/doc/services/logging/ |
D | index.rst | 226 static inline void foo(void) 288 void foo_init(foo_object *f) 298 static inline void foo_init(foo_object *f) 327 int main(void) 775 (e.g., ``void *``) when it is used with ``%p`` format specifier. 780 LOG_WRN("%p", (void *)str);
|
/Zephyr-latest/cmake/compiler/arcmwdt/ |
D | compiler_flags.cmake | 39 # Prohibit void pointer arithmetic. Illegal in C99
|
/Zephyr-latest/doc/services/llext/ |
D | load.rst | 58 The returned ``void *`` can then be cast to the appropriate type and used.
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | rpr_cli.rst | 31 static void rpr_scan_report(struct bt_mesh_rpr_cli *cli,
|
/Zephyr-latest/doc/connectivity/usb/device_next/ |
D | usb_device.rst | 256 static void interrupt_handler(const struct device *dev, void *user_data)
|
/Zephyr-latest/doc/kernel/memory_management/ |
D | sys_mem_blocks.rst | 169 sys_mem_blocks_t *choice_fn(struct sys_multi_mem_blocks *group, void *cfg)
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | README.md | 115 Add the line below in `int main(void)`, just before the line `while(1)`:
|
/Zephyr-latest/doc/services/portability/posix/overview/ |
D | index.rst | 97 void megasleep(size_t megaseconds)
|
/Zephyr-latest/doc/releases/ |
D | migration-guide-3.5.rst | 21 taking a ``void *mem`` pointer instead of a ``void **mem`` double-pointer. 71 the Zephyr required type -- ``int main(void)``.
|
/Zephyr-latest/doc/connectivity/networking/conn_mgr/ |
D | implementation.rst | 80 void my_init_impl(struct conn_mgr_conn_binding *const binding) { 151 … your connectivity implementation does not need a context pointer, simply declare the type as void: 155 #define MY_CONNECTIVITY_IMPL_CTX_TYPE void *
|
12345