Lines Matching defs:result

94      * @param result sent when operation completes
97 static RILRequest obtain(int request, Message result) {
117 rr.mResult = result;
120 if (result != null && result.getTarget() == null) {
655 public void getVoiceRadioTechnology(Message result) {
656 RILRequest rr = RILRequest.obtain(RIL_REQUEST_VOICE_RADIO_TECH, result);
678 getIccCardStatus(Message result) {
681 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_SIM_STATUS, result);
689 supplyIccPin(String pin, Message result) {
690 supplyIccPinForApp(pin, null, result);
694 supplyIccPinForApp(String pin, String aid, Message result) {
697 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_SIM_PIN, result);
709 supplyIccPuk(String puk, String newPin, Message result) {
710 supplyIccPukForApp(puk, newPin, null, result);
714 supplyIccPukForApp(String puk, String newPin, String aid, Message result) {
717 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_SIM_PUK, result);
730 supplyIccPin2(String pin, Message result) {
731 supplyIccPin2ForApp(pin, null, result);
735 supplyIccPin2ForApp(String pin, String aid, Message result) {
738 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_SIM_PIN2, result);
750 supplyIccPuk2(String puk2, String newPin2, Message result) {
751 supplyIccPuk2ForApp(puk2, newPin2, null, result);
755 supplyIccPuk2ForApp(String puk, String newPin2, String aid, Message result) {
758 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_SIM_PUK2, result);
771 changeIccPin(String oldPin, String newPin, Message result) {
772 changeIccPinForApp(oldPin, newPin, null, result);
776 changeIccPinForApp(String oldPin, String newPin, String aid, Message result) {
779 RILRequest rr = RILRequest.obtain(RIL_REQUEST_CHANGE_SIM_PIN, result);
792 changeIccPin2(String oldPin2, String newPin2, Message result) {
793 changeIccPin2ForApp(oldPin2, newPin2, null, result);
797 changeIccPin2ForApp(String oldPin2, String newPin2, String aid, Message result) {
800 RILRequest rr = RILRequest.obtain(RIL_REQUEST_CHANGE_SIM_PIN2, result);
813 changeBarringPassword(String facility, String oldPwd, String newPwd, Message result) {
814 RILRequest rr = RILRequest.obtain(RIL_REQUEST_CHANGE_BARRING_PASSWORD, result);
827 supplyNetworkDepersonalization(String netpin, Message result) {
828 RILRequest rr = RILRequest.obtain(RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION, result);
839 getCurrentCalls (Message result) {
840 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_CURRENT_CALLS, result);
848 getPDPContextList(Message result) {
849 getDataCallList(result);
853 getDataCallList(Message result) {
854 RILRequest rr = RILRequest.obtain(RIL_REQUEST_DATA_CALL_LIST, result);
862 dial (String address, int clirMode, Message result) {
863 dial(address, clirMode, null, result);
867 dial(String address, int clirMode, UUSInfo uusInfo, Message result) {
868 RILRequest rr = RILRequest.obtain(RIL_REQUEST_DIAL, result);
889 getIMSI(Message result) {
890 getIMSIForApp(null, result);
894 getIMSIForApp(String aid, Message result) {
895 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_IMSI, result);
908 getIMEI(Message result) {
909 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_IMEI, result);
917 getIMEISV(Message result) {
918 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_IMEISV, result);
927 hangupConnection (int gsmIndex, Message result) {
930 RILRequest rr = RILRequest.obtain(RIL_REQUEST_HANGUP, result);
942 hangupWaitingOrBackground (Message result) {
944 result);
952 hangupForegroundResumeBackground (Message result) {
956 result);
963 switchWaitingOrHoldingAndActive (Message result) {
967 result);
974 conference (Message result) {
976 = RILRequest.obtain(RIL_REQUEST_CONFERENCE, result);
984 public void setPreferredVoicePrivacy(boolean enable, Message result) {
986 result);
994 public void getPreferredVoicePrivacy(Message result) {
996 result);
1001 separateConnection (int gsmIndex, Message result) {
1003 = RILRequest.obtain(RIL_REQUEST_SEPARATE_CONNECTION, result);
1015 acceptCall (Message result) {
1017 = RILRequest.obtain(RIL_REQUEST_ANSWER, result);
1025 rejectCall (Message result) {
1027 = RILRequest.obtain(RIL_REQUEST_UDUB, result);
1035 explicitCallTransfer (Message result) {
1037 = RILRequest.obtain(RIL_REQUEST_EXPLICIT_CALL_TRANSFER, result);
1045 getLastCallFailCause (Message result) {
1047 = RILRequest.obtain(RIL_REQUEST_LAST_CALL_FAIL_CAUSE, result);
1058 getLastPdpFailCause (Message result) {
1059 getLastDataCallFailCause (result);
1066 getLastDataCallFailCause (Message result) {
1068 = RILRequest.obtain(RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE, result);
1100 getSignalStrength (Message result) {
1102 = RILRequest.obtain(RIL_REQUEST_SIGNAL_STRENGTH, result);
1110 getVoiceRegistrationState (Message result) {
1112 = RILRequest.obtain(RIL_REQUEST_VOICE_REGISTRATION_STATE, result);
1120 getDataRegistrationState (Message result) {
1122 = RILRequest.obtain(RIL_REQUEST_DATA_REGISTRATION_STATE, result);
1130 getOperator(Message result) {
1132 = RILRequest.obtain(RIL_REQUEST_OPERATOR, result);
1140 sendDtmf(char c, Message result) {
1142 = RILRequest.obtain(RIL_REQUEST_DTMF, result);
1152 startDtmf(char c, Message result) {
1154 = RILRequest.obtain(RIL_REQUEST_DTMF_START, result);
1164 stopDtmf(Message result) {
1166 = RILRequest.obtain(RIL_REQUEST_DTMF_STOP, result);
1174 sendBurstDtmf(String dtmfString, int on, int off, Message result) {
1175 RILRequest rr = RILRequest.obtain(RIL_REQUEST_CDMA_BURST_DTMF, result);
1189 sendSMS (String smscPDU, String pdu, Message result) {
1191 = RILRequest.obtain(RIL_REQUEST_SEND_SMS, result);
1203 sendCdmaSms(byte[] pdu, Message result) {
1211 = RILRequest.obtain(RIL_REQUEST_CDMA_SEND_SMS, result);
1341 Message result) {
1343 = RILRequest.obtain(RIL_REQUEST_SETUP_DATA_CALL, result);
1364 deactivateDataCall(int cid, int reason, Message result) {
1366 = RILRequest.obtain(RIL_REQUEST_DEACTIVATE_DATA_CALL, result);
1379 setRadioPower(boolean on, Message result) {
1380 RILRequest rr = RILRequest.obtain(RIL_REQUEST_RADIO_POWER, result);
1394 setSuppServiceNotifications(boolean enable, Message result) {
1396 = RILRequest.obtain(RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION, result);
1408 acknowledgeLastIncomingGsmSms(boolean success, int cause, Message result) {
1410 = RILRequest.obtain(RIL_REQUEST_SMS_ACKNOWLEDGE, result);
1423 acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message result) {
1425 = RILRequest.obtain(RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE, result);
1438 acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message result) {
1440 = RILRequest.obtain(RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU, result);
1454 String data, String pin2, Message result) {
1455 iccIOForApp(command, fileid, path, p1, p2, p3, data, pin2, null, result);
1459 String data, String pin2, String aid, Message result) {
1463 = RILRequest.obtain(RIL_REQUEST_SIM_IO, result);
1487 getCLIR(Message result) {
1489 = RILRequest.obtain(RIL_REQUEST_GET_CLIR, result);
1497 setCLIR(int clirMode, Message result) {
1499 = RILRequest.obtain(RIL_REQUEST_SET_CLIR, result);
1735 public void resetRadio(Message result) {
1737 = RILRequest.obtain(RIL_REQUEST_RESET_RADIO, result);
1791 * ((AsyncResult)response.obj).result is an int[] with every
1932 public void getSmscAddress(Message result) {
1933 RILRequest rr = RILRequest.obtain(RIL_REQUEST_GET_SMSC_ADDRESS, result);
1943 public void setSmscAddress(String address, Message result) {
1944 RILRequest rr = RILRequest.obtain(RIL_REQUEST_SET_SMSC_ADDRESS, result);
1957 public void reportSmsMemoryStatus(boolean available, Message result) {
1958 RILRequest rr = RILRequest.obtain(RIL_REQUEST_REPORT_SMS_MEMORY_STATUS, result);
1971 public void reportStkServiceIsRunning(Message result) {
1972 RILRequest rr = RILRequest.obtain(RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING, result);
2603 Object[] result = new Object[2];
2605 result[0] = ret;
2606 result[1] = Long.valueOf(nitzReceiveTime);
2617 .notifyRegistrant(new AsyncResult (null, result, null));
2620 mLastNITZTimeInfo = result;