Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:spos

1901 				       u8 **spos, const u8 *end)
1903 while (*spos < end) {
1904 u8 val = ((*spos)[0] & 0xc0) >> 6;
1919 if (*spos + 2 > end) {
1925 offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
1926 if (offset >= *spos - start) {
1932 (*spos) += 2;
1936 *spos - 2);
1940 len = (*spos)[0] & 0x3f;
1944 (*spos)++;
1945 if (*spos + len > end) {
1955 os_memcpy(*upos, *spos, len);
1956 *spos += len;
1976 u8 *tmp, *end, *spos;
1988 spos = tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN;
1989 end = spos + msg_len;
1990 spos += offset;
1999 ret = p2p_sd_dns_uncompress_label(&upos, uend, tmp, &spos, end);