| /Zephyr-4.2.1/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-4.2.1/subsys/bluetooth/mesh/ |
| D | mesh.h | 30 #define BT_MESH_APP_KEY_CB_DEFINE(_handler) \ argument 33 _handler)) = { \ 34 .evt_handler = (_handler), \
|
| /Zephyr-4.2.1/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-4.2.1/include/zephyr/shell/ |
| D | shell.h | 424 static shell_cmd_handler dummy_##syntax##_handler __unused = \ 531 #define SHELL_SUBCMD_COND_ADD(_flag, _parent, _syntax, _subcmd, _help, _handler, \ argument 539 _handler, _mand, _opt)\ 541 (static shell_cmd_handler dummy_handler_##_syntax __unused = _handler;\ 560 #define SHELL_SUBCMD_ADD(_parent, _syntax, _subcmd, _help, _handler, _mand, _opt) \ argument 561 SHELL_SUBCMD_COND_ADD(1, _parent, _syntax, _subcmd, _help, _handler, _mand, _opt) 640 #define SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, \ argument 647 .handler = (shell_cmd_handler)((_expr) ? _handler : NULL), \ 659 #define SHELL_CMD(_syntax, _subcmd, _help, _handler) \ argument 660 SHELL_CMD_ARG(_syntax, _subcmd, _help, _handler, 0, 0) [all …]
|
| /Zephyr-4.2.1/include/zephyr/mgmt/hawkbit/ |
| D | event.h | 118 #define HAWKBIT_EVENT_CREATE_CALLBACK(_callback, _handler, _event) \ argument 120 .handler = _handler, \
|
| /Zephyr-4.2.1/include/zephyr/modem/ |
| D | ubx.h | 47 #define MODEM_UBX_MATCH_DEFINE(_class_id, _msg_id, _handler) \ argument 53 .handler = _handler, \
|
| /Zephyr-4.2.1/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-4.2.1/include/zephyr/net/ |
| D | socket.h | 1153 #define _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, _is_offloaded) \ argument 1159 .handler = _handler, \ 1163 #define NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler) \ argument 1164 _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, false) 1166 #define NET_SOCKET_OFFLOAD_REGISTER(socket_name, prio, _family, _is_supported, _handler) \ argument 1167 _NET_SOCKET_REGISTER(socket_name, prio, _family, _is_supported, _handler, true)
|
| D | net_core.h | 227 #define NET_L3_REGISTER(_l2_type, _name, _ptype, _handler) \ argument 231 .handler = _handler, \
|
| D | net_pkt_filter.h | 718 #define NPF_LOCAL_IN_MATCH(_name, _handler, _user_data) \ argument 721 .fn = (_handler), \
|
| /Zephyr-4.2.1/include/zephyr/drivers/modem/ |
| D | hl78xx_apis.h | 51 #define HL78XX_EVT_MONITOR(name, _handler, ...) \ argument 53 .handler = _handler, \
|
| /Zephyr-4.2.1/doc/connectivity/networking/api/ |
| D | sockets.rst | 222 * ``_handler`` 255 ``_is_supported`` returns true) will create a new socket with its ``_handler``
|
| /Zephyr-4.2.1/subsys/bluetooth/host/ |
| D | hci_core.c | 199 #define EVENT_HANDLER(_evt, _handler, _min_len) \ argument 202 .handler = _handler, \
|