HomeSort by relevance Sort by last modified time
    Searched defs:vpos (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_peap.c 765 const u8 *pos, *vpos; local
815 vpos = pos + 4;
816 mandatory = !!(vpos[0] & 0x80);
817 tlv_type = vpos[0] & 0x3f;
818 tlv_type = (tlv_type << 8) | vpos[1];
819 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
820 vpos += 4;
821 if (vpos + vtlv_len > pos + left) {
829 soh_tlv = vpos;
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 768 const u8 *pos, *vpos; local
818 vpos = pos + 4;
819 mandatory = !!(vpos[0] & 0x80);
820 tlv_type = vpos[0] & 0x3f;
821 tlv_type = (tlv_type << 8) | vpos[1];
822 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
823 vpos += 4;
824 if (vpos + vtlv_len > pos + left) {
832 soh_tlv = vpos;
    [all...]

Completed in 204 milliseconds