Lines Matching refs:wpabuf

12 /* wpabuf::buf is a pointer to external data */
16 * Internal data structure for wpabuf. Please do not touch this directly from
20 struct wpabuf {
29 int wpabuf_resize(struct wpabuf **buf, size_t add_len);
30 struct wpabuf * wpabuf_alloc(size_t len);
31 struct wpabuf * wpabuf_alloc_ext_data(u8 *data, size_t len);
32 struct wpabuf * wpabuf_alloc_copy(const void *data, size_t len);
33 struct wpabuf * wpabuf_dup(const struct wpabuf *src);
34 void wpabuf_free(struct wpabuf *buf);
35 void wpabuf_clear_free(struct wpabuf *buf);
36 void * wpabuf_put(struct wpabuf *buf, size_t len);
37 struct wpabuf * wpabuf_concat(struct wpabuf *a, struct wpabuf *b);
38 struct wpabuf * wpabuf_zeropad(struct wpabuf *buf, size_t len);
39 void wpabuf_printf(struct wpabuf *buf, char *fmt, ...) PRINTF_FORMAT(2, 3);
40 struct wpabuf * wpabuf_parse_bin(const char *buf);
44 * wpabuf_size - Get the currently allocated size of a wpabuf buffer
45 * @buf: wpabuf buffer
48 static inline size_t wpabuf_size(const struct wpabuf *buf)
54 * wpabuf_len - Get the current length of a wpabuf buffer data
55 * @buf: wpabuf buffer
58 static inline size_t wpabuf_len(const struct wpabuf *buf)
65 * @buf: wpabuf buffer
68 static inline size_t wpabuf_tailroom(const struct wpabuf *buf)
75 * @buf: wpabuf buffer
78 static inline const void * wpabuf_head(const struct wpabuf *buf)
83 static inline const u8 * wpabuf_head_u8(const struct wpabuf *buf)
90 * @buf: wpabuf buffer
93 static inline void * wpabuf_mhead(struct wpabuf *buf)
98 static inline u8 * wpabuf_mhead_u8(struct wpabuf *buf)
103 static inline void wpabuf_put_u8(struct wpabuf *buf, u8 data)
109 static inline void wpabuf_put_le16(struct wpabuf *buf, u16 data)
115 static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data)
121 static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data)
127 static inline void wpabuf_put_be24(struct wpabuf *buf, u32 data)
133 static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data)
139 static inline void wpabuf_put_data(struct wpabuf *buf, const void *data,
146 static inline void wpabuf_put_buf(struct wpabuf *dst,
147 const struct wpabuf *src)
152 static inline void wpabuf_set(struct wpabuf *buf, const void *data, size_t len)
159 static inline void wpabuf_put_str(struct wpabuf *dst, const char *str)