Searched refs:response (Results 176 - 188 of 188) sorted by relevance

12345678

/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java1545 // Reciprocal piecewise gamma response
1550 // Piecewise gamma response
1551 private static double response(double x, double a, double b, double c, double d, double g) { method in class:ColorSpace
1555 // Reciprocal piecewise gamma response
1561 // Piecewise gamma response
1562 private static double response(double x, double a, double b, double c, double d, method in class:ColorSpace
1567 // Reciprocal piecewise gamma response, encoded as sign(x).f(abs(x)) for color
1574 // Piecewise gamma response, encoded as sign(x).f(abs(x)) for color spaces that
1578 return Math.copySign(response(x < 0.0 ? -x : x, a, b, c, d, g), x);
2402 x -> response(
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java360 * &lt;!-- Service that delivers SMS messages received from the phone "quick response" -->
3747 * @return The APDU response from the ICC card with the status appended at
3775 * @return The APDU response from the ICC card with the status appended at
3808 * @return The APDU response from the ICC card with the status appended at
3834 * @return The APDU response from the ICC card with the status appended at
3852 * Returns the response APDU for a command APDU sent through SIM_IO.
3864 * @return The APDU response.
3872 * Returns the response APDU for a command APDU sent through SIM_IO.
3885 * @return The APDU response.
3901 * Send ENVELOPE to the SIM and return the response
5182 onReceiveUssdResponse(final TelephonyManager telephonyManager, String request, CharSequence response) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java607 /* We are ok with no response here since we wont do much with it anyway */
6528 * 4a.4 Send a response to the original source of WifiManager API using {@link #mSourceMessage}.
6828 String response =
6830 if (response == null) {
6833 logv("Supplicant Response -" + response);
6835 WifiNative.SIM_AUTH_RESP_TYPE_GSM_AUTH, response);
6849 SimAuthResponseData response =
6851 if (response != null) {
6852 mWifiNative.simAuthResponse(requestData.networkId, response.type, response
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHal.java1262 ArrayList<Byte> response = null;
1266 response = NativeUtil.byteArrayToArrayList(
1275 mISupplicantP2pIface.addBonjourService(request, response));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java1527 public void sendUSSD (String ussdString, Message response) { argument
1533 AsyncResult.forMessage(response, null, null);
1534 response.sendToTarget();
1539 mPhone.sendErrorResponse(response, getImsManagerIsNullException());
1553 mPhone.sendErrorResponse(response, e);
2070 // Note: This case comes up when we have just held a call in response to a
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp1471 jobject /* obj */, jint notifId, jint response) {
1477 gnssNiIface->respond(notifId, static_cast<IGnssNiCallback::GnssUserResponseType>(response));
1470 android_location_GnssLocationProvider_send_ni_response(JNIEnv* , jobject , jint notifId, jint response) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/av/media/libstagefright/
H A DACodec.cpp625 sp<AMessage> response; local
626 status_t err = msg->postAndAwaitResponse(&response);
629 (void)response->findInt32("err", &err);
5400 sp<AMessage> response = new AMessage; local
5401 response->setInt32("err", err);
5402 response->postReply(replyID);
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1731 public void verifyPendingInstall(int id, int response) { argument
1733 mPM.verifyPendingInstall(id, response);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHalTest.java1037 * Test getSsid() with invalid argument and response.
1055 // Simulate null response from HAL.
1488 public SupplicantStatus answer(ArrayList<Byte> request, ArrayList<Byte> response) {
1491 assertEquals(mValidBonjourServiceResponse, response);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java493 * The default response for package verification timeout.
1100 Slog.i(TAG, "Received verification response " + verificationId
1795 final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
1797 state.setVerifierResponse(response.callerUid, response.code);
1809 response.code, state.getInstallArgs().getUser());
1851 final IntentFilterVerificationResponse response =
1854 state.setVerifierResponse(response.callerUid, response.code);
1859 + " is settings verifier response wit
[all...]
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java4891 final IBinder response) {
4907 sendPrivateKeyAliasResponse(null, response);
4916 intent.putExtra(DeviceAdminReceiver.EXTRA_CHOOSE_PRIVATE_KEY_RESPONSE, response);
4925 sendPrivateKeyAliasResponse(chosenAlias, response);
4936 // Send the response. It's OK to do this from the main thread because IKeyChainAliasCallback
4890 choosePrivateKeyAlias(final int uid, final Uri uri, final String alias, final IBinder response) argument

Completed in 478 milliseconds

12345678