Searched defs:status (Results 1 - 25 of 1610) 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.c15 U_CAPI void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status) { argument
18 if (U_FAILURE(*status)) {
23 icudatares = ures_openDirect(NULL, U_ICU_VERSION_BUNDLE , status);
24 if (U_SUCCESS(*status)) {
25 ures_getVersionByKey(icudatares, U_ICU_DATA_KEY, dataVersionFillin, status);
H A Duinit.cpp35 initData(UErrorCode &status) argument
38 uplug_init(&status);
53 ucnv_io_countKnownConverters(&status);
66 u_init(UErrorCode *status) { argument
68 umtx_initOnce(gICUInitOnce, &initData, *status);
69 UTRACE_EXIT_STATUS(*status);
/external/icu/icu4c/source/samples/datecal/
H A Dcal.cpp18 UErrorCode status = U_ZERO_ERROR; local
20 GregorianCalendar* gc = new GregorianCalendar(status);
21 if (U_FAILURE(status)) {
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status));
40 if (U_FAILURE(status))
46 gc->add(UCAL_DATE, 1, status);
47 if (U_FAILURE(status)) {
[all...]
H A Dccal.c18 UErrorCode status = U_ZERO_ERROR; local
20 UCalendar *cal = ucal_open(NULL, -1, NULL, UCAL_GREGORIAN, &status);
21 if (U_FAILURE(status)) {
38 ucal_get(cal, UCAL_YEAR, &status),
39 ucal_get(cal, UCAL_MONTH, &status) + 1,
40 ucal_get(cal, UCAL_MONTH, &status),
41 ucal_get(cal, UCAL_DATE, &status));
42 if (U_FAILURE(status)) {
47 ucal_add(cal, UCAL_DATE, 1, &status);
48 if (U_FAILURE(status))
[all...]
/external/libnfc-nci/src/nfc/nfc/
H A Dnfc_test.c56 tNFC_STATUS status = NFC_STATUS_FAILED; local
61 status = nfc_ncif_send_data (p_cb, p_data);
64 if (status != NFC_STATUS_OK)
67 return status;
/external/marisa-trie/lib/marisa/
H A Dbase.cc5 const char *marisa_strerror(marisa_status status) { argument
7 switch (status) {
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dbase.cc5 const char *marisa_alpha_strerror(marisa_alpha_status status) { argument
7 switch (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.cpp28 UErrorCode *status) {
29 if (U_FAILURE(*status)) {
33 *status = U_ILLEGAL_ARGUMENT_ERROR;
38 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
25 uregex_openC( const char *pattern, uint32_t flags, UParseError *pe, UErrorCode *status) argument
/external/icu/icu4c/source/samples/msgfmt/answers/
H A Dmain_0.cpp16 UErrorCode status = U_ZERO_ERROR; local
H A Dmain_1.cpp15 UErrorCode status = U_ZERO_ERROR; local
H A Dmain_2.cpp23 UErrorCode status = U_ZERO_ERROR; local
28 MessageFormat msg(PATTERN, status);
29 check(status, "MessageFormat::ct");
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
H A Dmain_3.cpp23 UErrorCode status = U_ZERO_ERROR; local
28 MessageFormat msg(PATTERN, status);
29 check(status, "MessageFormat::ct");
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
/external/icu/icu4c/source/test/testmap/
H A Dtestmap.c30 UErrorCode status = U_ZERO_ERROR; local
32 udata_setCommonData(NULL, &status);
33 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
34 if(status != U_ILLEGAL_ARGUMENT_ERROR)
40 status = U_ZERO_ERROR;
41 udata_setCommonData(&U_ICUDATA_ENTRY_POINT, &status);
42 printf("setCommonData(%p) -> %s\n", (void*)&U_ICUDATA_ENTRY_POINT, u_errorName(status));
43 if(U_FAILURE(status))
49 status = U_ZERO_ERROR;
50 c = ucnv_open("iso-8859-3", &status);
[all...]
/external/toybox/toys/other/
H A Dtimeout.c67 int status; local
71 while (-1 == waitpid(TT.pid, &status, 0) && errno == EINTR);
72 toys.exitval = WIFEXITED(status)
73 ? WEXITSTATUS(status) : WTERMSIG(status) + 127;
/external/apache-http/src/org/apache/http/
H A DReasonPhraseCatalog.java38 * Interface for obtaining reason phrases for HTTP status codes.
56 * Obtains the reason phrase for a status code.
60 * @param status the status code, in the range 100-599
65 public String getReason(int status, Locale loc) argument
/external/elfutils/src/tests/
H A Dhash.c38 int status; local
41 status = check ("_DYNAMIC", 165832675);
42 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
44 return status;
/external/icu/icu4c/source/samples/msgfmt/
H A Dmain.cpp23 UErrorCode status = U_ZERO_ERROR; local
28 MessageFormat msg(PATTERN, status);
29 check(status, "MessageFormat::ct");
37 msg.format(msgArgs, 2, str, pos, status);
38 check(status, "MessageFormat::format");
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci_ci.c43 void nfc_hal_nv_ci_read (UINT16 num_bytes_read, tNFC_HAL_NV_CO_STATUS status, UINT8 block) argument
55 if ( (status == NFC_HAL_NV_CO_OK)
57 p_msg->nv_read.status = HAL_NFC_STATUS_OK;
59 p_msg->nv_read.status = HAL_NFC_STATUS_FAILED;
77 void nfc_hal_nv_ci_write (tNFC_HAL_NV_CO_STATUS status) argument
87 p_msg->nv_write.status = HAL_NFC_STATUS_OK;
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_ci.c41 void nfa_nv_ci_read (UINT16 num_bytes_read, tNFA_NV_CO_STATUS status, UINT8 block) argument
49 if ( (status == NFA_STATUS_OK)
51 p_msg->nv_read.status = NFA_STATUS_OK;
53 p_msg->nv_read.status = NFA_STATUS_FAILED;
70 void nfa_nv_ci_write (tNFA_NV_CO_STATUS status) argument
77 p_msg->nv_write.status = 0;
/external/libnfc-nci/src/nfa/include/
H A Dnfa_nv_ci.h38 tNFA_NV_CO_STATUS status; member in struct:__anon8515
47 tNFA_NV_CO_STATUS status; member in struct:__anon8516
70 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL
77 NFC_API extern void nfa_nv_ci_write (tNFA_NV_CO_STATUS status);
90 ** status - NFA_NV_CO_OK if full buffer of data,
100 tNFA_NV_CO_STATUS status,
/external/nanopb-c/examples/simple/
H A Dsimple.c11 bool status; local
28 status = pb_encode(&stream, SimpleMessage_fields, &message);
32 if (!status)
53 status = pb_decode(&stream, SimpleMessage_fields, &message);
56 if (!status)

Completed in 1861 milliseconds

1234567891011>>