Searched defs:success (Results 1 - 25 of 75) sorted by last modified time

123

/frameworks/volley/src/com/android/volley/
H A DResponse.java42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) { method in class:Response
/frameworks/rs/api/
H A Dgen_runtime.cpp751 bool success = writeAllFunctions(headerFile, versionOfTestFiles); local
757 return success;
772 bool success = true; local
776 success = false;
779 return success;
904 bool success = true; local
978 success = false;
984 if (success) {
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jar ... osName private boolean deleteDir (java.io.File) boolean success int i String[] children java.io.File dir ...
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewCallbacks.java83 boolean success);
82 onFragmentPhotoLoadComplete(PhotoViewFragment fragment, boolean success) argument
H A DPhotoViewController.java864 public void onFragmentPhotoLoadComplete(PhotoViewFragment fragment, boolean success) { argument
867 if (success) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java629 * ar.exception and ar.result are null on success
648 * ar.exception and ar.result are null on success
665 * ar.exception and ar.result are null on success
683 * ar.exception and ar.result are null on success
702 * ar.exception and ar.result are null on success
723 * ar.exception and ar.result are null on success
742 * ar.exception and ar.result are null on success
763 * ar.exception and ar.result are null on success
813 * ar.result is null on success and failure
826 * ar.result is null on success an
1159 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message response) argument
1161 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message response) argument
1172 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message response) argument
[all...]
H A DInboundSmsHandler.java560 * @param success indicates that last message was successfully received.
564 protected abstract void acknowledgeLastIncomingSms(boolean success, argument
583 * @param success indicates that last message was successfully received.
587 void notifyAndAcknowledgeLastIncomingSms(boolean success, argument
589 if (!success) {
595 acknowledgeLastIncomingSms(success, result, response);
925 * @return true on success; false on failure to write to database
H A DRIL.java1552 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message result) { argument
1557 rr.mParcel.writeInt(success ? 1 : 0);
1561 + " " + success + " " + cause);
1568 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message result) { argument
1572 rr.mParcel.writeInt(success ? 0 : 1); //RIL_CDMA_SMS_ErrorClass
1577 + " " + success + " " + cause);
1584 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message result) { argument
1589 rr.mParcel.writeString(success ? "1" : "0");
1593 + ' ' + success + " [" + ackPdu + ']');
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java192 * @param success indicates that last message was successfully received.
197 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response) { argument
203 mPhone.mCi.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
227 * @return 0 for success, or a CDMA SMS failure cause value
233 // Cause code is ignored on success.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandler.java159 * @param success indicates that last message was successfully received.
164 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response) { argument
165 mPhone.mCi.acknowledgeLastIncomingGsmSms(success, resultToCause(result), response);
187 * @return 0 for success, or a 3GPP SMS failure cause value
193 // Cause code is ignored on success.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java276 public void acknowledgeLastIncomingGsmSms(boolean success, int cause, argument
281 public void acknowledgeLastIncomingCdmaSms(boolean success, int cause, argument
286 public void acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java277 public void acknowledgeLastIncomingGsmSms(boolean success, int cause, argument
282 public void acknowledgeLastIncomingCdmaSms(boolean success, int cause, argument
287 public void acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java126 Rlog.i(LOG_TAG, "[SimCmd] supplyIccPin: success!");
169 Rlog.i(LOG_TAG, "[SimCmd] supplyIccPuk: success!");
212 Rlog.i(LOG_TAG, "[SimCmd] supplyIccPin2: success!");
254 Rlog.i(LOG_TAG, "[SimCmd] supplyIccPuk2: success!");
494 * ar.result is null on success and failure
512 * ar.result is null on success and failure
534 * ar.result is String containing IMSI on success
546 * ar.result is String containing IMEI on success
558 * ar.result is String containing IMEISV on success
571 * ar.result is null on success an
1117 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message result) argument
1122 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message result) argument
1127 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message result) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccIoResult.java51 public boolean success() { method in class:IccIoResult
56 * Returns exception on error or null if success
59 if (success()) return null;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java40 private boolean mExpectingAcknowledgeGsmSmsSuccess; // true if expecting ack SMS success
55 * Expect a call to acknowledgeLastIncomingGsmSms with success flag and failure cause.
56 * @param success true if expecting success; false if expecting failure
57 * @param cause the failure cause, if success is false
59 synchronized void expectAcknowledgeGsmSms(boolean success, int cause) { argument
62 mExpectingAcknowledgeGsmSmsSuccess = success;
67 * Expect a call to acknowledgeLastIncomingGsmSmsWithPdu with success flag and PDU.
68 * @param success true if expecting success; fals
71 expectAcknowledgeGsmSmsWithPdu(boolean success, String ackPdu) argument
107 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message response) argument
122 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message response) argument
392 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message response) argument
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java446 private void sendToClient(int event, boolean success) { argument
447 sendToClient(event, success, null);
450 private void sendToClient(int event, boolean success, int param) { argument
451 sendToClient(event, success, Integer.valueOf(param));
454 private void sendToClient(int event, boolean success, Object param) { argument
455 if (success) {
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jar ... osName private boolean deleteDir (java.io.File) boolean success int i String[] children java.io.File dir ...
/frameworks/native/cmds/flatland/
H A DMain.cpp597 bool success = true; local
663 success = false;
685 return success;
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp1013 const bool success = refs->attemptIncStrong(mProcess.get()); local
1014 ALOG_ASSERT(success && refs->refBase() == obj,
1019 mOut.writeInt32((int32_t)success);
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp187 EGLBoolean success = eglMakeCurrent(mEglDisplay, eglSurface, eglSurface, mEglContext); local
188 EXPECT_TRUE(success);
191 success = eglSwapBuffers(mEglDisplay, eglSurface);
192 EXPECT_TRUE(success);
197 success = eglSwapBuffers(mEglDisplay, eglSurface);
198 EXPECT_FALSE(success);
201 success = eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
202 ASSERT_TRUE(success);
/frameworks/native/libs/input/
H A DVirtualKeyMap.cpp114 bool success = parseNextIntField(&defn.scanCode) local
119 if (!success) {
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp50 EGLBoolean success = eglTerminate(mEglDisplay); local
51 ASSERT_EQ(EGL_TRUE, success);
60 EGLBoolean success; local
67 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
68 ASSERT_EQ(EGL_TRUE, success);
74 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
75 ASSERT_EQ(EGL_TRUE, success);
77 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
78 ASSERT_EQ(EGL_TRUE, success);
80 success
130 EGLBoolean success; local
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp241 EGLBoolean success = eglSwapBuffers(mDisplay, mSurface); local
242 if (!success) {
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp108 EGLBoolean success = eglMakeCurrent(display, dummy, dummy, ctxt); local
109 LOG_ALWAYS_FATAL_IF(!success, "can't make dummy pbuffer current");
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp171 bool success = pEvaluator.eval(m_RpnExpr, result); local
172 if (success)
174 return success;

Completed in 567 milliseconds

123