HomeSort by relevance Sort by last modified time
    Searched refs:callingPkg (Results 1 - 21 of 21) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
IMms.aidl 32 * @param callingPkg the package name of the calling app
42 void sendMessage(long subId, String callingPkg, in Uri contentUri,
49 * @param callingPkg the package name of the calling app
59 void downloadMessage(long subId, String callingPkg, String locationUrl,
107 * @param callingPkg the calling app's package name
116 Uri importTextMessage(String callingPkg, String address, int type, String text,
122 * @param callingPkg the package name of the calling app
130 Uri importMultimediaMessage(String callingPkg, in Uri contentUri, String messageId,
136 * @param callingPkg the package name of the calling app
140 boolean deleteStoredMessage(String callingPkg, in Uri messageUri)
    [all...]
ISms.aidl 43 List<SmsRawData> getAllMessagesFromIccEf(String callingPkg);
50 List<SmsRawData> getAllMessagesFromIccEfForSubscriber(in long subId, String callingPkg);
63 boolean updateMessageOnIccEf(String callingPkg, int messageIndex, int newStatus,
78 boolean updateMessageOnIccEfForSubscriber(in long subId, String callingPkg,
90 boolean copyMessageToIccEf(String callingPkg, int status, in byte[] pdu, in byte[] smsc);
102 boolean copyMessageToIccEfForSubscriber(in long subId, String callingPkg, int status,
128 void sendData(String callingPkg, in String destAddr, in String scAddr, in int destPort,
155 void sendDataForSubscriber(long subId, String callingPkg, in String destAddr,
182 void sendText(String callingPkg, in String destAddr, in String scAddr, in String text,
209 void sendTextForSubscriber(in long subId, String callingPkg, in String destAddr
    [all...]
ITelephony.aidl 330 List<NeighboringCellInfo> getNeighboringCellInfo(String callingPkg);
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 222 public void sendMessage(long subId, String callingPkg, Uri contentUri,
227 callingPkg) != AppOpsManager.MODE_ALLOWED) {
230 getServiceGuarded().sendMessage(subId, callingPkg, contentUri, locationUrl,
235 public void downloadMessage(long subId, String callingPkg, String locationUrl,
241 callingPkg) != AppOpsManager.MODE_ALLOWED) {
244 getServiceGuarded().downloadMessage(subId, callingPkg, locationUrl, contentUri,
267 public Uri importTextMessage(String callingPkg, String address, int type, String text,
271 callingPkg) != AppOpsManager.MODE_ALLOWED) {
277 callingPkg, address, type, text, timestampMillis, seen, read);
281 public Uri importMultimediaMessage(String callingPkg, Uri contentUri
    [all...]