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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
452 def xhdr(self, hdr, str, file=None): member in class:NNTP
453 """Process an XHDR command (optional server extension). Arguments:
461 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
622 resp, subs = s.xhdr('subject', first + '-' + last)
  /external/python/cpython2/Lib/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
461 def xhdr(self, hdr, str, file=None): member in class:NNTP
462 """Process an XHDR command (optional server extension). Arguments:
470 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
631 resp, subs = s.xhdr('subject', first + '-' + last)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
452 def xhdr(self, hdr, str, file=None): member in class:NNTP
453 """Process an XHDR command (optional server extension). Arguments:
461 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
622 resp, subs = s.xhdr('subject', first + '-' + last)
  /prebuilts/gdb/linux-x86/lib/python2.7/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
452 def xhdr(self, hdr, str, file=None): member in class:NNTP
453 """Process an XHDR command (optional server extension). Arguments:
461 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
622 resp, subs = s.xhdr('subject', first + '-' + last)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
452 def xhdr(self, hdr, str, file=None): member in class:NNTP
453 """Process an XHDR command (optional server extension). Arguments:
461 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
622 resp, subs = s.xhdr('subject', first + '-' + last)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 10 >>> resp, subs = s.xhdr('subject', first + '-' + last)
452 def xhdr(self, hdr, str, file=None): member in class:NNTP
453 """Process an XHDR command (optional server extension). Arguments:
461 resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str, file)
622 resp, subs = s.xhdr('subject', first + '-' + last)
  /external/python/cpython3/Lib/
nntplib.py 13 >>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last))
137 '221', # HEAD, XHDR
778 def xhdr(self, hdr, str, *, file=None): member in class:_NNTPBase
779 """Process an XHDR command (optional server extension). Arguments:
788 resp, lines = self._longcmdstring('XHDR {0} {1}'.format(hdr, str), file)
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_1x.c 51 struct ieee802_1x_hdr *xhdr; local
55 len = sizeof(*xhdr) + datalen;
64 xhdr = (struct ieee802_1x_hdr *) buf;
65 xhdr->version = hapd->conf->eapol_version;
66 xhdr->type = type;
67 xhdr->length = host_to_be16(datalen);
70 os_memcpy(xhdr + 1, data, datalen);
2358 const struct ieee802_1x_hdr *xhdr = local
    [all...]

Completed in 89 milliseconds