Home | History | Annotate | Download | only in utils

Lines Matching refs:trace

12 #include "trace.h"
33 struct wpabuf_trace *trace = wpabuf_get_trace(buf);
34 if (trace->magic != WPABUF_MAGIC) {
36 trace->magic);
51 struct wpabuf_trace *trace;
60 trace = wpabuf_get_trace(buf);
61 if (trace->magic != WPABUF_MAGIC) {
63 trace->magic);
79 nbuf = os_realloc(trace, sizeof(struct wpabuf_trace) +
84 trace = (struct wpabuf_trace *) nbuf;
85 buf = (struct wpabuf *) (trace + 1);
116 struct wpabuf_trace *trace = os_zalloc(sizeof(struct wpabuf_trace) +
119 if (trace == NULL)
121 trace->magic = WPABUF_MAGIC;
122 buf = (struct wpabuf *) (trace + 1);
138 struct wpabuf_trace *trace = os_zalloc(sizeof(struct wpabuf_trace) +
141 if (trace == NULL)
143 trace->magic = WPABUF_MAGIC;
144 buf = (struct wpabuf *) (trace + 1);
185 struct wpabuf_trace *trace;
188 trace = wpabuf_get_trace(buf);
189 if (trace->magic != WPABUF_MAGIC) {
191 trace->magic);
197 os_free(trace);