/packages/apps/Phone/src/com/android/phone/ |
EditFdnContactScreen.java | 357 private void handleResult(boolean success, boolean invalidNumber) { 358 if (success) { 359 if (DBG) log("handleResult: success!");
|
/cts/tools/host/src/com/android/cts/ |
TestDevice.java | 259 boolean success = false; 260 while (!success && (retries < REBOOT_POLL_COUNT)) { 264 success = rpr.hasRestarted(GETPROP_TIMEOUT); 265 if (!success) { 275 if (success) { 278 return success; [all...] |
/dalvik/vm/analysis/ |
DexPrepare.c | 78 * On success, the file descriptor will be positioned just past the "opt" 264 * Returns "true" on success. 295 * Returns "true" on success. All data will have been written to "fd". 451 LOGD("DexOpt: --- END '%s' (success) ---\n", lastPart); 472 * Returns "true" on success. 513 bool success; local 534 success = rewriteDex(((u1*) mapAddr) + dexOffset, dexLength, 537 if (success) { 543 success = false; 554 success = false [all...] |
/external/chromium/third_party/icu/source/test/intltest/ |
rbbiapts.cpp | 713 UBool success; local 721 success = pos==0 && tag==UBRK_LINE_SOFT; break; 723 success = pos==5 && tag==UBRK_LINE_SOFT; break; 725 success = pos==12 && tag==UBRK_LINE_HARD; break; 727 success = FALSE; break; 729 if (success == FALSE) { [all...] |
/external/guava/src/com/google/common/collect/ |
MapMaker.java | 649 boolean success = false; 652 success = true; 655 if (!success) { 666 boolean success = false; 670 success = true; 673 if (!success) { [all...] |
/external/icu4c/test/intltest/ |
rbbiapts.cpp | 700 UBool success; local 708 success = pos==0 && tag==UBRK_LINE_SOFT; break; 710 success = pos==5 && tag==UBRK_LINE_SOFT; break; 712 success = pos==12 && tag==UBRK_LINE_HARD; break; 714 success = FALSE; break; 716 if (success == FALSE) { [all...] |
/external/srec/tools/grxmlcompile/ |
grxmldoc.cpp | 835 bool success = m_SubgraphList.insert( ruleName, p_SubGraph ); local 836 if (!success) { 845 return success; 924 bool success = true; local 928 success = m_TagList.insert( m_TagAutoIndex++, s ); 929 return success; [all...] |
/external/webkit/WebCore/platform/mac/ |
ClipboardMac.mm | 208 String ClipboardMac::getData(const String& type, bool& success) const 210 success = false; 231 success = true;
|
/frameworks/base/media/libstagefright/codecs/aacenc/src/ |
sf_estim.c | 408 Flag success; local 415 success = 0; 475 success = 0; 508 /* success, replace scf by new one */ 512 success = 1; 533 if (success && restartOnSuccess) { 541 success = 0;
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
SMSDispatcher.java | 447 * Called when SMS send completes. Broadcasts a sentIntent on success. 698 * The result code will be <code>Activity.RESULT_OK<code> for success, 725 * The result code will be <code>Activity.RESULT_OK<code> for success, 754 * The result code will be <code>Activity.RESULT_OK<code> for success, 780 * The result code will be <code>Activity.RESULT_OK<code> for success, [all...] |
/frameworks/base/media/libstagefright/ |
MPEG4Writer.cpp | 1004 bool success = mMeta->findInt32(kKeySampleRate, &sampleRate); 1005 CHECK(success); [all...] |
/external/chromium/third_party/icu/source/test/letest/ |
letest.cpp | 615 LEErrorCode success = LE_NO_ERROR; local 690 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success); 692 if (LE_FAILURE(success)) { 697 actual.glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0, 0, success); 703 engine->getGlyphs(actual.glyphs, success); 704 engine->getCharIndices(actual.indices, success); 705 engine->getGlyphPositions(actual.positions, success); [all...] |
/external/icu4c/test/letest/ |
letest.cpp | 615 LEErrorCode success = LE_NO_ERROR; local 690 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success); 692 if (LE_FAILURE(success)) { 697 actual.glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0, 0, success); 703 engine->getGlyphs(actual.glyphs, success); 704 engine->getCharIndices(actual.indices, success); 705 engine->getGlyphPositions(actual.positions, success); [all...] |
/external/v8/src/arm/ |
regexp-macro-assembler-arm.cc | 296 Label success; 330 __ jmp(&success); 335 __ bind(&success); 365 // Check if function returned non-zero for success or zero for failure. 368 // On success, increment position by length of capture. 380 Label success; 476 Label success; 478 __ b(eq, &success); 483 __ bind(&success); 728 __ mov(r0, Operand(SUCCESS)); [all...] |
/external/wpa_supplicant/ |
eapol_sm.c | 465 SM_STATE(SUPP_BE, SUCCESS) 467 SM_ENTRY(SUPP_BE, SUCCESS); 529 * and SUCCESS based on eapFail and eapSuccess, respectively. 552 SM_ENTER(SUPP_BE, SUCCESS); 572 SM_ENTER(SUPP_BE, SUCCESS); 585 SM_ENTER(SUPP_BE, SUCCESS); 875 int success = sm->cb_status == EAPOL_CB_SUCCESS ? 1 : 0; local 877 sm->ctx->cb(sm, success, sm->ctx->cb_ctx); 914 return "SUCCESS"; [all...] |
ctrl_iface_dbus_handlers.c | 54 * wpas_dbus_new_success_reply - Return a new success reply message 57 * success (ie, a value of 1) 59 * Convenience function to create and return a success reply message 64 unsigned int success = 1; local 67 dbus_message_append_args(reply, DBUS_TYPE_UINT32, &success, 191 * Returns: a dbus message containing a UINT32 indicating success (1) or 286 * Returns: a dbus message containing a UINT32 indicating success (1) or 488 dbus_bool_t success = FALSE; local 491 success = wpa_dbus_dict_append_string_array( 500 if (!success) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eapol_supp/ |
eapol_supp_sm.c | 489 SM_STATE(SUPP_BE, SUCCESS) 491 SM_ENTRY(SUPP_BE, SUCCESS); 554 * and SUCCESS based on eapFail and eapSuccess, respectively. 577 SM_ENTER(SUPP_BE, SUCCESS); 597 SM_ENTER(SUPP_BE, SUCCESS); 610 SM_ENTER(SUPP_BE, SUCCESS); 900 int success = sm->cb_status == EAPOL_CB_SUCCESS ? 1 : 0; local 902 sm->ctx->cb(sm, success, sm->ctx->cb_ctx); 939 return "SUCCESS"; [all...] |
/external/bluetooth/bluez/test/ |
ipctest.c | 947 int success; local 964 success = FALSE; 967 if (!success && (success = (strncmp(line, #cmd, strlen(#cmd)) == 0))) 1056 if (!success && strlen(line) != 0) {
|
/external/chromium/net/http/ |
http_cache.cc | 572 bool success = false; local 577 success = trans->AddTruncatedFlag(); 579 DoneWritingToEntry(entry, success); 585 void HttpCache::DoneWritingToEntry(ActiveEntry* entry, bool success) { 590 if (success) {
|
/external/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_dbus_handlers.c | 57 * wpas_dbus_new_success_reply - Return a new success reply message 60 * success (ie, a value of 1) 62 * Convenience function to create and return a success reply message 67 unsigned int success = 1; local 70 dbus_message_append_args(reply, DBUS_TYPE_UINT32, &success, 194 * Returns: a dbus message containing a UINT32 indicating success (1) or 288 * Returns: a dbus message containing a UINT32 indicating success (1) or 334 * Returns: a dbus message containing a UINT32 indicating success (1) or 546 dbus_bool_t success = FALSE; local 549 success = wpa_dbus_dict_append_string_array [all...] |
/external/bluetooth/glib/gobject/ |
gclosure.c | 108 gint new_int, old_int, success; \ 117 success = g_atomic_int_compare_and_exchange (&cunion->vint, old_int, new_int); \ 119 while (!success && _must_set); \ [all...] |
/external/chromium/third_party/icu/source/i18n/ |
chnsecal.cpp | 113 ChineseCalendar::ChineseCalendar(const Locale& aLocale, UErrorCode& success) 114 : Calendar(TimeZone::createDefault(), aLocale, success) 117 setTimeInMillis(getNow(), success); // Call this again now that the vtable is set up properly. local
|
/external/dbus/dbus/ |
dbus-bus.c | 597 * @returns #TRUE on success 629 /* Success! */ 720 dbus_bool_t success; local 734 success = bd->unique_name != NULL; 738 return success; [all...] |
/external/icu4c/i18n/ |
chnsecal.cpp | 113 ChineseCalendar::ChineseCalendar(const Locale& aLocale, UErrorCode& success) 114 : Calendar(TimeZone::createDefault(), aLocale, success) 117 setTimeInMillis(getNow(), success); // Call this again now that the vtable is set up properly. local
|
/external/webkit/WebCore/css/ |
CSSMutableStyleDeclaration.cpp | 534 bool success = parser.parseValue(this, propertyID, value, important); local 535 if (!success) { 541 return success; [all...] |