HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 1 - 25 of 2932) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/bus/
utils.c 42 DBusDispatchStatus status; local
44 while ((status = dbus_connection_dispatch (connection)) == DBUS_DISPATCH_NEED_MEMORY)
47 return status == DBUS_DISPATCH_DATA_REMAINS;
  /external/elfutils/tests/
hash.c 46 int status; local
49 status = check ("_DYNAMIC", 165832675);
50 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
52 return status;
  /external/icu4c/samples/datecal/
cal.cpp 18 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...]
ccal.c 18 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/icu4c/samples/msgfmt/answers/
main_0.cpp 16 UErrorCode status = U_ZERO_ERROR; local
main_1.cpp 15 UErrorCode status = U_ZERO_ERROR; local
main_2.cpp 23 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");
main_3.cpp 23 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/icu4c/test/testmap/
testmap.c 29 UErrorCode status = U_ZERO_ERROR; local
31 udata_setCommonData(NULL, &status);
32 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
33 if(status != U_ILLEGAL_ARGUMENT_ERROR)
39 status = U_ZERO_ERROR;
40 udata_setCommonData(U_ICUDATA_ENTRY_POINT, &status);
41 printf("setCommonData(%p) -> %s\n", U_ICUDATA_ENTRY_POINT, u_errorName(status));
42 if(U_FAILURE(status))
48 status = U_ZERO_ERROR;
49 c = ucnv_open("iso-8859-7", &status);
    [all...]
  /external/libnfc-nci/src/nfc/nfc/
nfc_test.c 55 tNFC_STATUS status = NFC_STATUS_FAILED; local
60 status = nfc_ncif_send_data (p_cb, p_data);
63 if (status != NFC_STATUS_OK)
66 return status;
nfc_vs.c 54 tNFC_STATUS status = NFC_STATUS_FAILED; local
65 status = NFC_STATUS_OK;
78 status = NFC_STATUS_OK;
83 return status;
105 tNFC_STATUS status = NFC_STATUS_OK; local
140 return status;
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 29 Notification status = new Notification(R.drawable.stat_happy, null, local
31 status.flags |= Notification.FLAG_ONGOING_EVENT;
32 status.setLatestEventInfo(this, "Scheduler Test running",
38 startForeground(1, status);
  /bootable/recovery/
bootloader.h 35 * The status field is written by the bootloader after the
44 char status[32]; member in struct:bootloader_message
  /external/chromium/chrome/browser/sync/
sync_ui_util_unittest.cc 24 browser_sync::SyncBackendHost::Status status = local
25 { browser_sync::SyncBackendHost::Status::OFFLINE_UNUSABLE };
30 .WillOnce(Return(status));
  /external/clang/test/Sema/
transparent-union-pointer.c 11 int status = 0; local
12 wait(&status);
  /external/icu4c/samples/msgfmt/
main.cpp 23 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/valgrind/main/gdbserver_tests/
fork_chain.c 24 int status; local
25 while((ret = waitpid(pid, &status, 0)) != pid) {
  /external/valgrind/main/none/tests/
mmap_fcntl_bug.c 21 int fd, status; local
53 if (wait(&status) == -1)
56 if (!WIFEXITED(status))
57 errx(1, "Child died with signal %i", WTERMSIG(status));
59 switch (WEXITSTATUS(status)) {
66 errx(1, "Child weird exit status %i", WEXITSTATUS(status));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-001.js 35 var status = 'Testing scope after changing obj.__proto__'; variable
51 printStatus (status);
54 status= 'Step 1: setting obj.__proto__ = global object';
59 reportCompare (expect, actual, status);
64 reportCompare (expect, actual, status);
68 status= 'Step 2: setting obj.__proto__ = null';
73 reportCompare (expect, actual, status);
78 reportCompare (expect, actual, status);
82 status= 'Step 3: setting obj.__proto__ to global object again';
87 reportCompare (expect, actual, status);
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ossource_nspr.cpp 18 PRStatus status = PR_NewThreadPrivateIndex(&index, NULL); local
20 if (status) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dec_pred_intra_dc.cpp 32 PV_STATUS status = PV_SUCCESS; local
41 status = PV_VlcDecIntraDCPredSize(stream, compnum, &DC_size);
43 if (status == PV_SUCCESS)
73 return status;
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
broadcastKeyNone.c 114 TI_STATUS status=TI_NOK; local
118 status = pBroadcastKey->pParent->reportBcastStatus(pBroadcastKey->pParent, TI_OK);
121 return status;
142 TI_STATUS status=TI_NOK; local
146 status = pBroadcastKey->pKeyDerive->derive(pBroadcastKey->pKeyDerive,
149 if (status != TI_OK)
156 status = pBroadcastKey->pParent->reportBcastStatus(pBroadcastKey->pParent, TI_OK);
159 return status;
unicastKeyNone.c 111 TI_STATUS status=TI_NOK; local
115 status = pUnicastKey->pParent->reportUcastStatus(pUnicastKey->pParent, TI_OK);
118 return status;
139 TI_STATUS status=TI_NOK; local
148 status = pUnicastKey->pKeyDerive->derive(pUnicastKey->pKeyDerive,
151 if (status != TI_OK)
158 status = pUnicastKey->pParent->setDefaultKeyId(pUnicastKey->pParent,
161 if (status != TI_OK)
163 return status;
168 status = pUnicastKey->pParent->reportUcastStatus(pUnicastKey->pParent, TI_OK)
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
LoginModuleUtilsTest.java 80 LoginModuleUtils.LoginModuleStatus status = new LoginModuleUtils.LoginModuleStatus(); local
82 status.checkLogin();
88 status.checkCommit();
94 status.checkLogout();
99 status.initialized();
100 assertEquals(LoginModuleUtils.ACTION.login, status
104 status.checkCommit();
110 status.checkLogout());
112 status.logined();
114 status.checkLogin())
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WpsResult.java 28 public enum Status {
34 public Status status; field in class:WpsResult
39 status = Status.FAILURE;
43 public WpsResult(Status s) {
44 status = s;
50 sbuf.append(" status: ").append(status.toString());
65 status = source.status
    [all...]

Completed in 5418 milliseconds

1 2 3 4 5 6 7 8 91011>>