Home
last modified time | relevance | path

Searched refs:sendRequest (Results 1 – 3 of 3) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DPhoneInterfaceManager.java648 private Object sendRequest(int command, Object argument) { in sendRequest() method in PhoneInterfaceManager
649 return sendRequest(command, argument, null); in sendRequest()
657 private Object sendRequest(int command, Object argument, Integer subId) { in sendRequest() method in PhoneInterfaceManager
826 return (Boolean) sendRequest(CMD_END_CALL, null, new Integer(subId)); in endCallForSubscriber()
839 sendRequest(CMD_ANSWER_RINGING_CALL, null, new Integer(subId)); in answerRingingCallForSubscriber()
1166 return (Boolean) sendRequest(CMD_HANDLE_PIN_MMI, dialString, subId); in handlePinMmiForSubscriber()
1259 cells = (ArrayList<NeighboringCellInfo>) sendRequest( in getNeighboringCellInfo()
1508 Boolean success = (Boolean) sendRequest(CMD_SET_VOICEMAIL_NUMBER, in setVoiceMailNumber()
1656 IccOpenLogicalChannelResponse response = (IccOpenLogicalChannelResponse)sendRequest( in iccOpenLogicalChannel()
1670 Boolean success = (Boolean)sendRequest(CMD_CLOSE_CHANNEL, channel); in iccCloseLogicalChannel()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DFilterDeleteSet.java226 private void sendRequest(int type, Path path, int indexHint) { in sendRequest() method in FilterDeleteSet
240 sendRequest(REQUEST_ADD, path, indexHint); in addDeletion()
244 sendRequest(REQUEST_REMOVE, path, 0 /* unused */); in removeDeletion()
248 sendRequest(REQUEST_CLEAR, null /* unused */ , 0 /* unused */); in clearDeletion()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomService.java535 return (boolean) sendRequest(MSG_END_CALL); in endCall()
641 return (boolean) sendRequest(MSG_IS_TTY_SUPPORTED); in isTtySupported()
650 return (int) sendRequest(MSG_GET_CURRENT_TTY_MODE); in getCurrentTtyMode()
975 private Object sendRequest(int command) { in sendRequest() method in TelecomService