Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 173) sorted by relevance

1234567

/bionic/tests/
Dfloat_test.cpp23 #error FLT_RADIX in TEST()
26 #error DECIMAL_DIG in TEST()
29 #error FLT_DECIMAL_DIG in TEST()
32 #error DBL_DECIMAL_DIG in TEST()
35 #error LDBL_DECIMAL_DIG in TEST()
38 #error FLT_MIN in TEST()
41 #error DBL_MIN in TEST()
44 #error LDBL_MIN in TEST()
47 #error FLT_EPSILON in TEST()
50 #error DBL_EPSILON in TEST()
[all …]
Dlimits_test.cpp26 #error MB_LEN_MAX in TEST()
29 #error CHAR_MIN in TEST()
32 #error CHAR_MAX in TEST()
35 #error SCHAR_MIN in TEST()
38 #error SCHAR_MAX in TEST()
41 #error SHRT_MIN in TEST()
44 #error SHRT_MAX in TEST()
47 #error INT_MIN in TEST()
50 #error INT_MAX in TEST()
53 #error LONG_MIN in TEST()
[all …]
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 xor
[all …]
Derror_test.cpp41 TEST(error, smoke) { in TEST() argument
43 error(0, 0, "oops"); in TEST()
45 error(0, ENOENT, "couldn't open file '%s'", "blah"); in TEST()
50 error(0, 0, "oops"); in TEST()
59 ASSERT_EXIT(error(22, 0, "x%c", 'y'), ::testing::ExitedWithCode(22), "xy"); in TEST()
63 …ASSERT_EXIT(error(22, EBADF, "x%c", 'y'), ::testing::ExitedWithCode(22), ": xy: Bad file descripto… in TEST()
Dstdarg_test.cpp23 #error va_start in TEST()
26 #error va_arg in TEST()
29 #error va_copy in TEST()
32 #error va_end in TEST()
Dstdalign_test.cpp23 #error __alignas_is_defined in TEST()
26 #error __alignof_is_defined in TEST()
Dregex_test.cpp52 int error = regcomp(&re, "*", REG_EXTENDED); in TEST() local
53 ASSERT_NE(0, error); in TEST()
57 int error_length = regerror(error, &re, nullptr, 0); in TEST()
/bionic/tests/headers/posix/
Diso646_h.c35 #error and in iso646_h()
38 #error and_eq in iso646_h()
41 #error bitand in iso646_h()
44 #error bitor in iso646_h()
47 #error compl in iso646_h()
50 #error not in iso646_h()
53 #error not_eq in iso646_h()
56 #error or in iso646_h()
59 #error or_eq in iso646_h()
62 #error xor in iso646_h()
[all …]
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
Dsys_wait_h.c39 #error WEXITSTATUS in sys_wait_h()
42 #error WIFCONTINUED in sys_wait_h()
45 #error WIFEXITED in sys_wait_h()
48 #error WIFSIGNALED in sys_wait_h()
51 #error WIFSTOPPED in sys_wait_h()
54 #error WSTOPSIG in sys_wait_h()
57 #error WTERMSIG in sys_wait_h()
Dstdarg_h.c37 #error va_start in stdarg_h()
40 #error va_copy in stdarg_h()
43 #error va_arg in stdarg_h()
46 #error va_end in stdarg_h()
Dnetinet_in_h.c99 #error IN6_IS_ADDR_UNSPECIFIED in netinet_in_h()
102 #error IN6_IS_ADDR_LOOPBACK in netinet_in_h()
105 #error IN6_IS_ADDR_MULTICAST in netinet_in_h()
108 #error IN6_IS_ADDR_LINKLOCAL in netinet_in_h()
111 #error IN6_IS_ADDR_SITELOCAL in netinet_in_h()
114 #error IN6_IS_ADDR_V4MAPPED in netinet_in_h()
117 #error IN6_IS_ADDR_V4COMPAT in netinet_in_h()
120 #error IN6_IS_ADDR_MC_NODELOCAL in netinet_in_h()
123 #error IN6_IS_ADDR_MC_LINKLOCAL in netinet_in_h()
126 #error IN6_IS_ADDR_MC_SITELOCAL in netinet_in_h()
[all …]
Dstdint_h.c130 #error INT8_C in stdint_h()
133 #error INT16_C in stdint_h()
136 #error INT32_C in stdint_h()
139 #error INT32_C in stdint_h()
143 #error UINT8_C in stdint_h()
146 #error UINT16_C in stdint_h()
149 #error UINT32_C in stdint_h()
152 #error UINT32_C in stdint_h()
156 #error INTMAX_C in stdint_h()
159 #error UINTMAX_C in stdint_h()
Dsys_select_h.c48 #error FD_CLR in sys_select_h()
51 #error FD_ISSET in sys_select_h()
54 #error FD_SET in sys_select_h()
57 #error FD_ZERO in sys_select_h()
Dassert_h.c34 #error
40 #error
Dsys_time_h.c52 #error FD_CLR in sys_time_h()
55 #error FD_ISSET in sys_time_h()
58 #error FD_SET in sys_time_h()
61 #error FD_ZERO in sys_time_h()
/bionic/libc/bionic/
Derror.cpp51 static void __error_tail(int status, int error) { in __error_tail() argument
52 if (error != 0) { in __error_tail()
53 fprintf(stderr, ": %s", strerror(error)); in __error_tail()
64 void error(int status, int error, const char* fmt, ...) { in error() function
73 __error_tail(status, error); in error()
76 void error_at_line(int status, int error, const char* file, unsigned int line, const char* fmt, ...… in error_at_line() argument
95 __error_tail(status, error); in error_at_line()
Dftw.cpp58 int error = 0; in do_nftw() local
60 while (error == 0 && (cur = fts_read(fts)) != nullptr) { in do_nftw()
94 error = -1; in do_nftw()
103 error = nftw_fn(cur->fts_path, cur->fts_statp, fn_flag, &ftw); in do_nftw()
105 error = ftw_fn(cur->fts_path, cur->fts_statp, fn_flag); in do_nftw()
110 if (fts_close(fts) != 0 && error == 0) { in do_nftw()
111 error = -1; in do_nftw()
115 return error; in do_nftw()
Dstring_l.cpp36 char* strerror_l(int error, locale_t) { in strerror_l() argument
37 return strerror(error); in strerror_l()
/bionic/tests/libs/
Dbionic_tests_zipalign.cpp78 int32_t error; in CreateAlignedZip() local
88 error = writer.StartAlignedEntry(zip_name.c_str(), flags, alignment); in CreateAlignedZip()
89 if (error != 0) { in CreateAlignedZip()
90 fprintf(stderr, "StartAlignedEntry failed: %s\n", ZipWriter::ErrorCodeString(error)); in CreateAlignedZip()
97 error = writer.WriteBytes(data->data(), data->size()); in CreateAlignedZip()
98 if (error != 0) { in CreateAlignedZip()
99 fprintf(stderr, "WriteBytes failed: %s\n", ZipWriter::ErrorCodeString(error)); in CreateAlignedZip()
107 error = writer.FinishEntry(); in CreateAlignedZip()
108 if (error != 0) { in CreateAlignedZip()
109 fprintf(stderr, "FinishEntry failed: %s\n", ZipWriter::ErrorCodeString(error)); in CreateAlignedZip()
[all …]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfgetws.c50 goto error; in fgetws()
57 goto error; in fgetws()
61 goto error; in fgetws()
76 error: in fgetws()
Dgetdelim.c57 goto error; in getdelim()
70 goto error; in getdelim()
85 goto error; in getdelim()
108 goto error; in getdelim()
130 error: in getdelim()
/bionic/libc/malloc_debug/
Ddebug_disable.cpp45 int error = pthread_key_create(&g_disable_key, nullptr); in DebugDisableInitialize() local
46 if (error != 0) { in DebugDisableInitialize()
47 error_log("pthread_key_create failed: %s", strerror(error)); in DebugDisableInitialize()
/bionic/libc/kernel/uapi/linux/
Dpatchkey.h20 #error "patchkey.h included directly"
31 #error "could not determine byte order"
/bionic/tools/bionicbb/
Dtasks.py63 logging.error("%s", ex)
67 logging.error('Gerrit error (%d): %s %s', ex.code, change_id, ex.url)
88 except socket.error:
96 logging.error('Could not retrieve Gmail labels')
100 logging.error('Could not find gerrit label')
108 logging.error('API Client HTTP error: %s', ex)

1234567