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

123

/frameworks/base/core/tests/coretests/src/android/os/
H A DHandlerTester.java50 public void success() { method in class:HandlerTester
H A DTestHandlerThread.java65 public void success() { method in class:TestHandlerThread
/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/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/av/services/camera/libcameraservice/api1/client2/
H A DBurstCapture.cpp97 bool success = jpeg->waitForDone(10 * 1e9); local
98 if(success) {
/frameworks/base/core/java/android/app/
H A DKeyguardManager.java105 * @param success True if the user was able to authenticate, false if
108 void onKeyguardExitResult(boolean success); argument
207 public void onKeyguardExitResult(boolean success) throws RemoteException {
208 callback.onKeyguardExitResult(success);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_vertex_frame.cpp43 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr), local
46 return ToJBool(success);
60 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(float_ptr), local
63 return ToJBool(success);
78 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset), local
81 return ToJBool(success);
H A Djni_gl_frame.cpp121 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset), length); local
123 return ToJBool(success);
149 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr), local
152 return ToJBool(success);
184 const bool success = frame->WriteData(rgba_buffer, length); local
188 return ToJBool(success);
225 const bool success = frame->WriteData(pixels, size); local
226 return ToJBool(success &&
H A Djni_native_frame.cpp62 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset), local
66 return ToJBool(success);
106 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr), local
110 return ToJBool(success);
140 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(float_ptr), local
144 return ToJBool(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
127 EGLBoolean success; local
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSimPinView.java138 abstract void onSimCheckResponse(boolean success); argument
192 void onSimCheckResponse(final boolean success) {
198 if (success) {
H A DKeyguardSimPukView.java193 abstract void onSimLockChangedResponse(boolean success); argument
260 void onSimLockChangedResponse(final boolean success) {
266 if (success) {
H A DKeyguardAccountView.java163 private void postOnCheckPasswordResult(final boolean success) { argument
167 if (success) {
/frameworks/native/libs/input/
H A DVirtualKeyMap.cpp114 bool success = parseNextIntField(&defn.scanCode) local
119 if (!success) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandler.java140 * @param success indicates that last message was successfully received.
145 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response) { argument
146 mPhone.mCi.acknowledgeLastIncomingGsmSms(success, resultToCause(result), response);
152 * @return 0 for success, or a 3GPP SMS failure cause value
158 // Cause code is ignored on success.
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.cpp104 bool success = addSingleTimeAggregationPacket(buffer); local
108 return success ? OK : MALFORMED_PACKET;
/frameworks/base/libs/androidfw/
H A DObbFile.cpp89 bool success = false; local
96 success = readFrom(fd);
99 if (!success) {
104 return success;
229 bool success = false; local
235 success = writeTo(fd);
239 if (!success) {
242 return success;
314 bool success = false; local
320 success
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewCallbacks.java75 boolean success);
74 onFragmentPhotoLoadComplete(PhotoViewFragment fragment, boolean success) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java197 * @param success indicates that last message was successfully received.
202 protected void acknowledgeLastIncomingSms(boolean success, int result, Message response) { argument
208 mPhone.mCi.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
219 * @return 0 for success, or a CDMA SMS failure cause value
225 // Cause code is ignored on success.
/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp82 bool success = getFormat()->findCString(kKeyMIMEType, &mime); local
83 CHECK(success);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp152 Bool success = PVInitVideoDecoder( local
155 if (!success) {
/frameworks/av/media/libstagefright/omx/
H A DGraphicBufferSource.cpp271 bool success = repeatLatestSubmittedBuffer_l(); local
272 if (success) {
643 bool success = repeatLatestSubmittedBuffer_l(); local
645 if (success) {
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.cpp403 bool success; local
405 success = false;
407 success = GetConfiguration(
411 if (!success) {
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp184 EGLBoolean success = eglMakeCurrent(mEglDisplay, eglSurface, eglSurface, mEglContext); local
185 EXPECT_TRUE(success);
188 success = eglSwapBuffers(mEglDisplay, eglSurface);
189 EXPECT_TRUE(success);
194 success = eglSwapBuffers(mEglDisplay, eglSurface);
195 EXPECT_FALSE(success);
198 success = eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
199 ASSERT_TRUE(success);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp72 EGLBoolean success = eglMakeCurrent(display, dummy, dummy, ctxt); local
73 LOG_ALWAYS_FATAL_IF(!success, "can't make dummy pbuffer current");

Completed in 1230 milliseconds

123