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 331 final String componentPerm = getReadPermission();
332 if (componentPerm != null) {
333 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
336 missingPerm = componentPerm;
342 boolean allowDefaultRead = (componentPerm == null);
400 final String componentPerm = getWritePermission();
401 if (componentPerm != null) {
402 if (context.checkPermission(componentPerm, pid, uid) == PERMISSION_GRANTED) {
405 missingPerm = componentPerm;
411 boolean allowDefaultWrite = (componentPerm == null)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java     [all...]

Completed in 226 milliseconds