OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hread
(Results
1 - 2
of
2
) sorted by null
/external/wpa_supplicant_8/src/wps/
http_client.c
31
struct httpread *
hread
;
member in struct:http_client
55
if (httpread_hdr_type_get(c->
hread
) == HTTPREAD_HDR_TYPE_REPLY)
57
int reply_code = httpread_reply_code_get(c->
hread
);
121
c->
hread
= httpread_create(c->sd, http_client_got_response, c,
123
if (c->
hread
== NULL) {
294
httpread_destroy(c->
hread
);
307
if (c->
hread
== NULL)
309
wpabuf_set(&c->body, httpread_data_get(c->
hread
),
310
httpread_length_get(c->
hread
));
317
if (c->
hread
== NULL
[
all
...]
http_server.c
26
struct httpread *
hread
;
member in struct:http_request
79
req->
hread
= httpread_create(req->fd, http_request_cb, req,
82
if (req->
hread
== NULL) {
115
httpread_destroy(req->
hread
);
165
return httpread_hdr_type_get(req->
hread
);
171
return httpread_uri_get(req->
hread
);
177
return httpread_hdr_get(req->
hread
);
183
return httpread_data_get(req->
hread
);
189
return httpread_hdr_line_get(req->
hread
, tag);
Completed in 98 milliseconds