HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 876 - 900 of 4870) sorted by null

<<31323334353637383940>>

  /external/icu/icu4c/source/test/compat/
tzdate.c 78 UErrorCode status = U_ZERO_ERROR; local
82 fmt = udat_open(style, style, 0, tz, -1,NULL,0, &status);
84 len = udat_format(fmt, timeToCheck, 0, len, 0, &status);
86 if (status == U_BUFFER_OVERFLOW_ERROR)
87 status = U_ZERO_ERROR;
94 udat_format(fmt, timeToCheck, s, len + 1, 0, &status);
96 if (U_FAILURE(status))
  /external/icu/icu4c/source/test/intltest/
g7coll.cpp 98 UErrorCode status = U_ZERO_ERROR; local
101 LocalPointer<Collator> myCollation(Collator::createInstance(locale, status));
102 if(U_FAILURE(status)) {
103 errcheckln(status, "Couldn't instantiate collator. Error: %s", u_errorName(status));
107 myCollation->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, status);
108 if (U_FAILURE(status)) {
109 errln("Locale %s creation failed - %s", locale.getName(), u_errorName(status));
121 status = U_ZERO_ERROR;
122 RuleBasedCollator *tblColl1 = new RuleBasedCollator(rules, status);
151 UErrorCode status = U_ZERO_ERROR; local
185 UErrorCode status = U_ZERO_ERROR; local
219 UErrorCode status = U_ZERO_ERROR; local
253 UErrorCode status = U_ZERO_ERROR; local
    [all...]
genderinfotest.cpp 72 UErrorCode status = U_ZERO_ERROR; local
73 const GenderInfo* actual = GenderInfo::getInstance("xx", status);
74 if (U_FAILURE(status)) {
75 errcheckln(status, "Fail to create GenderInfo - %s", u_errorName(status));
82 actual = GenderInfo::getInstance("fr_CA", status);
83 if (U_FAILURE(status)) {
84 errcheckln(status, "Fail to create GenderInfo - %s", u_errorName(status));
102 UErrorCode status = U_ZERO_ERROR local
    [all...]
itrbnfrt.cpp 63 UErrorCode status = U_ZERO_ERROR; local
65 = new RuleBasedNumberFormat(URBNF_SPELLOUT, Locale::getUS(), status);
67 if (U_FAILURE(status)) {
68 errcheckln(status, "failed to construct formatter - %s", u_errorName(status));
81 UErrorCode status = U_ZERO_ERROR; local
83 = new RuleBasedNumberFormat(URBNF_DURATION, Locale::getUS(), status);
85 if (U_FAILURE(status)) {
86 errcheckln(status, "failed to construct formatter - %s", u_errorName(status));
99 UErrorCode status = U_ZERO_ERROR; local
117 UErrorCode status = U_ZERO_ERROR; local
135 UErrorCode status = U_ZERO_ERROR; local
153 UErrorCode status = U_ZERO_ERROR; local
171 UErrorCode status = U_ZERO_ERROR; local
189 UErrorCode status = U_ZERO_ERROR; local
207 UErrorCode status = U_ZERO_ERROR; local
225 UErrorCode status = U_ZERO_ERROR; local
243 UErrorCode status = U_ZERO_ERROR; local
261 UErrorCode status = U_ZERO_ERROR; local
297 UErrorCode status = U_ZERO_ERROR; local
324 UErrorCode status = U_ZERO_ERROR; local
    [all...]
pptest.cpp 36 ParsePositionTest::failure(UErrorCode status, const char* msg, UBool possibleDataError)
38 if(U_FAILURE(status)) {
40 dataerrln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
42 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
178 UErrorCode status = U_ZERO_ERROR; local
179 NumberFormat *nf = NumberFormat::createInstance(status);
180 if (failure(status, "NumberFormat::createInstance", TRUE)){
tzoffloc.cpp 61 // uint8_t dayOfWeek, int32_t millis, UErrorCode& status)
81 // int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
100 // int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
118 UErrorCode status = U_ZERO_ERROR; local
122 Calendar* cal = Calendar::createInstance(*utc, status);
123 if (U_FAILURE(status)) {
124 dataerrln("Calendar::createInstance failed: %s", u_errorName(status));
135 UCAL_OCTOBER, -1, UCAL_SUNDAY, 2*HOUR, status);
136 if (U_FAILURE(status)) {
157 rbPT->addTransitionRule(atzr, status);
    [all...]
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
DateFmtPerf.cpp 17 DateFormatPerfTest::DateFormatPerfTest(int32_t argc, const char* argv[], UErrorCode& status)
18 : UPerfTest(argc,argv,status) {
123 UErrorCode status = U_ZERO_ERROR; local
150 for(int j = 0; U_SUCCESS(status)&& j < FUNCTION_COUNT; j++)
151 t[j] += (functions[j]->time(1, &status) / ITER_COUNT);
157 if(U_SUCCESS(status)) {
188 if(U_FAILURE(status)) {
189 cout << "Error! " << u_errorName(status) << endl;
198 UErrorCode status = U_ZERO_ERROR; local
200 DateFormatPerfTest test(argc, argv, status);
    [all...]
  /external/icu/icu4c/source/test/perf/leperf/
leperf.cpp 34 LEErrorCode status = LE_NO_ERROR; local
36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status);
42 glyphCount = engine->layoutChars(chars, 0, params->charLen, params->charLen, TRUE, 0.0, 0.0, status);
46 engine->getGlyphs(glyphs, status);
70 LEErrorCode status = LE_NO_ERROR; local
71 //uloc_setDefault("en_US", &status);
92 p.font = new SimpleFontInstance(12, status);
  /external/jsilver/src/com/google/streamhtmlparser/util/
EntityResolver.java 43 * a status code and then provide the {@code String} in a separate
76 public enum Status {
83 private Status(String message) {
88 * Returns a brief description of the {@code Status} for
122 * Indicates the state we are in. see {@link EntityResolver.Status}.
124 private Status status; field in class:EntityResolver
129 * with status {@code NOT_STARTED}, see {@link EntityResolver.Status}.
134 status = Status.NOT_STARTED
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 9 __u64 status; member in struct:mce
  /external/kernel-headers/original/uapi/sound/
firewire.h 17 unsigned int status; /* 0/1 = unlocked/locked */ member in struct:snd_firewire_event_lock_status
  /external/libnfc-nci/src/nfa/ee/
nfa_ee_api.c 52 tNFA_STATUS status = NFA_STATUS_FAILED; local
59 status = NFA_STATUS_FAILED;
64 status = NFA_STATUS_INVALID_PARAM;
73 status = NFA_STATUS_OK;
76 return status;
152 tNFA_STATUS status = NFA_STATUS_FAILED; local
159 status = NFA_STATUS_INVALID_PARAM;
168 status = NFA_STATUS_OK;
171 return status;
188 tNFA_STATUS status = NFA_STATUS_INVALID_PARAM local
235 tNFA_STATUS status = NFA_STATUS_FAILED; local
299 tNFA_STATUS status = NFA_STATUS_FAILED; local
355 tNFA_STATUS status = NFA_STATUS_FAILED; local
410 tNFA_STATUS status = NFA_STATUS_FAILED; local
468 tNFA_STATUS status = NFA_STATUS_FAILED; local
507 tNFA_STATUS status = NFA_STATUS_FAILED; local
539 tNFA_STATUS status = NFA_STATUS_FAILED; local
579 tNFA_STATUS status = NFA_STATUS_FAILED; local
625 tNFA_STATUS status = NFA_STATUS_FAILED; local
671 tNFA_STATUS status = NFA_STATUS_FAILED; local
    [all...]
  /external/libnfc-nci/src/nfc/llcp/
llcp_sdp.c 118 tLLCP_STATUS status; local
149 status = LLCP_STATUS_SUCCESS;
165 status = LLCP_STATUS_SUCCESS;
169 status = LLCP_STATUS_FAIL;
175 status = LLCP_STATUS_FAIL;
179 if ( (status == LLCP_STATUS_SUCCESS)
185 return status;
224 tLLCP_STATUS status; local
252 status = LLCP_STATUS_SUCCESS;
268 status = LLCP_STATUS_SUCCESS
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MifareULMap.c 52 NFCSTATUS Status);
433 NFCSTATUS status = NFCSTATUS_PENDING; local
490 status = phFriNfc_OvrHal_Transceive(NdefMap->LowerDevice,
502 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, NFCSTATUS_INVALID_REMOTE_DEVICE);
504 return status;
580 NFCSTATUS Status)
597 if ( Status == NFCSTATUS_SUCCESS )
606 Status = phFriNfc_MfUL_H_ChkCCBytes(NdefMap);
607 CRFlag = (uint8_t)((Status != NFCSTATUS_SUCCESS)?
614 if (NFCSTATUS_SUCCESS == Status)
    [all...]
phFriNfc_OvrHal.c 51 NFCSTATUS status);
54 NFCSTATUS status);
58 NFCSTATUS status
62 NFCSTATUS status
79 NFCSTATUS status = NFCSTATUS_PENDING; local
92 status = PHNFCSTVAL(CID_FRI_NFC_OVR_HAL, NFCSTATUS_INVALID_PARAMETER);
134 status = PHNFCSTVAL (CID_FRI_NFC_OVR_HAL,
140 if (NFCSTATUS_PENDING == status)
163 if (NFCSTATUS_PENDING == status)
172 status = phHal4Nfc_Transceive (OvrHal->psHwReference,
188 NFCSTATUS status = NFCSTATUS_PENDING; local
224 NFCSTATUS status = NFCSTATUS_PENDING; local
259 NFCSTATUS status = NFCSTATUS_PENDING; local
287 NFCSTATUS status = NFCSTATUS_PENDING; local
    [all...]
phHal4Nfc_ADD.c 79 PHDBG_INFO("Hal4:PollCfg in progress.Returning status Busy");
168 /* Change the State of the HAL only if status is Pending */
225 PHDBG_INFO("Hal4:PollCfg in progress.Returning status Busy");
307 Returns status as Pending */
351 NFCSTATUS Status = ((phNfc_sCompletionInfo_t *)pInfo)->status;
369 Status = phHciNfc_System_Configure (
376 if(NFCSTATUS_PENDING != Status)
387 Status
411 ((phNfc_sCompletionInfo_t *)pInfo)->status = NFCSTATUS_SUCCESS
425 NFCSTATUS status = NFCSTATUS_SUCCESS; local
    [all...]
phHciNfc_LinkMgmt.c 128 NFCSTATUS status = NFCSTATUS_SUCCESS; local
137 status = PHNFCSTVAL(CID_NFC_HCI, NFCSTATUS_INVALID_PARAMETER);
159 status = PHNFCSTVAL(CID_NFC_HCI,
165 status = NFCSTATUS_SUCCESS;
178 status = PHNFCSTVAL(CID_NFC_HCI,
190 status = phHciNfc_Open_Pipe( psHciContext,
192 if(status == NFCSTATUS_SUCCESS)
197 status = NFCSTATUS_PENDING;
207 status = PHNFCSTVAL(CID_NFC_HCI,
214 status =
277 NFCSTATUS status = NFCSTATUS_SUCCESS; local
315 NFCSTATUS status = NFCSTATUS_SUCCESS; local
366 NFCSTATUS status = NFCSTATUS_SUCCESS; local
442 NFCSTATUS status = NFCSTATUS_SUCCESS; local
    [all...]
  /external/libnl/src/lib/
ct.c 130 int status; local
132 if ((status = nfnl_ct_str2status(arg)) < 0)
133 nl_cli_fatal(status,
135 arg, nl_geterror(status));
137 nfnl_ct_set_status(ct, status);
  /external/libopus/silk/fixed/
solve_LS_FIX.c 123 opus_int i, j, k, status, loop_count; local
131 status = 1;
133 for( loop_count = 0; loop_count < M && status == 1; loop_count++ ) {
134 status = 0;
150 status = 1;
185 silk_assert( status == 0 );
  /external/libpcap/tests/
nonblocktest.c 62 int status; local
113 status = pcap_dispatch(pd, -1, countme,
115 if (status < 0)
117 if (status != 0) {
119 status, packet_count);
122 if (status == -2) {
131 if (status == -1) {
139 exit(status == -1 ? 1 : 0);
  /external/libsepol/src/
nodes.c 354 int status; local
363 status = fn(node, arg);
364 if (status < 0)
371 if (status > 0)
382 status = fn(node, arg);
383 if (status < 0)
390 if (status > 0)
ports.c 288 int status; local
294 status = fn(port, arg);
295 if (status < 0)
302 if (status > 0)
  /external/libunwind/src/ptrace/
_UPT_access_reg.c 293 uint64_t status; member in struct:__anon8414
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-bench.c 196 int i, j, status = 0; local
247 status = subsystems[i].suites[j].fn(argc - 1,
258 status = 1;
263 status = 1;
266 return status;
  /external/lldb/source/API/
SBCommunication.cpp 84 ConnectionStatus status = eConnectionStatusNoConnection; local
94 status = eConnectionStatusSuccess;
96 status = eConnectionStatusLostConnection;
101 m_opaque, fd, owns_fd, Communication::ConnectionStatusAsCString (status));
103 return status;
112 ConnectionStatus status= eConnectionStatusNoConnection; local
114 status = m_opaque->Disconnect ();
118 Communication::ConnectionStatusAsCString (status));
120 return status;
138 SBCommunication::Read (void *dst, size_t dst_len, uint32_t timeout_usec, ConnectionStatus &status)
    [all...]

Completed in 858 milliseconds

<<31323334353637383940>>