Searched defs:success (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccIoResult.java49 public boolean success() { method in class:IccIoResult
54 * Returns exception on error or null if success
57 if (success()) return null;
H A DIccPhoneBookInterfaceManager.java42 protected boolean success; field in class:IccPhoneBookInterfaceManager
75 success = (ar.exception == null);
132 * @return true for success
153 success = false;
164 return success;
182 * @return true for success
200 success = false;
210 return success;
/frameworks/base/core/java/android/app/
H A DKeyguardManager.java88 * @param success True if the user was able to authenticate, false if
91 void onKeyguardExitResult(boolean success); argument
147 public void onKeyguardExitResult(boolean success) throws RemoteException {
148 callback.onKeyguardExitResult(success);
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/os/
H A DHandlerTester.java50 public void success() { method in class:HandlerTester
H A DTestHandlerThread.java65 public void success() { method in class:TestHandlerThread
/frameworks/base/core/jni/
H A Dandroid_text_KeyCharacterMap.cpp109 bool success = kmap->getEvents(chars, len, &keys, &modifiers); local
113 if (success) {
H A Dcom_google_android_gles_jni_EGLImpl.cpp143 jboolean success = eglInitialize(dpy, NULL, NULL); local
144 if (success && major_minor) {
154 return success;
166 jboolean success = JNI_FALSE; local
170 success = eglQueryContext(dpy, ctx, attribute, base);
173 return success;
186 jboolean success = JNI_FALSE; local
190 success = eglQuerySurface(dpy, sur, attribute, base);
193 return success;
206 jboolean success local
354 jboolean success = JNI_FALSE; local
371 jboolean success = JNI_FALSE; local
[all...]
/frameworks/base/core/java/android/content/
H A DSyncableContentProvider.java130 * @param success true if the sync succeeded, false if an error occurred
132 public abstract void onSyncStop(SyncContext context, boolean success); argument
H A DTempProviderSyncAdapter.java81 * @param success true if the sync suceeded, false if an error occured
83 public abstract void onSyncEnding(SyncContext context, boolean success); argument
H A DAbstractSyncableContentProvider.java533 * @param success true if the sync succeeded, false if an error occurred
535 public void onSyncStop(SyncContext context, boolean success) { argument
/frameworks/base/core/java/com/google/android/util/
H A DGoogleWebContentHelper.java228 private synchronized void handleWebViewCompletion(boolean success) { argument
240 View goneView = success ? mTextView : mWebView;
243 // Show the next view, which depends on success
244 View visibleView = success ? mWebView : mTextView;
/frameworks/base/media/libstagefright/
H A DAudioPlayer.cpp64 bool success = format->findCString(kKeyMIMEType, &mime); local
65 CHECK(success);
68 success = format->findInt32(kKeySampleRate, &mSampleRate);
69 CHECK(success);
72 success = format->findInt32(kKeyChannelCount, &numChannels);
73 CHECK(success);
214 bool success = local
216 success = success &&
218 CHECK(success);
[all...]
H A DMP3Extractor.cpp318 bool success = Resync(mDataSource, 0, &pos, &header); local
319 CHECK(success);
321 if (success) {
H A DMPEG4Writer.cpp403 bool success = local
405 CHECK(success);
406 success =
408 CHECK(success);
427 bool success = mMeta->findCString(kKeyMIMEType, &mime); local
428 CHECK(success);
465 bool success = mMeta->findInt32(kKeyWidth, &width); local
466 success = success && mMeta->findInt32(kKeyHeight, &height);
467 CHECK(success);
553 bool success = mMeta->findInt32(kKeySampleRate, &samplerate); local
578 bool success = mMeta->findInt32(kKeyWidth, &width); local
[all...]
H A DMediaPlayerImpl.cpp284 bool success = local
286 CHECK(success);
287 success =
289 CHECK(success);
440 bool success = meta->findInt32(kKeyWidth, &mVideoWidth); local
441 CHECK(success);
443 success = meta->findInt32(kKeyHeight, &mVideoHeight);
444 CHECK(success);
630 bool success = meta->findInt32(kKeyColorFormat, &format); local
631 success
[all...]
H A DMPEG4Extractor.cpp746 bool success = mFormat->findCString(kKeyMIMEType, &mime); local
747 CHECK(success);
749 success = mFormat->findInt32(kKeyTimeScale, &mTimescale);
750 CHECK(success);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java456 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response){ argument
466 mCm.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
494 // Cause code is ignored on success.
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java227 * The result code will be <code>Activity.RESULT_OK<code> for success,
339 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response){ argument
342 mCm.acknowledgeLastIncomingGsmSms(success, resultToCause(result), response);
371 // Cause code is ignored on success.
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DAccountUnlockScreen.java167 private void onCheckPasswordResult(boolean success) { argument
168 if (success) {
H A DSimUnlockScreen.java138 abstract void onSimLockChangedResponse(boolean success); argument
209 void onSimLockChangedResponse(boolean success) {
213 if (success) {
/frameworks/base/tools/localize/
H A Dmerge_res_and_xliff.cpp69 bool success = true; local
136 if (success) {
H A Dlocalize.cpp261 bool success = true; local
335 success = false;
393 if (!success || SourcePos::HasErrors()) {
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp283 bool success = false; local
288 success = encoder->encodeStream(strm, *bitmap, quality);
293 return success;
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp440 // success; reset the priority as well
902 const bool success = refs->attemptIncStrong(mProcess.get()); local
903 LOG_ASSERT(success && refs->refBase() == obj,
908 mOut.writeInt32((int32_t)success);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java786 void onKeyguardExitResult(boolean success); argument

Completed in 373 milliseconds

12