Lines Matching full:net_buf
16 defined in :zephyr_file:`include/zephyr/net_buf.h`:.
75 void *net_buf_add(struct net_buf *buf, size_t len);
76 void *net_buf_add_mem(struct net_buf *buf, const void *mem, size_t len);
77 uint8_t *net_buf_add_u8(struct net_buf *buf, uint8_t value);
78 void net_buf_add_le16(struct net_buf *buf, uint16_t value);
79 void net_buf_add_le32(struct net_buf *buf, uint32_t value);
88 void *net_buf_remove_mem(struct net_buf *buf, size_t len);
89 uint8_t net_buf_remove_u8(struct net_buf *buf);
90 uint16_t net_buf_remove_le16(struct net_buf *buf);
91 uint32_t net_buf_remove_le32(struct net_buf *buf);
100 void *net_buf_push(struct net_buf *buf, size_t len);
101 void *net_buf_push_mem(struct net_buf *buf, const void *mem, size_t len);
102 void net_buf_push_u8(struct net_buf *buf, uint8_t value);
103 void net_buf_push_le16(struct net_buf *buf, uint16_t value);
112 void *net_buf_pull(struct net_buf *buf, size_t len);
113 void *net_buf_pull_mem(struct net_buf *buf, size_t len);
114 uint8_t net_buf_pull_u8(struct net_buf *buf);
115 uint16_t net_buf_pull_le16(struct net_buf *buf);
116 uint32_t net_buf_pull_le32(struct net_buf *buf);
136 .. doxygengroup:: net_buf