Home
last modified time | relevance | path

Searched defs:pdu (Results 1 – 3 of 3) sorted by relevance

/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/
H A Dnet.c45 #define IVI(pdu) ((pdu)[0] >> 7) argument
46 #define NID(pdu) ((pdu)[0] & 0x7f) argument
47 #define CTL(pdu) ((pdu)[1] >> 7) argument
48 #define TTL(pdu) ((pdu)[1] & 0x7f) argument
49 #define SEQ(pdu) (((u32_t)(pdu)[2] << 16) | \ argument
51 #define SRC(pdu) (sys_get_be16(&(pdu)[5])) argument
52 #define DST(pdu) (sys_get_be16(&(pdu)[7])) argument
108 static u64_t msg_hash(struct bt_mesh_net_rx *rx, struct os_mbuf *pdu) in msg_hash()
122 struct os_mbuf *pdu) in msg_cache_match()
H A Dcrypto.c25 #define NET_MIC_LEN(pdu) (((pdu)[1] & 0x80) ? 8 : 4) argument
517 static void create_proxy_nonce(u8_t nonce[13], const u8_t *pdu, in create_proxy_nonce()
544 static void create_net_nonce(u8_t nonce[13], const u8_t *pdu, in create_net_nonce()
570 int bt_mesh_net_obfuscate(u8_t *pdu, u32_t iv_index, in bt_mesh_net_obfuscate()
H A Dprov.c1026 u8_t pdu[25]; in prov_data() local