Home
last modified time | relevance | path

Searched refs:_op (Results 1 – 7 of 7) sorted by relevance

/Zephyr-Core-3.4.0/include/zephyr/bluetooth/mesh/
Dmsg.h39 #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)))
Daccess.h281 #define BT_MESH_MODEL_CNT_CB(_id, _op, _pub, _user_data, _keys, _grps, _cb) \ argument
289 .op = _op, \
312 #define BT_MESH_MODEL_CNT_VND_CB(_company, _id, _op, _pub, _user_data, _keys, _grps, _cb) \ argument
316 .op = _op, \
338 #define BT_MESH_MODEL_CB(_id, _op, _pub, _user_data, _cb) \ argument
339 BT_MESH_MODEL_CNT_CB(_id, _op, _pub, _user_data, \
359 #define BT_MESH_MODEL_METADATA_CB(_id, _op, _pub, _user_data, _cb, _metadata) \ argument
367 .op = _op, \
373 #define BT_MESH_MODEL_METADATA_CB(_id, _op, _pub, _user_data, _cb, _metadata) \ argument
374 BT_MESH_MODEL_CB(_id, _op, _pub, _user_data, _cb)
[all …]
/Zephyr-Core-3.4.0/scripts/west_commands/runners/
Dnrfjprog.py56 _op = op['operation']
57 op_type = _op['type']
63 cmd.append(_op['firmware']['file'])
64 erase = _op['chip_erase_mode']
74 if _op.get('qspi_erase_mode'):
77 if _op.get('verify'):
83 if _op['option'] == 'RESET_SYSTEM':
85 if _op['option'] == 'RESET_PIN':
Dnrf_common.py354 _op = f'{op}'
355 op = {'operation': {'type': _op}}
/Zephyr-Core-3.4.0/include/zephyr/bluetooth/
Dhci_raw.h80 #define BT_HCI_RAW_CMD_EXT(_op, _min_len, _func) \ argument
82 .op = _op, \
/Zephyr-Core-3.4.0/subsys/net/ip/
Dtcp_private.h24 #define tcp_slist(_conn, _slist, _op, _type, _link) \ argument
28 sys_snode_t *_node = sys_slist_##_op(_slist); \
288 #define _flags(_fl, _op, _mask, _cond) \ argument
293 (UNALIGNED_GET(_fl) _op(_mask))) { \
301 #define FL(_fl, _op, _mask, _args...) \ argument
302 _flags(_fl, _op, _mask, strlen("" #_args) ? _args : true)
/Zephyr-Core-3.4.0/tests/subsys/zbus/unittests/src/
Dmain.c183 #define ISR_OP(_op, _exp) \ argument
185 current_isr_operation = _op; \