/Zephyr-latest/subsys/shell/modules/kernel_service/ |
D | kernel_shell.h | 13 #define KERNEL_CMD_ARG_ADD(_syntax, _subcmd, _help, _handler, _mand, _opt) \ argument 14 SHELL_SUBCMD_ADD((kernel), _syntax, _subcmd, _help, _handler, _mand, _opt); 16 #define KERNEL_CMD_ADD(_syntax, _subcmd, _help, _handler) \ argument 17 KERNEL_CMD_ARG_ADD(_syntax, _subcmd, _help, _handler, 0, 0); 20 #define KERNEL_THREAD_CMD_ARG_ADD(_syntax, _subcmd, _help, _handler, _mand, _opt) \ argument 21 SHELL_SUBCMD_ADD((thread), _syntax, _subcmd, _help, _handler, _mand, _opt); 23 #define KERNEL_THREAD_CMD_ADD(_syntax, _subcmd, _help, _handler) \ argument 24 KERNEL_THREAD_CMD_ARG_ADD(_syntax, _subcmd, _help, _handler, 0, 0);
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | mesh.h | 30 #define BT_MESH_APP_KEY_CB_DEFINE(_handler) \ argument 33 _handler)) = { \ 34 .evt_handler = (_handler), \
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell.h | 292 static shell_cmd_handler dummy_##syntax##_handler __unused = \ 399 #define SHELL_SUBCMD_COND_ADD(_flag, _parent, _syntax, _subcmd, _help, _handler, \ argument 407 _handler, _mand, _opt)\ 409 (static shell_cmd_handler dummy_handler_##_syntax __unused = _handler;\ 428 #define SHELL_SUBCMD_ADD(_parent, _syntax, _subcmd, _help, _handler, _mand, _opt) \ argument 429 SHELL_SUBCMD_COND_ADD(1, _parent, _syntax, _subcmd, _help, _handler, _mand, _opt) 508 #define SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, \ argument 515 .handler = (shell_cmd_handler)((_expr) ? _handler : NULL), \ 527 #define SHELL_CMD(_syntax, _subcmd, _help, _handler) \ argument 528 SHELL_CMD_ARG(_syntax, _subcmd, _help, _handler, 0, 0) [all …]
|
/Zephyr-latest/lib/posix/shell/ |
D | posix_shell.h | 13 #define POSIX_CMD_ADD(_syntax, _subcmd, _help, _handler, _mand, _opt) \ argument 14 SHELL_SUBCMD_ADD((posix), _syntax, _subcmd, _help, _handler, _mand, _opt);
|
/Zephyr-latest/include/zephyr/mgmt/hawkbit/ |
D | event.h | 113 #define HAWKBIT_EVENT_CREATE_CALLBACK(_callback, _handler, _event) \ argument 115 .handler = _handler, \
|
/Zephyr-latest/include/zephyr/net/ |
D | socket.h | 1162 #define _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, _is_offloaded) \ argument 1168 .handler = _handler, \ 1172 #define NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler) \ argument 1173 _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, false) 1175 #define NET_SOCKET_OFFLOAD_REGISTER(socket_name, prio, _family, _is_supported, _handler) \ argument 1176 _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, true)
|
/Zephyr-latest/subsys/testsuite/ztest/include/zephyr/ |
D | ztress.h | 130 #define ZTRESS_CONTEXT_INITIALIZER(_handler, _user_data, _exec_cnt, _preempt_cnt, _t) \ argument 132 .handler = (_handler), \
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | sockets.rst | 180 * ``_handler`` 213 ``_is_supported`` returns true) will create a new socket with its ``_handler``
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | hci_core.c | 169 #define EVENT_HANDLER(_evt, _handler, _min_len) \ argument 172 .handler = _handler, \
|