/external/ltp/testcases/realtime/func/pi-tests/ |
D | testpi-0.c | 79 n = confstr(_CS_GNU_LIBC_VERSION, NULL, (size_t) 0); in main() 83 confstr(_CS_GNU_LIBC_VERSION, pathbuf, n); in main() 88 n = confstr(_CS_GNU_LIBPTHREAD_VERSION, NULL, (size_t) 0); in main() 92 confstr(_CS_GNU_LIBPTHREAD_VERSION, pathbuf, n); in main()
|
/external/ltp/testcases/kernel/syscalls/confstr/ |
D | confstr01.c | 94 TEST(confstr(test_cases[i].value, NULL, (size_t)0)); in main() 99 TEST(confstr(test_cases[i].value, buf, len)); in main()
|
/external/llvm-project/libcxx/test/support/ |
D | platform_support.h | 117 size_t n = confstr(_CS_GNU_LIBC_VERSION, nullptr, (size_t)0); in glibc_version_less_than() 119 confstr(_CS_GNU_LIBC_VERSION, current_version, n); in glibc_version_less_than()
|
/external/ltp/testcases/kernel/syscalls/ |
D | Makefile | 38 accept4 adjtimex cma confstr fcntl fmtmsg futex getcontext getcpu \
|
/external/libcups/cups/ |
D | tempfile.c | 75 if (confstr(_CS_DARWIN_USER_TEMP_DIR, tmppath, sizeof(tmppath))) in cupsTempFd()
|
D | ppd-util.c | 236 if (confstr(_CS_DARWIN_USER_TEMP_DIR, tmppath, sizeof(tmppath))) in cupsGetPPD3()
|
/external/ltp/travis/ |
D | alpine.sh | 38 testcases/kernel/syscalls/confstr/confstr01.c \
|
/external/python/cpython3/Lib/distutils/ |
D | spawn.py | 108 path = os.confstr("CS_PATH")
|
/external/python/cpython3/Python/ |
D | thread.c | 216 len = confstr(_CS_GNU_LIBPTHREAD_VERSION, buffer, sizeof(buffer)); in PyThread_GetInfo()
|
/external/toybox/lib/ |
D | portability.h | 343 static inline void confstr(int a, char *b, int c) {strcpy(b, a ? "POSIXLY_CORRECT=1" : "/bin:/usr/b… in confstr() function
|
/external/autotest/client/site_tests/platform_ToolchainTests/src/ |
D | clang-fortify-tests.cpp | 459 EXPECT_DEATH(confstr(0, small_buffer, sizeof(small_buffer) + 1)); in TestUnistd() 501 EXPECT_DEATH_STRUCT(confstr(kBogusFD, split.tiny_buffer, sizeof(split))); in TestUnistd()
|
/external/toybox/toys/posix/ |
D | getconf.c | 182 confstr(c->value, toybuf, sizeof(toybuf)); in show_conf()
|
/external/python/cpython2/Lib/test/ |
D | test_posix.py | 171 self.assertRaises(ValueError, posix.confstr, "CS_garbage") 172 self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_linux_libcdep.cc | 202 uptr len = confstr(_CS_GNU_LIBC_VERSION, buf, sizeof(buf)); in ThreadDescriptorSize()
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 692 size_t ConfLen = confstr(ConfName, nullptr, 0); 696 ConfLen = confstr(ConfName, Result.data(), Result.size());
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 28 :func:`shutil.which` now uses ``os.confstr("CS_PATH")`` if available and if 354 ``os.confstr("CS_PATH")`` if available instead of :data:`os.defpath`, if the 356 ``os.confstr("CS_PATH")`` nor :data:`os.defpath` if the ``PATH`` environment
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_linux_libcdep.cpp | 169 uptr len = confstr(_CS_GNU_LIBC_VERSION, buf, sizeof(buf)); in GetLibcVersion()
|
/external/python/cpython3/Lib/ |
D | platform.py | 179 ver = os.confstr('CS_GNU_LIBC_VERSION')
|
D | shutil.py | 1394 path = os.confstr("CS_PATH")
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Path.inc | 708 size_t ConfLen = confstr(ConfName, nullptr, 0); 712 ConfLen = confstr(ConfName, Result.data(), Result.size());
|
/external/mksh/src/ |
D | main.c | 375 if ((k = confstr(_CS_PATH, NULL, 0)) > 0 && in main_init() 376 confstr(_CS_PATH, cp = alloc(k + 1, APERM), k + 1) == k + 1) in main_init()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Path.inc | 1153 size_t ConfLen = confstr(ConfName, nullptr, 0); 1157 ConfLen = confstr(ConfName, Result.data(), Result.size());
|
/external/llvm-project/llvm/lib/Support/Unix/ |
D | Path.inc | 1241 size_t ConfLen = confstr(ConfName, nullptr, 0); 1245 ConfLen = confstr(ConfName, Result.data(), Result.size());
|
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 551 self.assertRaises(ValueError, posix.confstr, "CS_garbage") 552 self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 1270 TEST(MemorySanitizer, confstr) { in TEST() argument 1272 size_t res = confstr(_CS_PATH, buf, sizeof(buf)); in TEST() 1278 res = confstr(_CS_PATH, buf2, sizeof(buf2)); in TEST()
|