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

  /frameworks/base/core/java/android/content/
ContentProvider.java 422 final String componentPerm = getReadPermission();
423 if (componentPerm != null) {
424 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
427 missingPerm = componentPerm;
433 boolean allowDefaultRead = (componentPerm == null);
484 final String componentPerm = getWritePermission();
485 if (componentPerm != null) {
486 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
489 missingPerm = componentPerm;
495 boolean allowDefaultWrite = (componentPerm == null)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityStackSupervisor.java     [all...]

Completed in 53 milliseconds