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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
utils.py 184 def make_msgid(idstring=None):
189 Optional idstring if given is a string used to strengthen the
196 if idstring is None:
197 idstring = ''
199 idstring = '.' + idstring
201 msgid = '<%s.%s.%s%s@%s>' % (utcdate, pid, randint, idstring, idhost)
  /external/python/cpython2/Lib/email/
utils.py 184 def make_msgid(idstring=None):
189 Optional idstring if given is a string used to strengthen the
195 if idstring is None:
196 idstring = ''
198 idstring = '.' + idstring
200 msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, idhost)
  /external/python/cpython3/Lib/email/
utils.py 174 def make_msgid(idstring=None, domain=None):
179 Optional idstring if given is a string used to strengthen the
187 if idstring is None:
188 idstring = ''
190 idstring = '.' + idstring
193 msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, domain)
  /external/iproute2/examples/
dhcp-client-script 301 local idstring="#### Generated by DHCPCD"
309 echo $idstring > /etc/resolv.conf.dhcp
324 if [ "`head -1 /etc/resolv.conf`" != "$idstring" ]; then
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pdb.py 442 idstring = identifier.split("'")
443 if len(idstring) == 1:
445 id = idstring[0].strip()
446 elif len(idstring) == 3:
448 id = idstring[1].strip()
    [all...]
  /external/python/cpython2/Lib/
pdb.py 442 idstring = identifier.split("'")
443 if len(idstring) == 1:
445 id = idstring[0].strip()
446 elif len(idstring) == 3:
448 id = idstring[1].strip()
    [all...]
  /external/python/cpython3/Lib/
pdb.py 713 idstring = identifier.split("'")
714 if len(idstring) == 1:
716 id = idstring[0].strip()
717 elif len(idstring) == 3:
719 id = idstring[1].strip()
    [all...]
  /external/python/cpython3/Lib/test/test_email/
test_email.py     [all...]

Completed in 1291 milliseconds