OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attr_pos
(Results
1 - 3
of
3
) sorted by null
/external/wpa_supplicant_8/src/radius/
radius.c
39
*
attr_pos
- Array of indexes to attributes
44
size_t *
attr_pos
;
member in struct:radius_msg
74
(wpabuf_mhead_u8(msg->buf) + msg->
attr_pos
[idx]);
87
msg->
attr_pos
=
88
os_zalloc(RADIUS_DEFAULT_ATTR_COUNT * sizeof(*msg->
attr_pos
));
89
if (msg->
attr_pos
== NULL)
139
os_free(msg->
attr_pos
);
441
nattr_pos = os_realloc(msg->
attr_pos
,
442
nlen * sizeof(*msg->
attr_pos
));
446
msg->
attr_pos
= nattr_pos
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.c
26
return (struct radius_attr_hdr *) (msg->buf + msg->
attr_pos
[idx]);
63
msg->
attr_pos
=
64
os_zalloc(RADIUS_DEFAULT_ATTR_COUNT * sizeof(*msg->
attr_pos
));
65
if (msg->
attr_pos
== NULL) {
93
os_free(msg->
attr_pos
);
94
msg->
attr_pos
= NULL;
396
nattr_pos = os_realloc(msg->
attr_pos
,
397
nlen * sizeof(*msg->
attr_pos
));
401
msg->
attr_pos
= nattr_pos;
405
msg->
attr_pos
[msg->attr_used++] = (unsigned char *) attr - msg->buf
[
all
...]
radius.h
184
size_t *
attr_pos
; /* array of indexes to attributes (number of bytes
member in struct:radius_msg
Completed in 30 milliseconds