Lines Matching defs:buf
23 u8 *buf; /* pointer to the head of the buffer */ member
47 static inline size_t wpabuf_size(const struct wpabuf *buf) in wpabuf_size()
57 static inline size_t wpabuf_len(const struct wpabuf *buf) in wpabuf_len()
67 static inline size_t wpabuf_tailroom(const struct wpabuf *buf) in wpabuf_tailroom()
77 static inline const void * wpabuf_head(const struct wpabuf *buf) in wpabuf_head()
82 static inline const u8 * wpabuf_head_u8(const struct wpabuf *buf) in wpabuf_head_u8()
92 static inline void * wpabuf_mhead(struct wpabuf *buf) in wpabuf_mhead()
97 static inline u8 * wpabuf_mhead_u8(struct wpabuf *buf) in wpabuf_mhead_u8()
102 static inline void wpabuf_put_u8(struct wpabuf *buf, u8 data) in wpabuf_put_u8()
108 static inline void wpabuf_put_le16(struct wpabuf *buf, u16 data) in wpabuf_put_le16()
114 static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data) in wpabuf_put_le32()
120 static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data) in wpabuf_put_be16()
126 static inline void wpabuf_put_be24(struct wpabuf *buf, u32 data) in wpabuf_put_be24()
132 static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data) in wpabuf_put_be32()
138 static inline void wpabuf_put_data(struct wpabuf *buf, const void *data, in wpabuf_put_data()
151 static inline void wpabuf_set(struct wpabuf *buf, const void *data, size_t len) in wpabuf_set()