Lines Matching refs:net_buf_simple

50 	struct net_buf_simple _name = {         \
69 static struct net_buf_simple _name = { \
89 struct net_buf_simple { struct
126 ((struct net_buf_simple *)(&(struct { \
127 struct net_buf_simple buf; \
142 static inline void net_buf_simple_init(struct net_buf_simple *buf, in net_buf_simple_init()
162 void net_buf_simple_init_with_data(struct net_buf_simple *buf,
172 static inline void net_buf_simple_reset(struct net_buf_simple *buf) in net_buf_simple_reset()
188 void net_buf_simple_clone(const struct net_buf_simple *original,
189 struct net_buf_simple *clone);
202 void *net_buf_simple_add(struct net_buf_simple *buf, size_t len);
216 void *net_buf_simple_add_mem(struct net_buf_simple *buf, const void *mem,
230 uint8_t *net_buf_simple_add_u8(struct net_buf_simple *buf, uint8_t val);
242 void net_buf_simple_add_le16(struct net_buf_simple *buf, uint16_t val);
254 void net_buf_simple_add_be16(struct net_buf_simple *buf, uint16_t val);
266 void net_buf_simple_add_le24(struct net_buf_simple *buf, uint32_t val);
278 void net_buf_simple_add_be24(struct net_buf_simple *buf, uint32_t val);
290 void net_buf_simple_add_le32(struct net_buf_simple *buf, uint32_t val);
302 void net_buf_simple_add_be32(struct net_buf_simple *buf, uint32_t val);
314 void net_buf_simple_add_le40(struct net_buf_simple *buf, uint64_t val);
326 void net_buf_simple_add_be40(struct net_buf_simple *buf, uint64_t val);
338 void net_buf_simple_add_le48(struct net_buf_simple *buf, uint64_t val);
350 void net_buf_simple_add_be48(struct net_buf_simple *buf, uint64_t val);
362 void net_buf_simple_add_le64(struct net_buf_simple *buf, uint64_t val);
374 void net_buf_simple_add_be64(struct net_buf_simple *buf, uint64_t val);
386 void *net_buf_simple_remove_mem(struct net_buf_simple *buf, size_t len);
398 uint8_t net_buf_simple_remove_u8(struct net_buf_simple *buf);
410 uint16_t net_buf_simple_remove_le16(struct net_buf_simple *buf);
422 uint16_t net_buf_simple_remove_be16(struct net_buf_simple *buf);
434 uint32_t net_buf_simple_remove_le24(struct net_buf_simple *buf);
446 uint32_t net_buf_simple_remove_be24(struct net_buf_simple *buf);
458 uint32_t net_buf_simple_remove_le32(struct net_buf_simple *buf);
470 uint32_t net_buf_simple_remove_be32(struct net_buf_simple *buf);
482 uint64_t net_buf_simple_remove_le40(struct net_buf_simple *buf);
494 uint64_t net_buf_simple_remove_be40(struct net_buf_simple *buf);
506 uint64_t net_buf_simple_remove_le48(struct net_buf_simple *buf);
518 uint64_t net_buf_simple_remove_be48(struct net_buf_simple *buf);
530 uint64_t net_buf_simple_remove_le64(struct net_buf_simple *buf);
542 uint64_t net_buf_simple_remove_be64(struct net_buf_simple *buf);
555 void *net_buf_simple_push(struct net_buf_simple *buf, size_t len);
569 void *net_buf_simple_push_mem(struct net_buf_simple *buf, const void *mem,
581 void net_buf_simple_push_le16(struct net_buf_simple *buf, uint16_t val);
592 void net_buf_simple_push_be16(struct net_buf_simple *buf, uint16_t val);
602 void net_buf_simple_push_u8(struct net_buf_simple *buf, uint8_t val);
613 void net_buf_simple_push_le24(struct net_buf_simple *buf, uint32_t val);
624 void net_buf_simple_push_be24(struct net_buf_simple *buf, uint32_t val);
635 void net_buf_simple_push_le32(struct net_buf_simple *buf, uint32_t val);
646 void net_buf_simple_push_be32(struct net_buf_simple *buf, uint32_t val);
657 void net_buf_simple_push_le40(struct net_buf_simple *buf, uint64_t val);
668 void net_buf_simple_push_be40(struct net_buf_simple *buf, uint64_t val);
679 void net_buf_simple_push_le48(struct net_buf_simple *buf, uint64_t val);
690 void net_buf_simple_push_be48(struct net_buf_simple *buf, uint64_t val);
701 void net_buf_simple_push_le64(struct net_buf_simple *buf, uint64_t val);
712 void net_buf_simple_push_be64(struct net_buf_simple *buf, uint64_t val);
725 void *net_buf_simple_pull(struct net_buf_simple *buf, size_t len);
738 void *net_buf_simple_pull_mem(struct net_buf_simple *buf, size_t len);
750 uint8_t net_buf_simple_pull_u8(struct net_buf_simple *buf);
762 uint16_t net_buf_simple_pull_le16(struct net_buf_simple *buf);
774 uint16_t net_buf_simple_pull_be16(struct net_buf_simple *buf);
786 uint32_t net_buf_simple_pull_le24(struct net_buf_simple *buf);
798 uint32_t net_buf_simple_pull_be24(struct net_buf_simple *buf);
810 uint32_t net_buf_simple_pull_le32(struct net_buf_simple *buf);
822 uint32_t net_buf_simple_pull_be32(struct net_buf_simple *buf);
834 uint64_t net_buf_simple_pull_le40(struct net_buf_simple *buf);
846 uint64_t net_buf_simple_pull_be40(struct net_buf_simple *buf);
858 uint64_t net_buf_simple_pull_le48(struct net_buf_simple *buf);
870 uint64_t net_buf_simple_pull_be48(struct net_buf_simple *buf);
882 uint64_t net_buf_simple_pull_le64(struct net_buf_simple *buf);
894 uint64_t net_buf_simple_pull_be64(struct net_buf_simple *buf);
905 static inline uint8_t *net_buf_simple_tail(const struct net_buf_simple *buf) in net_buf_simple_tail()
919 size_t net_buf_simple_headroom(const struct net_buf_simple *buf);
930 size_t net_buf_simple_tailroom(const struct net_buf_simple *buf);
941 uint16_t net_buf_simple_max_len(const struct net_buf_simple *buf);
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()
1048 struct net_buf_simple b;
1466 void net_buf_simple_reserve(struct net_buf_simple *buf, size_t reserve);