Searched defs:posix (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
H A Dtelnet.py16 import sys, posix, time namespace
59 pid = posix.fork()
75 posix.kill(pid, 9)
H A Dftp.py21 import sys, posix, string namespace
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dposixfile.py100 import posix namespace
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix namespace
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode)
H A Dos.py4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
41 if 'posix' in _names:
42 name = 'posix'
44 from posix import *
46 from posix import _exit
51 import posix namespace
52 __all__.extend(_get_exports_list(posix))
53 del posix
H A Dtarfile.py71 POSIX_MAGIC = "ustar\x0000" # magic posix tar string
1611 posix = property(_getposix, _setposix) variable in class:TarFile
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_posix.py1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
33 # test posix functions which take no arguments and have
44 posix_func = getattr(posix, name, None)
49 if hasattr(posix, 'getresuid'):
51 user_ids = posix.getresuid()
56 if hasattr(posix, 'getresgid'):
58 group_ids = posix
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
H A Dos.py4 - all functions from edk2, posix, nt, os2, or ce, e.g. unlink, stat, etc.
6 - os.name is 'edk2', 'posix', 'nt', 'os2', 'ce' or 'riscos'
41 if 'posix' in _names:
42 name = 'posix'
44 from posix import *
46 from posix import _exit
51 import posix namespace
52 __all__.extend(_get_exports_list(posix))
53 del posix
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
H A Dos.py17 - all functions from edk2, posix, nt, os2, or ce, e.g. unlink, stat, etc.
19 - os.name is 'edk2', 'posix', 'nt', 'os2', 'ce' or 'riscos'
54 if 'posix' in _names:
55 name = 'posix'
57 from posix import *
59 from posix import _exit
64 import posix namespace
65 __all__.extend(_get_exports_list(posix))
66 del posix

Completed in 58 milliseconds