HomeSort by relevance Sort by last modified time
    Searched refs:posix (Results 1 - 25 of 388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_posix.py 1 "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.getresgid()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
ossource_posix.cpp 16 // This file contains the posix specific functions
21 #error Trying to build a posix specific file in a non-posix build.
  /external/toybox/
Android.mk 150 toys/posix/basename.c \
151 toys/posix/cal.c \
152 toys/posix/cat.c \
153 toys/posix/chgrp.c \
154 toys/posix/chmod.c \
155 toys/posix/cksum.c \
156 toys/posix/cmp.c \
157 toys/posix/comm.c \
158 toys/posix/cp.c \
159 toys/posix/cpio.c
    [all...]
  /external/deqp/execserver/
xsPosixTestProcess.hpp 37 namespace posix namespace in namespace:xs
73 } // posix
102 posix::CaseListWriter m_caseListWriter;
103 posix::PipeReader m_stdOutReader;
104 posix::PipeReader m_stdErrReader;
105 posix::FileReader m_logReader;
xsPosixFileReader.hpp 32 namespace posix namespace in namespace:xs
55 } // posix
  /external/googletest/googletest/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
42 using ::testing::internal::posix::Stat;
43 using ::testing::internal::posix::StatStruct;
  /external/v8/testing/gtest/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
42 using ::testing::internal::posix::Stat;
43 using ::testing::internal::posix::StatStruct;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shlex.py 7 # Posix compliance, split(), string arguments, and
23 def __init__(self, instream=None, infile=None, posix=False):
32 self.posix = posix
33 if posix:
40 if self.posix:
140 if self.token or (self.posix and quoted):
147 elif self.posix and nextchar in self.escape:
154 if not self.posix:
162 if self.token or (self.posix and quoted):
    [all...]
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
23 def __init__(self, instream=None, infile=None, posix=False):
32 self.posix = posix
33 if posix:
40 if self.posix:
140 if self.token or (self.posix and quoted):
147 elif self.posix and nextchar in self.escape:
154 if not self.posix:
162 if self.token or (self.posix and quoted)
    [all...]
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
23 def __init__(self, instream=None, infile=None, posix=False):
32 self.posix = posix
33 if posix:
40 if self.posix:
140 if self.token or (self.posix and quoted):
147 elif self.posix and nextchar in self.escape:
154 if not self.posix:
162 if self.token or (self.posix and quoted)
    [all...]
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
23 def __init__(self, instream=None, infile=None, posix=False):
32 self.posix = posix
33 if posix:
40 if self.posix:
140 if self.token or (self.posix and quoted):
147 elif self.posix and nextchar in self.escape:
154 if not self.posix:
162 if self.token or (self.posix and quoted)
    [all...]
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
23 def __init__(self, instream=None, infile=None, posix=False):
32 self.posix = posix
33 if posix:
40 if self.posix:
140 if self.token or (self.posix and quoted):
147 elif self.posix and nextchar in self.escape:
154 if not self.posix:
162 if self.token or (self.posix and quoted)
    [all...]
  /bionic/libc/tools/
check-symbols-glibc.py 67 posix = symbols.GetFromTxt(os.path.join(this_dir, 'posix-2013.txt')) variable
184 # POSIX has some stuff that's too stupid for words (a64l) or not actually
199 posix = posix - in_posix_and_glibc_but_actually_dead variable
213 print 'in glibc (but not posix) but not bionic:'
214 for symbol in sorted((glibc - posix).difference(bionic)):
218 print 'in posix (and implemented in glibc) but not bionic:'
219 for symbol in sorted((posix.intersection(glibc)).difference(bionic)):
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_premature_exit_test.cc 41 using ::testing::internal::posix::GetEnv;
42 using ::testing::internal::posix::Stat;
43 using ::testing::internal::posix::StatStruct;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
telnet.py 16 import sys, posix, time
59 pid = posix.fork()
75 posix.kill(pid, 9)
  /external/elfutils/tests/
run-nm-self.sh 26 for format_arg in --format=bsd --format=sysv --format=posix; do
  /external/libunwind/tests/
run-coredump-unwind 18 nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
20 nm "$debuginfo" --format=posix --defined-only | awk '{ if ($2 == "T" || $2 == "t") print $1 }' | sort > "$funcsyms"

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>