/bionic/tests/ |
D | float_test.cpp | 23 #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 …]
|
D | limits_test.cpp | 26 #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 …]
|
D | iso646_test.c | 20 #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 …]
|
D | error_test.cpp | 41 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()
|
D | stdarg_test.cpp | 23 #error va_start in TEST() 26 #error va_arg in TEST() 29 #error va_copy in TEST() 32 #error va_end in TEST()
|
D | stdalign_test.cpp | 23 #error __alignas_is_defined in TEST() 26 #error __alignof_is_defined in TEST()
|
D | regex_test.cpp | 52 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/ |
D | iso646_h.c | 35 #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 …]
|
D | sys_stat_h_file_type_test_macros.h | 30 #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
|
D | sys_wait_h.c | 39 #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()
|
D | stdarg_h.c | 37 #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()
|
D | netinet_in_h.c | 99 #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 …]
|
D | stdint_h.c | 130 #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()
|
D | sys_select_h.c | 48 #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()
|
D | assert_h.c | 34 #error 40 #error
|
D | sys_time_h.c | 52 #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/ |
D | error.cpp | 51 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()
|
D | ftw.cpp | 58 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()
|
D | string_l.cpp | 36 char* strerror_l(int error, locale_t) { in strerror_l() argument 37 return strerror(error); in strerror_l()
|
/bionic/tests/libs/ |
D | bionic_tests_zipalign.cpp | 78 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/ |
D | fgetws.c | 50 goto error; in fgetws() 57 goto error; in fgetws() 61 goto error; in fgetws() 76 error: in fgetws()
|
D | getdelim.c | 57 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/ |
D | debug_disable.cpp | 45 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/ |
D | patchkey.h | 20 #error "patchkey.h included directly" 31 #error "could not determine byte order"
|
/bionic/tools/bionicbb/ |
D | tasks.py | 63 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)
|