HomeSort by relevance Sort by last modified time
    Searched refs:out_buf (Results 1 - 25 of 40) sorted by null

1 2

  /system/extras/libublock/
ublock.c 37 char *out_buf; member in struct:ublock_ctx
130 char *out_buf; local
142 out_buf = (char *)(out_h + 1);
144 out_h->status = (ub_ctx->ops->read)(out_buf, in_h->length, in_h->offset);
189 void *out_buf; local
207 out_buf = out_h + 1;
231 result = (handle_fn)(ub_ctx, in_buf, in_buf_len, out_buf, &out_buf_len);
239 void *out_buf, size_t out_size)
247 assert(out_buf);
253 result = ublock_handle_request(ub_ctx, in_buf, in_len, out_buf, &out_len)
343 char *in_buf, *out_buf; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_tls_common.c 62 os_free(data->out_buf);
117 if (data->out_buf == NULL) {
118 wpa_printf(MSG_ERROR, "SSL: out_buf NULL in %s", __func__);
123 send_len = wpabuf_len(data->out_buf) - data->out_used;
144 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
146 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
150 if (data->out_used == wpabuf_len(data->out_buf)) {
154 wpabuf_free(data->out_buf);
155 data->out_buf = NULL;
161 (unsigned long) wpabuf_len(data->out_buf)
    [all...]
eap_tnc.c 29 struct wpabuf *out_buf; member in struct:eap_tnc_data
68 wpabuf_free(data->out_buf);
196 send_len = wpabuf_len(data->out_buf) - data->out_used;
216 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
222 if (data->out_used == wpabuf_len(data->out_buf)) {
226 wpabuf_free(data->out_buf);
227 data->out_buf = NULL;
232 (unsigned long) wpabuf_len(data->out_buf) -
250 if (data->out_buf == NULL)
    [all...]