Searched refs:success (Results 51 - 75 of 112) sorted by relevance

12345

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DSimPukUnlockScreen.java158 abstract void onSimLockChangedResponse(boolean success); argument
245 void onSimLockChangedResponse(final boolean success) {
251 if (success) {
H A DSimUnlockScreen.java154 abstract void onSimLockChangedResponse(boolean success); argument
217 void onSimLockChangedResponse(final boolean success) {
223 if (success) {
H A DAccountUnlockScreen.java173 private void postOnCheckPasswordResult(final boolean success) { argument
177 if (success) {
/frameworks/base/services/java/com/android/server/input/
H A DPersistentDataStore.java208 boolean success = false;
214 success = true;
216 if (success) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java204 public void acknowledgeLastIncomingGsmSms(boolean success, int cause, argument
208 public void acknowledgeLastIncomingCdmaSms(boolean success, int cause, argument
212 public void acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, argument
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp292 bool success = meta->findCString(kKeyMIMEType, &mime); local
293 CHECK(success);
778 bool success = meta->findInt32(kKeyWidth, &width); local
779 success = success && meta->findInt32(kKeyHeight, &height);
780 success = success && meta->findInt32(kKeyFrameRate, &frameRate);
781 success = success && meta->findInt32(kKeyBitRate, &bitRate);
782 success
999 bool success = meta->findInt32(kKeyBitRate, &bitRate); local
1046 bool success = meta->findInt32(kKeyBitRate, &bitRate); local
1098 bool success = meta->findInt32(kKeyBitRate, &bitRate); local
1174 bool success = meta->findInt32(kKeyWidth, &width); local
[all...]
H A DDRMExtractor.cpp82 bool success = getFormat()->findCString(kKeyMIMEType, &mime); local
83 CHECK(success);
H A DMP3Extractor.cpp258 bool success; local
273 success = true;
275 success = Resync(mDataSource, 0, &pos, &post_id3_pos, &header);
278 if (!success) {
H A DMPEG4Writer.cpp1339 bool success = mMeta->findInt32(kKeySampleRate, &sampleRate); local
1340 CHECK(success);
2528 bool success = mMeta->findCString(kKeyMIMEType, &mime); local
2529 CHECK(success);
2551 success = mMeta->findInt32(kKeyWidth, &width);
2552 success = success && mMeta->findInt32(kKeyHeight, &height);
2553 CHECK(success);
2581 bool success = mMeta->findCString(kKeyMIMEType, &mime); local
2582 CHECK(success);
2726 bool success = mMeta->findInt32(kKeyWidth, &width); local
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp405 goto success;
415 goto success;
428 goto success;
441 goto success;
457 goto success;
469 goto success;
481 goto success;
493 goto success;
505 goto success;
517 goto success;
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DMessageQueueTest.java54 success();
134 success();
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyPairGeneratorTest.java85 } catch (IllegalArgumentException success) {
93 } catch (IllegalArgumentException success) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardAccountView.java164 private void postOnCheckPasswordResult(final boolean success) { argument
168 if (success) {
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp36 // reduce the startup time. On success, return the LLVM module object created
88 if (ec != llvm::error_code::success()) {
116 if (ec != llvm::error_code::success()) {
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java156 boolean success = latch.await(1, TimeUnit.SECONDS);
157 if (!success) {
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp155 bool success = removeUnsynchronizationV2_4(false /* iTunesHack */); local
156 if (!success) {
160 success = removeUnsynchronizationV2_4(true /* iTunesHack */);
162 if (success) {
170 if (!success) {
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java1062 boolean success = false;
1098 success = true;
1118 if (!success) {
1142 boolean success = false;
1155 success = true;
1161 success = true;
1164 success = restoreNamedResourceLocked(wallpaper);
1166 if (DEBUG) Slog.v(TAG, "settingsRestored: success=" + success);
1167 if (success) {
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java281 final boolean success;
284 success = window.putNull(position, i);
288 success = window.putLong(cursor.getLong(i), position, i);
292 success = window.putDouble(cursor.getDouble(i), position, i);
297 success = value != null ? window.putBlob(value, position, i)
305 success = value != null ? window.putString(value, position, i)
310 if (!success) {
/frameworks/compile/mclinker/lib/LD/
H A DELFDynObjWriter.cpp152 return llvm::make_error_code(llvm::errc::success);
H A DELFExecWriter.cpp155 return llvm::make_error_code(llvm::errc::success);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java368 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response) { argument
375 mCm.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
387 // Cause code is ignored on success.
444 boolean success = (rc == Activity.RESULT_OK) || (rc == Intents.RESULT_SMS_HANDLED);
445 if (!success) {
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DImageRequest.java179 return Response.success(bitmap, HttpHeaderParser.parseCacheHeaders(response));
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp791 bool success = OK; local
805 success = meta->findInt32(kKeyWidth, &vWidth);
806 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
807 success = meta->findInt32(kKeyHeight, &vHeight);
808 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
928 bool success = TRUE; local
1042 success = pDecShellContext->mVideoDecoder->getFormat()->findInt32(
1044 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
1096 bool success = TRUE; local
1204 success
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.cpp104 bool success = addSingleTimeAggregationPacket(buffer); local
108 return success ? OK : MALFORMED_PACKET;
/frameworks/base/core/java/android/view/
H A DTextureView.java211 boolean success = mAttachInfo.mHardwareRenderer.safelyRun(new Runnable() {
218 if (!success) {

Completed in 776 milliseconds

12345