Lines Matching refs:pos
98 char *pos;
112 pos = attr->data;
113 if (pos[0] == '0' && pos[1] == 'x')
114 pos += 2;
115 len = os_strlen(pos);
121 if (hexstr2bin(pos, (u8 *) buf, len) < 0) {
175 const u8 *pos;
191 pos = (const u8 *) (hdr + 1);
193 pos[0] == EAP_TYPE_IDENTITY) {
194 pos++;
199 os_memcpy(e->eap_identity, pos, e->eap_identity_len);
558 u8 buf[100], *pos;
571 pos = (u8 *) (eap + 1);
572 *pos = EAP_TYPE_IDENTITY;
826 u8 *pos;
828 pos = (u8 *) &as->addr.u.v4;
829 *pos++ = a[0];
830 *pos++ = a[1];
831 *pos++ = a[2];
832 *pos++ = a[3];
1105 char *pos;
1185 pos = os_strchr(optarg, ':');
1186 if (pos == NULL) {
1192 pos++;
1193 if (pos[0] == '\0' || pos[1] != ':') {
1199 p->syntax = pos[0];
1200 p->data = pos + 2;