Searched refs:response (Results 101 - 112 of 112) sorted by relevance

12345

/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.h232 AString *response, int32_t cseq, int32_t playbackSessionID = -1ll);
/frameworks/av/media/mtp/
H A DMtpDevice.cpp657 MtpResponseCode response = readResponse(); local
658 if (response == MTP_RESPONSE_OK)
757 MtpResponseCode response = readResponse(); local
758 if (response == MTP_RESPONSE_OK)
793 ALOGD("got response packet instead of data packet");
794 // we got a response packet rather than data
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java863 WebResourceResponse response = mCallbackProxy.shouldInterceptRequest(url);
864 if (response == null && "browser:incognito".equals(url)) {
869 response = new WebResourceResponse("text/html", "utf8", ins);
875 return response;
1034 * We delegate the request to CallbackProxy, and route its response to
1074 * We delegate the request to CallbackProxy, and route its response to
1124 * We delegate the request to CallbackProxy, and route its response to
H A DWebViewProvider.java208 public void documentHasImages(Message response); argument
H A DWebView.java1302 * Clears the SSL preferences table stored in response to proceeding with
1435 * @param response the message that will be dispatched with the result
1437 public void documentHasImages(Message response) { argument
1439 mProvider.documentHasImages(response);
H A DWebViewClassic.java3635 return 0; // no need to wait for response
3791 public void documentHasImages(Message response) { argument
3792 if (response == null) {
3795 mWebViewCore.sendMessage(EventHub.DOC_HAS_IMAGES, response);
4769 * Called in response to a message from webkit telling us that the soft
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp256 status_t AMessage::postAndAwaitResponse(sp<AMessage> *response) {
257 return gLooperRoster.postAndAwaitResponse(this, response);
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp521 jint notifId, jint response)
528 sGpsNiInterface->respond(notifId, response);
520 android_location_GpsLocationProvider_send_ni_response(JNIEnv* env, jobject obj, jint notifId, jint response) argument
/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);
438 // We already ACK'd the original SCPD SMS, so this sends a new response SMS.
492 // Ignore the RIL response. TODO: implement retry if SMS send fails.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java1282 * @param response callback message sent when operation completes.
1285 int result, Message response);
1292 * @param response callback message sent when operation completes.
1295 int result, Message response) {
1303 acknowledgeLastIncomingSms(success, result, response);
1284 acknowledgeLastIncomingSms(boolean success, int result, Message response) argument
1294 notifyAndAcknowledgeLastIncomingSms(boolean success, int result, Message response) argument
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1068 public void verifyPendingInstall(int id, int response) { argument
1070 mPM.verifyPendingInstall(id, response);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java228 * The default response for package verification timeout.
881 final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
883 state.setVerifierResponse(response.callerUid, response.code);
894 response.code, state.getInstallArgs().getUser());
5694 final PackageVerificationResponse response = new PackageVerificationResponse(
5697 msg.obj = response;
5709 final PackageVerificationResponse response = new PackageVerificationResponse(
5728 msg.obj = response;
5863 * Get the default verification agent response cod
[all...]

Completed in 365 milliseconds

12345