Lines Matching defs:callingPkg

126         public void sendMessage(int subId, String callingPkg, Uri contentUri, String locationUrl,
132 public void downloadMessage(int subId, String callingPkg, String locationUrl,
144 public Uri importTextMessage(String callingPkg, String address, int type, String text,
150 public Uri importMultimediaMessage(String callingPkg, Uri contentUri, String messageId,
156 public boolean deleteStoredMessage(String callingPkg, Uri messageUri)
162 public boolean deleteStoredConversation(String callingPkg, long conversationId)
168 public boolean updateStoredMessageStatus(String callingPkg, Uri messageUri,
174 public boolean archiveStoredConversation(String callingPkg, long conversationId,
180 public Uri addTextMessageDraft(String callingPkg, String address, String text)
186 public Uri addMultimediaMessageDraft(String callingPkg, Uri contentUri)
192 public void sendStoredMessage(int subId, String callingPkg, Uri messageUri,
198 public void setAutoPersisting(String callingPkg, boolean enabled) throws RemoteException {
332 public void sendMessage(int subId, String callingPkg, Uri contentUri,
335 Slog.d(TAG, "sendMessage() by " + callingPkg);
338 callingPkg) != AppOpsManager.MODE_ALLOWED) {
344 getServiceGuarded().sendMessage(subId, callingPkg, contentUri, locationUrl,
349 public void downloadMessage(int subId, String callingPkg, String locationUrl,
352 Slog.d(TAG, "downloadMessage() by " + callingPkg);
356 callingPkg) != AppOpsManager.MODE_ALLOWED) {
363 getServiceGuarded().downloadMessage(subId, callingPkg, locationUrl, contentUri,
374 public Uri importTextMessage(String callingPkg, String address, int type, String text,
377 callingPkg) != AppOpsManager.MODE_ALLOWED) {
383 callingPkg, address, type, text, timestampMillis, seen, read);
387 public Uri importMultimediaMessage(String callingPkg, Uri contentUri,
391 callingPkg) != AppOpsManager.MODE_ALLOWED) {
397 callingPkg, contentUri, messageId, timestampSecs, seen, read);
401 public boolean deleteStoredMessage(String callingPkg, Uri messageUri)
404 callingPkg) != AppOpsManager.MODE_ALLOWED) {
407 return getServiceGuarded().deleteStoredMessage(callingPkg, messageUri);
411 public boolean deleteStoredConversation(String callingPkg, long conversationId)
414 callingPkg) != AppOpsManager.MODE_ALLOWED) {
417 return getServiceGuarded().deleteStoredConversation(callingPkg, conversationId);
421 public boolean updateStoredMessageStatus(String callingPkg, Uri messageUri,
424 callingPkg) != AppOpsManager.MODE_ALLOWED) {
428 .updateStoredMessageStatus(callingPkg, messageUri, statusValues);
432 public boolean archiveStoredConversation(String callingPkg, long conversationId,
435 callingPkg) != AppOpsManager.MODE_ALLOWED) {
439 .archiveStoredConversation(callingPkg, conversationId, archived);
443 public Uri addTextMessageDraft(String callingPkg, String address, String text)
446 callingPkg) != AppOpsManager.MODE_ALLOWED) {
451 return getServiceGuarded().addTextMessageDraft(callingPkg, address, text);
455 public Uri addMultimediaMessageDraft(String callingPkg, Uri contentUri)
458 callingPkg) != AppOpsManager.MODE_ALLOWED) {
463 return getServiceGuarded().addMultimediaMessageDraft(callingPkg, contentUri);
467 public void sendStoredMessage(int subId, String callingPkg, Uri messageUri,
470 callingPkg) != AppOpsManager.MODE_ALLOWED) {
473 getServiceGuarded().sendStoredMessage(subId, callingPkg, messageUri, configOverrides,
478 public void setAutoPersisting(String callingPkg, boolean enabled) throws RemoteException {
480 callingPkg) != AppOpsManager.MODE_ALLOWED) {
483 getServiceGuarded().setAutoPersisting(callingPkg, enabled);