HomeSort by: relevance | last modified time | path
    Searched refs:rpos (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/bsd/wpa/dist/hostapd/
hlr_auc_gw.c 593 char *rpos, *rend; local
609 rpos = resp;
610 ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi);
611 if (ret < 0 || ret >= rend - rpos)
613 rpos += ret;
622 *rpos++ = ' ';
623 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8)
665 char *pos, *rpos, *rend; local
    [all...]
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_md5.c 35 u8 *rpos, id; local
88 rpos = wpabuf_put(resp, CHAP_MD5_LEN);
90 rpos)) {
96 wpa_hexdump(MSG_MSGDUMP, "EAP-MD5: Response", rpos, CHAP_MD5_LEN);
eap_leap.c 66 u8 challenge_len, *rpos; local
117 rpos = wpabuf_put(resp, LEAP_RESPONSE_LEN);
118 if ((pwhash && challenge_response(challenge, password, rpos)) ||
120 nt_challenge_response(challenge, password, password_len, rpos))) {
126 os_memcpy(data->peer_response, rpos, LEAP_RESPONSE_LEN);
128 rpos, LEAP_RESPONSE_LEN);
eap_sake.c 192 u8 *rpos; local
268 rpos = wpabuf_put(resp, EAP_SAKE_MIC_LEN);
272 wpabuf_head(resp), wpabuf_len(resp), rpos,
273 rpos)) {
296 u8 *rpos; local
350 rpos = wpabuf_put(resp, EAP_SAKE_MIC_LEN);
354 wpabuf_head(resp), wpabuf_len(resp), rpos,
355 rpos)) {
eap_pax.c 122 u8 *rpos; local
206 rpos = wpabuf_put(resp, EAP_PAX_MAC_LEN);
210 (u8 *) data->cid, data->cid_len, rpos);
212 rpos, EAP_PAX_MAC_LEN);
216 rpos = wpabuf_put(resp, EAP_PAX_ICV_LEN);
219 NULL, 0, NULL, 0, rpos);
220 wpa_hexdump(MSG_MSGDUMP, "EAP-PAX: ICV", rpos, EAP_PAX_ICV_LEN);
237 u8 *rpos, mac[EAP_PAX_MAC_LEN]; local
314 rpos = wpabuf_put(resp, EAP_PAX_ICV_LEN);
317 NULL, 0, NULL, 0, rpos) < 0)
    [all...]
eap_tnc.c 208 u8 *rpos, *rpos1; local
390 rpos = tncc_copy_send_buf(data->tncc, rpos1);
391 wpabuf_put(resp, rpos - rpos1);
eap_gpsk.c 319 u8 *rpos, *start; local
396 rpos = wpabuf_put(resp, miclen);
398 data->specifier, start, rpos - start, rpos) <
631 u8 *rpos, *start; local
649 rpos = wpabuf_put(resp, mlen);
651 data->specifier, start, rpos - start, rpos) <
eap_eke.c 362 u8 *rpos; local
451 rpos = wpabuf_put(resp, data->sess.dhcomp_len);
452 if (eap_eke_dhcomp(&data->sess, key, pub, rpos) < 0) {
462 rpos, data->sess.dhcomp_len);
  /src/external/apache2/llvm/dist/llvm/utils/
wciia.py 92 rpos = -1
94 rpos = path.find(fpath)
95 if rpos == 0:
  /src/sys/arch/xen/xen/
genfb_xen.c 89 _xen_genfb_btinfo.rpos = d0_consi->u.vesa_lfb.red_size;
  /src/external/bsd/tmux/dist/compat/
imsg-buffer.c 284 /* only allow seeking between rpos and wpos */
291 return (buf->buf + buf->rpos + pos);
405 return (buf->buf + buf->rpos);
411 return (buf->wpos - buf->rpos);
427 buf->wpos = buf->rpos + len;
441 buf->rpos = 0;
474 buf->rpos += len;
487 buf->rpos += len;
558 buf->rpos += len;
588 buf->rpos += len
    [all...]
imsg.h 38 size_t rpos; member in struct:ibuf
  /src/external/bsd/wpa/dist/src/ap/
fils_hlp.c 164 const u8 *rpos; local
291 rpos = wpabuf_head(resp);
305 wpabuf_put_data(sta->fils_hlp_resp, rpos, len - 1);
306 rpos += len - 1;
312 wpabuf_put_data(sta->fils_hlp_resp, rpos, len);
313 rpos += len;
gas_serv.c 486 const u8 *rpos, *rend; local
491 rpos = realm_name;
492 while (rpos < realm_name + realm_len &&
494 for (rend = rpos;
503 rend - rpos ||
504 os_strncmp((char *) rpos,
506 rend - rpos) != 0)
513 rpos = rend + 1;
wpa_auth_ft.c 2529 const u8 *rpos, *start; local
2534 rpos = ric;
2535 while (rpos + sizeof(*rdie) < ric + ric_len) {
2536 if (rpos[0] != WLAN_EID_RIC_DATA || rpos[1] < sizeof(*rdie) ||
2537 rpos + 2 + rpos[1] > ric + ric_len)
2539 rdie = (const struct rsn_rdie *) (rpos + 2);
2540 rpos += 2 + rpos[1]
    [all...]
  /src/external/bsd/wpa/dist/src/common/
wpa_common.c 2900 u8 *start, *end, *rpos, *rend; local
2919 rpos = start + 2;
2920 rend = rpos + start[1];
2923 rpos += 2 + 4;
2925 rpos += 2 + WPA_GET_LE16(rpos) * RSN_SELECTOR_LEN;
2927 rpos += 2 + WPA_GET_LE16(rpos) * RSN_SELECTOR_LEN;
2929 if (rpos == rend) {
2931 os_memmove(rpos + 2, rpos, end - rpos)
    [all...]
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_tnc.c 130 u8 *rpos, *rpos1; local
161 rpos = tncs_copy_send_buf(data->tncs, rpos1);
162 wpabuf_put(req, rpos - rpos1);
  /src/sys/arch/x86/include/
bootinfo.h 213 uint8_t rpos; member in struct:btinfo_framebuffer
  /src/sys/arch/x86/x86/
genfb_machdep.c 153 ri->ri_rpos = fbinfo->rpos;
  /src/games/backgammon/common_source/
fancy.c 196 * bsect (b,rpos,cpos,cnext)
198 * position, "rpos" is the row to start printing, "cpos" is the column to
205 bsect(int b, int rpos, int cpos, int cnext)
218 curmove(rpos, cpos + 1);
220 curmove(rpos, cpos);
  /src/sys/arch/i386/stand/lib/
vbe.c 194 fb.rpos = mi.RedFieldPosition;
  /src/sys/arch/i386/stand/efiboot/
eficons.c 528 fb.rpos = 16;
537 fb.rpos = 0;
544 &fb.rnum, &fb.rpos);
  /src/sys/dev/scsipi/
cd.c 2486 uint16_t feature, int cur, uint8_t *rpos)
2499 blockingnr = rpos[5] | (rpos[4] << 8);
2508 blockingnr = rpos[9] | (rpos[8] << 8);
2516 mmc_discinfo->link_block_penalty = rpos[4];
2517 if (rpos[2] & 1)
2544 if (rpos[0] & 1) /* write support */
2551 if (rpos[0] & 1) /* blank bit */
2560 if (rpos[0] & 2) /* DVD-RW bit *
    [all...]
  /src/external/gpl3/gcc/dist/libcpp/
lex.cc 2430 const uchar *rpos;
2434 : first (NULL), last (NULL), rpos (0), accum (0)
2443 return rpos != NULL;
2447 char c = *rpos++;
2448 if (rpos == BUFF_FRONT (last))
2449 rpos = NULL;
2479 gcc_checking_assert (!rpos);
2496 rpos = BUFF_FRONT (last);
2429 const uchar *rpos; member in struct:lit_accum
  /src/external/gpl3/gcc.old/dist/libcpp/
lex.cc 2172 const uchar *rpos;
2176 : first (NULL), last (NULL), rpos (0), accum (0)
2185 return rpos != NULL;
2189 char c = *rpos++;
2190 if (rpos == BUFF_FRONT (last))
2191 rpos = NULL;
2216 gcc_checking_assert (!rpos);
2233 rpos = BUFF_FRONT (last);
2171 const uchar *rpos; member in struct:lit_accum

Completed in 47 milliseconds

1 2