Searched defs:status (Results 1 - 25 of 2594) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_nolibc_test.cc27 int status = system(NolibcTestPath.c_str()); local
28 EXPECT_EQ(true, WIFEXITED(status));
29 EXPECT_EQ(0, WEXITSTATUS(status));
/external/compiler-rt/test/lsan/TestCases/
H A Dfork.cc14 int status = 0; local
19 waitpid(pid, &status, 0);
20 assert(WIFEXITED(status));
21 return WEXITSTATUS(status);
/external/icu/icu4c/source/common/
H A Dicudataver.c17 U_CAPI void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status) { argument
20 if (U_FAILURE(*status)) {
25 icudatares = ures_openDirect(NULL, U_ICU_VERSION_BUNDLE , status);
26 if (U_SUCCESS(*status)) {
27 ures_getVersionByKey(icudatares, U_ICU_DATA_KEY, dataVersionFillin, status);
H A Duinit.cpp37 initData(UErrorCode &status) argument
41 uplug_init(&status);
57 ucnv_io_countKnownConverters(&status);
70 u_init(UErrorCode *status) { argument
72 umtx_initOnce(gICUInitOnce, &initData, *status);
73 UTRACE_EXIT_STATUS(*status);
/external/icu/icu4c/source/samples/datecal/
H A Dcal.cpp24 UErrorCode status = U_ZERO_ERROR; local
26 GregorianCalendar* gc = new GregorianCalendar(status);
27 if (U_FAILURE(status)) {
42 gc->get(UCAL_YEAR, status),
43 gc->get(UCAL_MONTH, status) + 1,
44 gc->get(UCAL_MONTH, status),
45 gc->get(UCAL_DATE, status));
46 if (U_FAILURE(status))
52 gc->add(UCAL_DATE, 1, status);
53 if (U_FAILURE(status)) {
[all...]
H A Dccal.c24 UErrorCode status = U_ZERO_ERROR; local
26 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
27 if (U_FAILURE(status)) {
44 ucal_get(cal, UCAL_YEAR, &status),
45 ucal_get(cal, UCAL_MONTH, &status) + 1,
46 ucal_get(cal, UCAL_MONTH, &status),
47 ucal_get(cal, UCAL_DATE, &status));
48 if (U_FAILURE(status)) {
53 ucal_add(cal, UCAL_DATE, 1, &status);
54 if (U_FAILURE(status))
[all...]
/external/iw/
H A Dstatus.c54 const char *get_status_str(uint16_t status) argument
56 if (status < ARRAY_SIZE(status_table) && status_table[status])
57 return status_table[status];
/external/clang/test/Sema/
H A Dtransparent-union-pointer.c12 int status = 0; local
13 wait(&status);
/external/icu/android_utils/
H A DIcuUtils.cpp36 UErrorCode status = U_ZERO_ERROR; local
40 u_init(&status);
41 LOG_ALWAYS_FATAL_IF(!U_SUCCESS(status), "Failed to initialize ICU %s", u_errorName(status));
/external/icu/icu4c/source/i18n/
H A Duregexc.cpp30 UErrorCode *status) {
31 if (U_FAILURE(*status)) {
35 *status = U_ILLEGAL_ARGUMENT_ERROR;
40 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
27 uregex_openC( const char *pattern, uint32_t flags, UParseError *pe, UErrorCode *status) argument
/external/icu/icu4c/source/samples/msgfmt/answers/
H A Dmain_0.cpp20 UErrorCode status = U_ZERO_ERROR; local
H A Dmain_1.cpp19 UErrorCode status = U_ZERO_ERROR; local
/external/icu/icu4c/source/test/testmap/
H A Dtestmap.c32 UErrorCode status = U_ZERO_ERROR; local
34 udata_setCommonData(NULL, &status);
35 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
36 if(status != U_ILLEGAL_ARGUMENT_ERROR)
42 status = U_ZERO_ERROR;
43 udata_setCommonData(&U_ICUDATA_ENTRY_POINT, &status);
44 printf("setCommonData(%p) -> %s\n", (void*)&U_ICUDATA_ENTRY_POINT, u_errorName(status));
45 if(U_FAILURE(status))
51 status = U_ZERO_ERROR;
52 c = ucnv_open("iso-8859-3", &status);
[all...]
/external/jemalloc/test/unit/
H A Dfork.c31 int status; local
35 if (waitpid(pid, &status, 0) == -1)
37 if (WIFSIGNALED(status)) {
39 "signal %d", WTERMSIG(status));
42 if (WIFEXITED(status)) {
43 if (WEXITSTATUS(status) != 0) {
46 WEXITSTATUS(status));
/external/ltp/testcases/kernel/containers/pidns/
H A Dpidns_helper.h26 int pid, status; local
34 SAFE_WAIT(NULL, &status);
/external/ltp/testcases/kernel/containers/sysvipc/
H A Dipcns_helper.h31 int pid, status; local
40 SAFE_WAIT(NULL, &status);
/external/ltp/testcases/kernel/syscalls/mount/
H A Dsetuid_test.c41 int status; local
43 status = setreuid(ruid, 0);
44 if (status < 0) {
/external/ltp/testcases/kernel/syscalls/waitpid/
H A Dwaitpid07.c37 int status; local
51 if (TST_TRACE(waitpid_ret_test(-1, &status, WNOHANG, 0, 0)))
H A Dwaitpid08.c38 int status; local
54 if (TST_TRACE(waitpid_ret_test(-1, &status, WNOHANG | WUNTRACED, 0, 0)))
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
H A D4-3.c33 #define ERR_MSG(f, rc) printf("Failed: function: %s status: %s(%u)\n", \
38 int status; local
42 status = PTS_UNRESOLVED;
47 return status;
/external/pdfium/testing/libfuzzer/
H A Dpdf_css_fuzzer.cc25 FDE_CSSSyntaxStatus status; local
27 status = parser.DoSyntaxParse();
28 } while (status != FDE_CSSSyntaxStatus::Error &&
29 status != FDE_CSSSyntaxStatus::EOS);
/external/strace/tests/
H A Drun_expect_termsig.c53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
/external/strace/tests-m32/
H A Drun_expect_termsig.c53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
/external/strace/tests-mx32/
H A Drun_expect_termsig.c53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
/external/valgrind/none/tests/solaris/
H A Dblock_all_signals.c31 int status; local
33 while ((ret = waitpid(pid, &status, 0)) != pid) {
40 if (WIFSIGNALED(status)) {
41 assert(WTERMSIG(status) != 0);
43 if (WTERMSIG(status) == SIGSEGV) {
47 WTERMSIG(status));
49 } else if (WIFEXITED(status)) {
50 if (WEXITSTATUS(status) == 0) {
54 fprintf(stderr, "Child process exited with unexpected status %d.\n",
55 WEXITSTATUS(status));
[all...]

Completed in 570 milliseconds

1234567891011>>