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 481 final String componentPerm = getReadPermission();
482 if (componentPerm != null) {
483 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
486 missingPerm = componentPerm;
492 boolean allowDefaultRead = (componentPerm == null);
543 final String componentPerm = getWritePermission();
544 if (componentPerm != null) {
545 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
548 missingPerm = componentPerm;
554 boolean allowDefaultWrite = (componentPerm == null)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java     [all...]

Completed in 408 milliseconds