Home
last modified time | relevance | path

Searched refs:posix (Results 51 - 75 of 207) sorted by relevance

123456789

/third_party/python/Lib/
H A Dos.py4 - all functions from posix or nt, e.g. unlink, stat, etc.
6 - os.name is either 'posix' or 'nt'
52 if 'posix' in _names:
53 name = 'posix'
55 from posix import *
57 from posix import _exit
64 from posix import _have_functions
68 import posix namespace
69 __all__.extend(_get_exports_list(posix))
70 del posix
[all...]
H A Dshutil.py36 posix = nt = None
37 if os.name == 'posix':
38 import posix namespace
46 _HAS_FCOPYFILE = posix and hasattr(posix, "_fcopyfile") # macOS
97 posix._fcopyfile(infd, outfd, flags)
262 _fastcopy_fcopyfile(fsrc, fdst, posix._COPYFILE_DATA)
/kernel/linux/linux-5.10/tools/testing/selftests/proc/
H A DMakefile7 TEST_GEN_PROGS += fd-002-posix-eq
/kernel/liteos_a/testsuites/kernel/sample/posix/mutex/
H A DMakefile8 -I $(LITEOSTESTTOPDIR)/kernel/sample/posix/mutex
/kernel/linux/linux-5.10/include/linux/
H A Dposix-clock.h3 * posix-clock.h - support for dynamic clock devices
13 #include <linux/posix-timers.h>
21 * Every posix clock is represented by a character device. Drivers may
68 * struct posix_clock - represents a dynamic posix clock
/kernel/linux/linux-6.6/include/linux/
H A Dposix-clock.h3 * posix-clock.h - support for dynamic clock devices
13 #include <linux/posix-timers.h>
21 * Every posix clock is represented by a character device. Drivers may
68 * struct posix_clock - represents a dynamic posix clock
/kernel/linux/linux-6.6/tools/testing/selftests/proc/
H A DMakefile8 TEST_GEN_PROGS += fd-002-posix-eq
/third_party/googletest/googletest/src/
H A Dgtest-test-part.cc71 internal::posix::Abort(); in GetTestPartResult()
H A Dgtest-typed-test.cc97 posix::Abort(); in VerifyRegisteredTestNames()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-test-part.cc70 internal::posix::Abort(); in GetTestPartResult()
H A Dgtest-typed-test.cc109 posix::Abort(); in VerifyRegisteredTestNames()
/third_party/node/deps/googletest/src/
H A Dgtest-test-part.cc73 internal::posix::Abort(); in GetTestPartResult()
H A Dgtest-death-test.cc298 FILE* parent = posix::FDOpen(flag->write_fd(), "w"); in DeathTestAbort()
306 posix::Abort(); in DeathTestAbort()
345 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()
358 while ((num_read = posix::Read(fd, buffer, 255)) > 0) { in FailFromInternalError()
477 bytes_read = posix::Read(read_fd(), &flag, 1); in ReadAndInterpretStatusByte()
505 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); in ReadAndInterpretStatusByte()
523 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); in Abort()
H A Dgtest-typed-test.cc101 posix::Abort(); in VerifyRegisteredTestNames()
/third_party/vk-gl-cts/execserver/
H A DxsPosixFileReader.cpp30 namespace posix namespace
120 } // posix
/third_party/vk-gl-cts/framework/delibs/dethread/unix/
H A DdeThreadLocalUnix.c29 # error You are using too old posix API!
/third_party/lzma/CPP/7zip/UI/Common/
H A DPropIDUtils.cpp85 some programs store posix attributes in high 16 bits. in ConvertWinAttribToString()
93 UInt32 posix = 0; in ConvertWinAttribToString() local
96 posix = wa >> 16; in ConvertWinAttribToString()
127 ConvertPosixAttribToString(s, posix); in ConvertWinAttribToString()
/kernel/linux/linux-5.10/drivers/ptp/
H A Dptp_private.h14 #include <linux/posix-clock.h>
/third_party/googletest/googletest/test/
H A Dgtest_environment_test.cc106 testing::internal::posix::Abort(); in Check()
H A Dgoogletest-death-test-test.cc62 namespace posix = ::testing::internal::posix;
132 ~TestForDeathTest() override { posix::ChDir(original_dir_.c_str()); }
380 void ChangeToRootDir() { posix::ChDir(GTEST_PATH_SEP_); } in ChangeToRootDir()
/third_party/libcoap/scripts/
H A Dbuild.sh59 posix|*) config "$WITH_TESTS $WITH_DOCS --enable-examples $WITH_TLS $OTHER_OPTS" && \
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidExecService.hpp73 xs::posix::FileReader m_logReader;
/third_party/python/Lib/test/
H A Dtest_posixpath.py13 import posix namespace
15 posix = None variable
26 instead of posix forward slashes. If this is the case, several tests
30 msg = "ABSTFN is not a posix path - tests fail"
207 @unittest.skipIf(posix is None, "Test requires posix module")
218 return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0))
225 @unittest.skipIf(posix is None, "Test requires posix module")
240 return posix
[all...]
/third_party/icu/icu4c/source/common/
H A Duniset_props.cpp1025 UBool posix = false; // true for [:pat:], false for \p{pat} \P{pat} \N{pat} in applyPropertyPattern() local
1039 posix = true; in applyPropertyPattern()
1063 if (posix) { in applyPropertyPattern()
1109 ppos.setIndex(close + (posix ? 2 : 1)); in applyPropertyPattern()
/third_party/node/deps/icu-small/source/common/
H A Duniset_props.cpp1022 UBool posix = false; // true for [:pat:], false for \p{pat} \P{pat} \N{pat} in applyPropertyPattern() local
1036 posix = true; in applyPropertyPattern()
1060 if (posix) { in applyPropertyPattern()
1106 ppos.setIndex(close + (posix ? 2 : 1)); in applyPropertyPattern()

Completed in 17 milliseconds

123456789