Lines Matching defs:buf
142 static inline void net_buf_simple_init(struct net_buf_simple *buf, in net_buf_simple_init()
172 static inline void net_buf_simple_reset(struct net_buf_simple *buf) in net_buf_simple_reset()
905 static inline uint8_t *net_buf_simple_tail(const struct net_buf_simple *buf) in net_buf_simple_tail()
965 static inline void net_buf_simple_save(const struct net_buf_simple *buf, in net_buf_simple_save()
981 static inline void net_buf_simple_restore(struct net_buf_simple *buf, in net_buf_simple_restore()
1469 static inline void net_buf_destroy(struct net_buf *buf) in net_buf_destroy()
1576 static inline void * __must_check net_buf_user_data(const struct net_buf *buf) in net_buf_user_data()
1600 static inline void net_buf_reserve(struct net_buf *buf, size_t reserve) in net_buf_reserve()
1616 static inline void *net_buf_add(struct net_buf *buf, size_t len) in net_buf_add()
1633 static inline void *net_buf_add_mem(struct net_buf *buf, const void *mem, in net_buf_add_mem()
1650 static inline uint8_t *net_buf_add_u8(struct net_buf *buf, uint8_t val) in net_buf_add_u8()
1665 static inline void net_buf_add_le16(struct net_buf *buf, uint16_t val) in net_buf_add_le16()
1680 static inline void net_buf_add_be16(struct net_buf *buf, uint16_t val) in net_buf_add_be16()
1695 static inline void net_buf_add_le24(struct net_buf *buf, uint32_t val) in net_buf_add_le24()
1710 static inline void net_buf_add_be24(struct net_buf *buf, uint32_t val) in net_buf_add_be24()
1725 static inline void net_buf_add_le32(struct net_buf *buf, uint32_t val) in net_buf_add_le32()
1740 static inline void net_buf_add_be32(struct net_buf *buf, uint32_t val) in net_buf_add_be32()
1755 static inline void net_buf_add_le40(struct net_buf *buf, uint64_t val) in net_buf_add_le40()
1770 static inline void net_buf_add_be40(struct net_buf *buf, uint64_t val) in net_buf_add_be40()
1785 static inline void net_buf_add_le48(struct net_buf *buf, uint64_t val) in net_buf_add_le48()
1800 static inline void net_buf_add_be48(struct net_buf *buf, uint64_t val) in net_buf_add_be48()
1815 static inline void net_buf_add_le64(struct net_buf *buf, uint64_t val) in net_buf_add_le64()
1830 static inline void net_buf_add_be64(struct net_buf *buf, uint64_t val) in net_buf_add_be64()
1845 static inline void *net_buf_remove_mem(struct net_buf *buf, size_t len) in net_buf_remove_mem()
1860 static inline uint8_t net_buf_remove_u8(struct net_buf *buf) in net_buf_remove_u8()
1875 static inline uint16_t net_buf_remove_le16(struct net_buf *buf) in net_buf_remove_le16()
1890 static inline uint16_t net_buf_remove_be16(struct net_buf *buf) in net_buf_remove_be16()
1905 static inline uint32_t net_buf_remove_be24(struct net_buf *buf) in net_buf_remove_be24()
1920 static inline uint32_t net_buf_remove_le24(struct net_buf *buf) in net_buf_remove_le24()
1935 static inline uint32_t net_buf_remove_le32(struct net_buf *buf) in net_buf_remove_le32()
1950 static inline uint32_t net_buf_remove_be32(struct net_buf *buf) in net_buf_remove_be32()
1965 static inline uint64_t net_buf_remove_le40(struct net_buf *buf) in net_buf_remove_le40()
1980 static inline uint64_t net_buf_remove_be40(struct net_buf *buf) in net_buf_remove_be40()
1995 static inline uint64_t net_buf_remove_le48(struct net_buf *buf) in net_buf_remove_le48()
2010 static inline uint64_t net_buf_remove_be48(struct net_buf *buf) in net_buf_remove_be48()
2025 static inline uint64_t net_buf_remove_le64(struct net_buf *buf) in net_buf_remove_le64()
2040 static inline uint64_t net_buf_remove_be64(struct net_buf *buf) in net_buf_remove_be64()
2056 static inline void *net_buf_push(struct net_buf *buf, size_t len) in net_buf_push()
2073 static inline void *net_buf_push_mem(struct net_buf *buf, const void *mem, in net_buf_push_mem()
2087 static inline void net_buf_push_u8(struct net_buf *buf, uint8_t val) in net_buf_push_u8()
2101 static inline void net_buf_push_le16(struct net_buf *buf, uint16_t val) in net_buf_push_le16()
2115 static inline void net_buf_push_be16(struct net_buf *buf, uint16_t val) in net_buf_push_be16()
2129 static inline void net_buf_push_le24(struct net_buf *buf, uint32_t val) in net_buf_push_le24()
2143 static inline void net_buf_push_be24(struct net_buf *buf, uint32_t val) in net_buf_push_be24()
2157 static inline void net_buf_push_le32(struct net_buf *buf, uint32_t val) in net_buf_push_le32()
2171 static inline void net_buf_push_be32(struct net_buf *buf, uint32_t val) in net_buf_push_be32()
2185 static inline void net_buf_push_le40(struct net_buf *buf, uint64_t val) in net_buf_push_le40()
2199 static inline void net_buf_push_be40(struct net_buf *buf, uint64_t val) in net_buf_push_be40()
2213 static inline void net_buf_push_le48(struct net_buf *buf, uint64_t val) in net_buf_push_le48()
2227 static inline void net_buf_push_be48(struct net_buf *buf, uint64_t val) in net_buf_push_be48()
2241 static inline void net_buf_push_le64(struct net_buf *buf, uint64_t val) in net_buf_push_le64()
2255 static inline void net_buf_push_be64(struct net_buf *buf, uint64_t val) in net_buf_push_be64()
2271 static inline void *net_buf_pull(struct net_buf *buf, size_t len) in net_buf_pull()
2287 static inline void *net_buf_pull_mem(struct net_buf *buf, size_t len) in net_buf_pull_mem()
2302 static inline uint8_t net_buf_pull_u8(struct net_buf *buf) in net_buf_pull_u8()
2317 static inline uint16_t net_buf_pull_le16(struct net_buf *buf) in net_buf_pull_le16()
2332 static inline uint16_t net_buf_pull_be16(struct net_buf *buf) in net_buf_pull_be16()
2347 static inline uint32_t net_buf_pull_le24(struct net_buf *buf) in net_buf_pull_le24()
2362 static inline uint32_t net_buf_pull_be24(struct net_buf *buf) in net_buf_pull_be24()
2377 static inline uint32_t net_buf_pull_le32(struct net_buf *buf) in net_buf_pull_le32()
2392 static inline uint32_t net_buf_pull_be32(struct net_buf *buf) in net_buf_pull_be32()
2407 static inline uint64_t net_buf_pull_le40(struct net_buf *buf) in net_buf_pull_le40()
2422 static inline uint64_t net_buf_pull_be40(struct net_buf *buf) in net_buf_pull_be40()
2437 static inline uint64_t net_buf_pull_le48(struct net_buf *buf) in net_buf_pull_le48()
2452 static inline uint64_t net_buf_pull_be48(struct net_buf *buf) in net_buf_pull_be48()
2467 static inline uint64_t net_buf_pull_le64(struct net_buf *buf) in net_buf_pull_le64()
2482 static inline uint64_t net_buf_pull_be64(struct net_buf *buf) in net_buf_pull_be64()
2496 static inline size_t net_buf_tailroom(const struct net_buf *buf) in net_buf_tailroom()
2510 static inline size_t net_buf_headroom(const struct net_buf *buf) in net_buf_headroom()
2524 static inline uint16_t net_buf_max_len(const struct net_buf *buf) in net_buf_max_len()
2538 static inline uint8_t *net_buf_tail(const struct net_buf *buf) in net_buf_tail()
2689 static inline struct net_buf *net_buf_skip(struct net_buf *buf, size_t len) in net_buf_skip()
2711 static inline size_t net_buf_frags_len(const struct net_buf *buf) in net_buf_frags_len()