HomeSort by relevance Sort by last modified time
    Searched refs:posix (Results 1 - 25 of 429) 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...]
  /external/python/cpython2/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
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 @unittest.skipUnless(hasattr(posix, 'getresuid'),
57 'test needs posix.getresuid()')
59 user_ids = posix.getresuid()
64 @unittest.skipUnless(hasattr(posix, 'getresgid')
    [all...]
  /external/python/cpython3/Lib/test/
test_posix.py 1 "Test posix functions"
6 # Skip these tests if there is no posix module.
7 posix = support.import_module('posix') variable
41 # test posix functions which take no arguments and have
50 posix_func = getattr(posix, name, None)
55 @unittest.skipUnless(hasattr(posix, 'getresuid'),
56 'test needs posix.getresuid()')
58 user_ids = posix.getresuid()
63 @unittest.skipUnless(hasattr(posix, 'getresgid')
    [all...]
  /external/toybox/
Android.mk 162 toys/posix/basename.c \
163 toys/posix/cal.c \
164 toys/posix/cat.c \
165 toys/posix/chgrp.c \
166 toys/posix/chmod.c \
167 toys/posix/cksum.c \
168 toys/posix/cmp.c \
169 toys/posix/comm.c \
170 toys/posix/cp.c \
171 toys/posix/cpio.c
    [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/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...]
  /external/python/cpython2/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...]
  /external/python/cpython3/Lib/
shlex.py 6 # Posix compliance, split(), string arguments, and
8 # changes to tokenize more like Posix shells by Vinay Sajip, July 2016.
21 def __init__(self, instream=None, infile=None, posix=False,
31 self.posix = posix
32 if posix:
39 if self.posix:
152 if self.token or (self.posix and quoted):
159 elif self.posix and nextchar in self.escape:
169 if not self.posix
    [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...]
  /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...]
  /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...]
  /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
185 # POSIX has some stuff that's too stupid for words (a64l) or not actually
230 posix = posix - in_posix_and_glibc_but_dead_or_useless variable
244 print 'in glibc (but not posix) but not bionic:'
245 for symbol in sorted((glibc - posix).difference(bionic)):
249 print 'in posix (and implemented in glibc) but not bionic:'
250 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;
  /external/ltp/testcases/commands/nm/
nm01 43 EXPECT_PASS $NM -f posix -A "lib.a" \> nm.out
52 EXPECT_PASS $NM -f posix -A "dir/lib.a" \> nm.out
64 EXPECT_PASS $NM -f posix -g $TST_DATAROOT/f1 \> nm.out
76 EXPECT_PASS $NM -f posix -t o $TST_DATAROOT/f1 \> nm.out
101 EXPECT_PASS $NM -f posix $TST_DATAROOT/f1 \> nm_posix.out
  /external/python/cpython2/Lib/plat-irix5/
cdplayer.py 41 import posix
42 f = open(posix.environ['HOME'] + '/' + cdplayerrc, 'r')
70 import posix
71 filename = posix.environ['HOME'] + '/' + cdplayerrc
91 posix.rename(filename + '.new', filename)
  /external/python/cpython2/Lib/plat-irix6/
cdplayer.py 41 import posix
42 f = open(posix.environ['HOME'] + '/' + cdplayerrc, 'r')
70 import posix
71 filename = posix.environ['HOME'] + '/' + cdplayerrc
91 posix.rename(filename + '.new', filename)

Completed in 612 milliseconds

1 2 3 4 5 6 7 8 91011>>