/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | strerror.m4 | 1 # strerror.m4 serial 9 11 AC_LIBOBJ([strerror]) 13 [Define this to 1 if strerror is broken.]) 23 AC_CACHE_CHECK([for working strerror function], 29 [[return !*strerror (-2);]])], 37 [[return !*strerror (-2);]])], 43 dnl The system's strerror() fails to return a string for out-of-range 48 dnl The system's strerror() cannot know about the new errno values we add 57 # Prerequisites of lib/strerror.c. 59 AC_CHECK_DECLS([strerror])
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | utils.c | 93 fprintf (stderr, _("cannot remove %s: %s"), open_files->name, strerror (errno)); in panic() 163 panic(_("couldn't open file %s: %s"), name, strerror(errno)); 186 panic(_("couldn't attach to %s: %s"), name, strerror(errno)); 227 panic(_("couldn't open temporary file %s: %s"), template, strerror(errno)); 247 nmemb, utils_fp_name(stream), strerror(errno)); 260 panic(_("read error on %s: %s"), utils_fp_name(stream), strerror(errno)); 276 panic (_("read error on %s: %s"), utils_fp_name(stream), strerror(errno)); 288 panic("couldn't flush %s: %s", utils_fp_name(stream), strerror(errno)); 337 panic("couldn't close %s: %s", utils_fp_name(fp), strerror(errno)); 378 panic (_("couldn't follow symlink %s: %s"), buf, strerror(errno)); in follow_symlink() [all …]
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | strerror.c | 35 # undef strerror 37 # define strerror(n) NULL macro 333 char *result = strerror (n); in rpl_strerror()
|
D | string.in.h | 577 # undef strerror 578 # define strerror rpl_strerror macro 579 extern char *strerror (int); 582 # undef strerror 583 # define strerror(e) \ macro 586 strerror (e))
|
D | error.c | 120 s = strerror (errnum); in print_errno_message()
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack.c | 84 dump_file, strerror(errno)); in main() 89 strerror(errno)); in main()
|
/ndk/sources/android/cpufeatures/ |
D | cpu-features.c | 126 D("Can't open %s: %s\n", pathname, strerror(errno)); in get_file_size() 135 D("Error while reading %s: %s\n", pathname, strerror(errno)); in get_file_size() 159 D("Could not open %s: %s\n", pathname, strerror(errno)); in read_file() 168 D("Error while reading from %s: %s\n", pathname, strerror(errno)); in read_file() 404 D("Could not read %s: %s\n", filename, strerror(errno)); in cpulist_read_from() 443 D("Could not open %s: %s\n", filepath, strerror(errno)); in get_elf_hwcap() 454 D("Error while reading %s: %s\n", filepath, strerror(errno)); in get_elf_hwcap()
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | tst-regex2.c | 37 printf ("Couldn't open %s: %s\n", argv[1], strerror (errno)); in main() 43 printf ("Couldn't fstat %s: %s\n", argv[1], strerror (errno)); in main() 50 printf ("Couldn't allocate buffer: %s\n", strerror (errno)); in main()
|
/ndk/sources/android/libthread_db/gdb-6.6/ |
D | libthread_db.c | 70 D("Could not open %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps() 80 D("Could not read %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps() 160 D("Could not open %s: %s\n", path, strerror(errno)); in td_ta_new()
|
/ndk/sources/android/libthread_db/gdb-7.3.x/ |
D | libthread_db.c | 66 D("Could not open %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps() 76 D("Could not read %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps() 157 D("Could not open %s: %s\n", path, strerror(errno)); in td_ta_new()
|
/ndk/sources/host-tools/make-3.81/ |
D | misc.c | 292 #undef strerror 295 strerror (int errnum) in strerror() function 316 error (NILF, _("%s%s: %s"), str, name, strerror (errno)); in perror_with_name() 324 fatal (NILF, _("%s: %s"), name, strerror (errno)); in pfatal_with_name() 892 error (NILF, _("write error: %s"), strerror (errno)); in close_stdout()
|
D | make.h | 278 #undef strerror 280 extern char *strerror PARAMS ((int errnum));
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | cstring_test.cpp | 53 CPPUNIT_CHECK( std::strerror(0) != NULL ); in import_checks()
|
/ndk/tests/device/test-stlport/unit/ |
D | cstring_test.cpp | 53 CPPUNIT_CHECK( std::strerror(0) != NULL ); in import_checks()
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | cstring | 53 char* strerror(int errnum); 107 using ::strerror;
|
/ndk/sources/host-tools/make-3.81/config/ |
D | isc-posix.m4 | 24 AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | cstring | 19 using _STLP_VENDOR_CSTD::strerror;
|
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/ |
D | string_h.pass.cpp | 46 static_assert((std::is_same<decltype(strerror(0)), char*>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/ |
D | cstring.pass.cpp | 51 static_assert((std::is_same<decltype(std::strerror(0)), char*>::value), ""); in main()
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | basicdefs.h | 122 extern char *strerror P_((int e));
|
D | bootstrap.sh.in | 132 ${CC} -DHAVE_CONFIG_H -I.. -I. -c strerror.c || exit 1
|
D | bootstrap.sh | 132 ${CC} -DHAVE_CONFIG_H -I.. -I. -c strerror.c || exit 1
|
/ndk/sources/cxx-stl/llvm-libc++/src/ |
D | system_error.cpp | 47 return string(strerror(ev)); in message()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstring | 55 using ::strerror;
|
/ndk/sources/cxx-stl/system/include/ |
D | cstring | 55 using ::strerror;
|