/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | msg.h | 39 #define BT_MESH_MODEL_OP_LEN(_op) ((_op) <= 0xff ? 1 : (_op) <= 0xffff ? 2 : 3) argument 50 #define BT_MESH_MODEL_BUF_LEN(_op, _payload_len) \ argument 51 (BT_MESH_MODEL_OP_LEN(_op) + (_payload_len) + BT_MESH_MIC_SHORT) 62 #define BT_MESH_MODEL_BUF_LEN_LONG_MIC(_op, _payload_len) \ argument 63 (BT_MESH_MODEL_OP_LEN(_op) + (_payload_len) + BT_MESH_MIC_LONG) 72 #define BT_MESH_MODEL_BUF_DEFINE(_buf, _op, _payload_len) \ argument 73 NET_BUF_SIMPLE_DEFINE(_buf, BT_MESH_MODEL_BUF_LEN(_op, (_payload_len)))
|
D | access.h | 436 #define BT_MESH_MODEL_CNT_CB(_id, _op, _pub, _user_data, _keys, _grps, _cb) \ argument 446 .op = _op, \ 468 #define BT_MESH_MODEL_CNT_VND_CB(_company, _id, _op, _pub, _user_data, _keys, _grps, _cb) \ argument 473 .op = _op, \ 495 #define BT_MESH_MODEL_CB(_id, _op, _pub, _user_data, _cb) \ argument 496 BT_MESH_MODEL_CNT_CB(_id, _op, _pub, _user_data, \ 517 #define BT_MESH_MODEL_METADATA_CB(_id, _op, _pub, _user_data, _cb, _metadata) \ argument 527 .op = _op, \ 532 #define BT_MESH_MODEL_METADATA_CB(_id, _op, _pub, _user_data, _cb, _metadata) \ argument 533 BT_MESH_MODEL_CB(_id, _op, _pub, _user_data, _cb) [all …]
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | nrfjprog.py | 71 _op = op['operation'] 72 op_type = _op['type'] 78 cmd.append(_op['firmware']['file']) 79 erase = _op['chip_erase_mode'] 91 if _op.get('qspi_erase_mode'): 94 if _op.get('verify'): 103 if _op['option'] == 'RESET_SYSTEM': 105 if _op['option'] == 'RESET_PIN':
|
D | nrf_common.py | 524 _op = f'{op}' 525 op = {'operation': {'type': _op}} 534 _op = _exec_op(op, defer, core, **kwargs) 537 file = self._check_suit_starter(_op)
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | hci_raw.h | 80 #define BT_HCI_RAW_CMD_EXT(_op, _min_len, _func) \ argument 82 .op = _op, \
|
/Zephyr-latest/subsys/net/ip/ |
D | tcp_private.h | 24 #define tcp_slist(_conn, _slist, _op, _type, _link) \ argument 28 sys_snode_t *_node = sys_slist_##_op(_slist); \ 343 #define _flags(_fl, _op, _mask, _cond) \ argument 348 (UNALIGNED_GET(_fl) _op(_mask))) { \ 356 #define FL(_fl, _op, _mask, _args...) \ argument 357 _flags(_fl, _op, _mask, sizeof(#_args) > 1 ? _args : true)
|
/Zephyr-latest/tests/posix/common/src/ |
D | clock.c | 42 #define _tp_op(_a, _b, _op) (ts_to_ns(_a) _op ts_to_ns(_b)) argument 44 #define _decl_op(_type, _name, _op) \ argument 47 return _tp_op(_a, _b, _op); \
|
/Zephyr-latest/tests/subsys/zbus/unittests/src/ |
D | main.c | 197 #define ISR_OP(_op, _exp) \ argument 199 current_isr_operation = _op; \
|