Searched refs:error (Results 1 - 25 of 228) sorted by relevance

12345678910

/bionic/tests/
H A Diso646_test.c20 #error and
23 #error and_eq
26 #error bitand
29 #error bitor
32 #error compl
35 #error not
38 #error not_eq
41 #error or
44 #error or_eq
47 #error xo
[all...]
H A Dfloat_test.cpp23 #error FLT_RADIX
26 #error DECIMAL_DIG
29 #error FLT_DECIMAL_DIG
32 #error DBL_DECIMAL_DIG
35 #error LDBL_DECIMAL_DIG
38 #error FLT_MIN
41 #error DBL_MIN
44 #error LDBL_MIN
47 #error FLT_EPSILON
50 #error DBL_EPSILO
[all...]
H A Dlimits_test.cpp26 #error MB_LEN_MAX
29 #error CHAR_MIN
32 #error CHAR_MAX
35 #error SCHAR_MIN
38 #error SCHAR_MAX
41 #error SHRT_MIN
44 #error SHRT_MAX
47 #error INT_MIN
50 #error INT_MAX
53 #error LONG_MI
[all...]
H A Dstdarg_test.cpp23 #error va_start
26 #error va_arg
29 #error va_copy
32 #error va_end
H A Dstdbool_test.c20 #error __bool_true_false_are_defined
H A Dstdio_nofortify_test.cpp11 #error "_FORTIFY_SOURCE has been redefined, fix the code to remove this redefinition."
H A Dstdnoreturn_test.cpp20 #error __noreturn_is_defined
H A Dstring_nofortify_test.cpp11 #error "_FORTIFY_SOURCE has been redefined, fix the code to remove this redefinition."
H A Dstrings_nofortify_test.cpp11 #error "_FORTIFY_SOURCE has been redefined, fix the code to remove this redefinition."
H A Dunistd_nofortify_test.cpp11 #error "_FORTIFY_SOURCE has been redefined, fix the code to remove this redefinition."
H A Derror_test.cpp31 #include <error.h>
41 TEST(error, smoke) {
43 error(0, 0, "oops");
45 error(0, ENOENT, "couldn't open file '%s'", "blah");
50 error(0, 0, "oops");
59 ASSERT_EXIT(error(22, 0, "x%c", 'y'), ::testing::ExitedWithCode(22), "xy");
63 ASSERT_EXIT(error(22, EBADF, "x%c", 'y'), ::testing::ExitedWithCode(22), ": xy: Bad file descriptor");
/bionic/tests/headers/posix/
H A Diso646_h.c35 #error and
38 #error and_eq
41 #error bitand
44 #error bitor
47 #error compl
50 #error not
53 #error not_eq
56 #error or
59 #error or_eq
62 #error xo
[all...]
H A Dsys_stat_h_file_type_test_macros.h30 #error S_ISBLK
33 #error S_ISCHR
36 #error S_ISDIR
39 #error S_ISFIFO
42 #error S_ISREG
45 #error S_ISLNK
48 #error S_ISSOCK
H A Dstdarg_h.c37 #error va_start
40 #error va_copy
43 #error va_arg
46 #error va_end
H A Dassert_h.c34 #error
40 #error
H A Dstdbool_h.c35 #error bool
H A Dsys_wait_h.c39 #error WEXITSTATUS
42 #error WIFCONTINUED
45 #error WIFEXITED
48 #error WIFSIGNALED
51 #error WIFSTOPPED
54 #error WSTOPSIG
57 #error WTERMSIG
H A Dstddef_h.c37 #error offsetof
H A Dsys_select_h.c48 #error FD_CLR
51 #error FD_ISSET
54 #error FD_SET
57 #error FD_ZERO
/bionic/tools/versioner/tests/compilation_error/headers/
H A Dfoo.h5 #error foo
/bionic/libc/malloc_debug/
H A Ddebug_disable.cpp45 int error = pthread_key_create(&g_disable_key, nullptr); local
46 if (error != 0) {
47 error_log("pthread_key_create failed: %s", strerror(error));
/bionic/libc/bionic/
H A Derror.cpp29 #include <error.h>
51 static void __error_tail(int status, int error) { argument
52 if (error != 0) {
53 fprintf(stderr, ": %s", strerror(error));
64 void error(int status, int error, const char* fmt, ...) { argument
73 __error_tail(status, error);
76 void error_at_line(int status, int error, const char* file, unsigned int line, const char* fmt, ...) { argument
95 __error_tail(status, error);
H A Dstring_l.cpp36 char* strerror_l(int error, locale_t) { argument
37 return strerror(error);
/bionic/libc/kernel/uapi/linux/
H A Dpatchkey.h20 #error "patchkey.h included directly"
31 #error "could not determine byte order"
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dpatchkey.h20 #error "patchkey.h included directly"
31 #error "could not determine byte order"

Completed in 368 milliseconds

12345678910