Home
last modified time | relevance | path

Searched refs:_type (Results 1 – 18 of 18) sorted by relevance

/Zephyr-latest/include/zephyr/debug/
Dmipi_stp_decoder.h46 #define STP_DECODER_TYPE2STR(_type) \ argument
47 _type == STP_DATA4 ? "DATA4" : (\
48 _type == STP_DATA8 ? "DATA8" : (\
49 _type == STP_DATA16 ? "DATA16" : (\
50 _type == STP_DATA32 ? "DATA32" : (\
51 _type == STP_DATA64 ? "DATA64" : (\
52 _type == STP_DECODER_NULL ? "NULL" : (\
53 _type == STP_DECODER_MAJOR ? "MAJOR" : (\
54 _type == STP_DECODER_MERROR ? "MERROR" : (\
55 _type == STP_DECODER_CHANNEL ? "CHANNEL" : (\
[all …]
/Zephyr-latest/include/zephyr/bluetooth/classic/
Dsdp.h335 #define BT_SDP_TYPE_SIZE(_type) .type = _type, \ argument
336 .data_size = BIT(_type & BT_SDP_SIZE_DESC_MASK), \
337 .total_size = BIT(_type & BT_SDP_SIZE_DESC_MASK) + 1
345 #define BT_SDP_TYPE_SIZE_VAR(_type, _size) .type = _type, \ argument
347 .total_size = BIT((_type & BT_SDP_SIZE_DESC_MASK) - \
/Zephyr-latest/subsys/net/ip/
Dtp.h71 #define json_str(_type, _field) \ argument
72 JSON_OBJ_DESCR_PRIM(struct _type, _field, JSON_TOK_STRING)
73 #define json_num(_type, _field) \ argument
74 JSON_OBJ_DESCR_PRIM(struct _type, _field, JSON_TOK_NUMBER)
Dnbr.h102 #define NET_NBR_TABLE_INIT(_type, _name, _pool, _clear) \ argument
103 _type struct net_nbr_table_##_name { \
Dtcp_private.h24 #define tcp_slist(_conn, _slist, _op, _type, _link) \ argument
30 _type * _x = _node ? CONTAINER_OF(_node, _type, _link) : NULL; \
Dtp.c332 #define is_tp(_s, _type) do { \ in tp_msg_to_type() argument
333 if (is(#_type, _s)) { \ in tp_msg_to_type()
334 type = _type; \ in tp_msg_to_type()
/Zephyr-latest/include/zephyr/zbus/
Dzbus.h273 #define _ZBUS_CHAN_DEFINE(_name, _id, _type, _validator, _user_data) \ argument
289 .message_size = sizeof(_type), \
384 #define ZBUS_CHAN_DEFINE(_name, _type, _validator, _user_data, _observers, _init_val) \ argument
385 static _type _ZBUS_MESSAGE_NAME(_name) = _init_val; \
386 _ZBUS_CHAN_DEFINE(_name, ZBUS_CHAN_ID_INVALID, _type, _validator, _user_data); \
408 #define ZBUS_CHAN_DEFINE_WITH_ID(_name, _id, _type, _validator, _user_data, _observers, _init_val) \ argument
409 static _type _ZBUS_MESSAGE_NAME(_name) = _init_val; \
410 _ZBUS_CHAN_DEFINE(_name, _id, _type, _validator, _user_data); \
/Zephyr-latest/include/zephyr/net/
Dnet_pkt_filter.h536 #define NPF_ETH_TYPE_MATCH(_name, _type) \ argument
538 .type = htons(_type), \
548 #define NPF_ETH_TYPE_UNMATCH(_name, _type) \ argument
550 .type = htons(_type), \
Dnet_pkt.h2550 #define NET_PKT_DATA_ACCESS_DEFINE(_name, _type) \ argument
2552 .size = sizeof(_type), \
2555 #define NET_PKT_DATA_ACCESS_CONTIGUOUS_DEFINE(_name, _type) \ argument
2556 NET_PKT_DATA_ACCESS_DEFINE(_name, _type)
2559 #define NET_PKT_DATA_ACCESS_DEFINE(_name, _type) \ argument
2560 _type _hdr_##_name; \
2563 .size = sizeof(_type), \
2566 #define NET_PKT_DATA_ACCESS_CONTIGUOUS_DEFINE(_name, _type) \ argument
2569 .size = sizeof(_type), \
/Zephyr-latest/include/zephyr/bluetooth/
Dbluetooth.h472 #define BT_DATA(_type, _data, _data_len) \ argument
474 .type = (_type), \
488 #define BT_DATA_BYTES(_type, _bytes...) \ argument
489 BT_DATA(_type, ((uint8_t []) { _bytes }), \
2285 #define BT_LE_SCAN_PARAM_INIT(_type, _options, _interval, _window) \ argument
2287 .type = (_type), \
2305 #define BT_LE_SCAN_PARAM(_type, _options, _interval, _window) \ argument
2307 BT_LE_SCAN_PARAM_INIT(_type, _options, _interval, _window) \
/Zephyr-latest/include/zephyr/bluetooth/audio/
Daudio.h513 #define BT_AUDIO_METADATA_TYPE_IS_KNOWN(_type) \ argument
514 (IN_RANGE((_type), BT_AUDIO_METADATA_TYPE_PREF_CONTEXT, \
516 (_type) == BT_AUDIO_METADATA_TYPE_EXTENDED || (_type) == BT_AUDIO_METADATA_TYPE_VENDOR)
536 #define BT_AUDIO_CODEC_DATA(_type, _bytes...) \ argument
537 (sizeof((uint8_t)_type) + sizeof((uint8_t[]){_bytes})), (_type), _bytes
/Zephyr-latest/samples/net/capture/src/
Dmain.c39 #define DATA(_ctx, _data, _type, _ptype) { \ argument
43 .type = _type, \
/Zephyr-latest/tests/posix/common/src/
Dclock.c44 #define _decl_op(_type, _name, _op) \ argument
45 static inline _type _name(const struct timespec *_a, const struct timespec *_b) \
/Zephyr-latest/tests/subsys/debug/mipi_stp_decoder/src/
Dmain.c40 #define ADD_ITEM(_cnt, _type, _ts, _marked, _data) \ argument
42 exp_type[_cnt] = _type; \
/Zephyr-latest/drivers/ieee802154/
Dieee802154_kw41z.c61 #define KW_DBG_TRACE(_type, _irqsts, _phy_ctrl, _seq_state) \ argument
63 kw41_dbg[kw41_dbg_idx].type = (_type); \
76 #define KW_DBG_TRACE(_type, _irqsts, _phy_ctrl, _seq_state) argument
/Zephyr-latest/subsys/debug/
Dmipi_stp_decoder.c94 #define STP_ITEM(_type, _id, _id_ncnt, _d_ncnt, _has_ts, _cb) \ argument
96 .name = STRINGIFY(_type), .type = _type, .id = {__DEBRACKET _id}, \
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_object.h167 #define OBJ_FIELD(_id, _perm, _type) \ argument
170 .data_type = LWM2M_RES_TYPE_ ## _type, }
/Zephyr-latest/scripts/west_commands/
Dbindesc.py317 def bindesc_gen_tag(_type, _id): argument