Home
last modified time | relevance | path

Searched refs:confstr (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/lib/libc/gen/
H A Dconfstr.c52 __weak_alias(confstr,_confstr) in __weak_alias() argument
56 confstr(int name, char *buf, size_t len) in __weak_alias()
H A DMakefile.inc13 confstr.c ctermid.c ctype_.c \
60 clock.3 closefrom.3 confstr.3 \
/netbsd-src/usr.bin/getconf/
H A Dgetconf.c286 slen = confstr((int)cp->value, NULL, 0); in printvar()
290 out: err(EXIT_FAILURE, "confstr(%ld)", cp->value); in printvar()
299 if (confstr((int)cp->value, sval, slen) == 0) { in printvar()
/netbsd-src/bin/ksh/
H A Dmain.c158 size_t len = confstr(_CS_PATH, (char *) 0, 0); in main()
162 confstr(_CS_PATH, new = alloc(len + 1, APERM), len + 1); in main()
/netbsd-src/include/
H A Dunistd.h97 size_t confstr(int, char *, size_t);
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc172 uptr len = confstr(_CS_GNU_LIBC_VERSION, buf, sizeof(buf)); in GetLibcVersion()
H A Dsanitizer_common_interceptors.inc3605 INTERCEPTOR(SIZE_T, confstr, int name, char *buf, SIZE_T len) {
3607 COMMON_INTERCEPTOR_ENTER(ctx, confstr, name, buf, len);
3611 SIZE_T res = REAL(confstr)(name, buf, len);
3616 #define INIT_CONFSTR COMMON_INTERCEPT_FUNCTION(confstr);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/vms/
H A Dvms-crtlmap.map233 confstr
/netbsd-src/external/gpl3/gcc/dist/gcc/config/vms/
H A Dvms-crtlmap.map233 confstr
/netbsd-src/lib/libc/include/
H A Dnamespace.h283 #define confstr _confstr
279 #define confstr _confstr global() macro
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc1323 size_t ConfLen = confstr(ConfName, nullptr, 0);
1327 ConfLen = confstr(ConfName, Result.data(), Result.size());
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
H A Dmsan_test.cc1376 TEST(MemorySanitizer, confstr) { in TEST() argument
1378 size_t res = confstr(_CS_PATH, buf, sizeof(buf)); in TEST()
1384 res = confstr(_CS_PATH, buf2, sizeof(buf2)); in TEST()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dunistd.d51 size_t confstr(int, char*, size_t);
/netbsd-src/usr.sbin/makemandb/
H A Dnostem.txt543 confstr
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/
H A DChangeLog1663 (ThreadDescriptorSize): Use confstr(_CS_GNU_LIBC_VERSION, ...) to
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3776 INTERCEPTOR(SIZE_T, confstr, int name, char *buf, SIZE_T len) {
3778 COMMON_INTERCEPTOR_ENTER(ctx, confstr, name, buf, len);
3782 SIZE_T res = REAL(confstr)(name, buf, len);
3787 #define INIT_CONFSTR COMMON_INTERCEPT_FUNCTION(confstr);
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3684 INTERCEPTOR(SIZE_T, confstr, int name, char *buf, SIZE_T len) {
3686 COMMON_INTERCEPTOR_ENTER(ctx, confstr, name, buf, len);
3690 SIZE_T res = REAL(confstr)(name, buf, len);
3695 #define INIT_CONFSTR COMMON_INTERCEPT_FUNCTION(confstr);
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c45156 if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){