HomeSort by relevance Sort by last modified time
    Searched full:protectionlevel (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/core/java/android/content/pm/
PermissionInfo.java 30 * A normal application value for {@link #protectionLevel}, corresponding
32 * {@link android.R.attr#protectionLevel}.
37 * Dangerous value for {@link #protectionLevel}, corresponding
39 * {@link android.R.attr#protectionLevel}.
44 * System-level value for {@link #protectionLevel}, corresponding
46 * {@link android.R.attr#protectionLevel}.
51 * System-level value for {@link #protectionLevel}, corresponding
53 * {@link android.R.attr#protectionLevel}.
80 * {@link android.R.attr#protectionLevel}. Values may be
84 public int protectionLevel;
    [all...]
PackageParser.java     [all...]
  /frameworks/base/core/res/
AndroidManifest.xml 141 android:protectionLevel="dangerous"
150 android:protectionLevel="signatureOrSystem"
159 android:protectionLevel="dangerous"
180 android:protectionLevel="dangerous"
188 android:protectionLevel="dangerous"
197 android:protectionLevel="signatureOrSystem"
204 android:protectionLevel="dangerous"
211 android:protectionLevel="dangerous"
218 android:protectionLevel="dangerous"
238 android:protectionLevel="dangerous
    [all...]
  /frameworks/base/core/tests/coretests/apks/install_decl_perm/
AndroidManifest.xml 21 android:protectionLevel="normal"
26 android:protectionLevel="dangerous"
31 android:protectionLevel="signature"
  /frameworks/base/services/java/com/android/server/pm/
BasePermission.java 37 int protectionLevel;
52 protectionLevel = PermissionInfo.PROTECTION_SIGNATURE;
PackageManagerService.java     [all...]
Settings.java     [all...]
  /packages/providers/DrmProvider/
AndroidManifest.xml 9 android:protectionLevel="signature" />
14 android:protectionLevel="normal" />
  /packages/providers/DownloadProvider/
AndroidManifest.xml 10 android:protectionLevel="signatureOrSystem" />
16 android:protectionLevel="signatureOrSystem" />
22 android:protectionLevel="signature" />
28 android:protectionLevel="signatureOrSystem"/>
35 android:protectionLevel="normal"/>
43 android:protectionLevel="signature"/>
  /cts/tests/tests/content/src/android/content/pm/cts/
PermissionInfoTest.java 99 assertEquals(expected.protectionLevel, actual.protectionLevel);
  /frameworks/base/packages/WAPPushManager/
AndroidManifest.xml 24 android:protectionLevel="signatureOrSystem" />
  /packages/apps/Launcher2/
AndroidManifest.xml 29 android:protectionLevel="normal"
35 android:protectionLevel="normal"
41 android:protectionLevel="normal"
47 android:protectionLevel="normal"
  /development/apps/Development/src/com/android/development/
PermissionDetails.java 203 setProtectionLevel(R.id.perm_protection, pInfo.protectionLevel);
239 private void setProtectionLevel(int viewId, int protectionLevel) {
241 if (protectionLevel == PermissionInfo.PROTECTION_NORMAL) {
243 } else if (protectionLevel == PermissionInfo.PROTECTION_DANGEROUS) {
245 } else if (protectionLevel == PermissionInfo.PROTECTION_SIGNATURE) {
247 } else if (protectionLevel == PermissionInfo.PROTECTION_SIGNATURE_OR_SYSTEM) {
  /cts/tests/appsecurity-tests/test-apps/PermissionDeclareApp/
AndroidManifest.xml 24 android:protectionLevel="signature" />
29 android:protectionLevel="signature" />
  /cts/tests/appsecurity-tests/test-apps/UsePermissionDiffCert/
AndroidManifest.xml 27 android:protectionLevel="signature" />
  /frameworks/base/docs/html/guide/topics/manifest/
permission-element.jd 13 android:<a href="#plevel">protectionLevel</a>=["normal" | "dangerous" |
73 <dt><a name="plevel"></a>{@code android:protectionLevel}</dt>
  /frameworks/base/core/java/android/widget/
AppSecurityPermissions.java 377 if(pInfo.protectionLevel == PermissionInfo.PROTECTION_DANGEROUS ||
378 pInfo.protectionLevel == PermissionInfo.PROTECTION_NORMAL) {
460 (pInfo.protectionLevel == PermissionInfo.PROTECTION_DANGEROUS) ?
  /packages/apps/Bluetooth/
AndroidManifest_test.xml 9 android:protectionLevel="signature" />
AndroidManifest.xml 12 android:protectionLevel="signature" />
  /packages/providers/ContactsProvider/
AndroidManifest.xml 11 android:protectionLevel="signature"
  /packages/apps/Email/
AndroidManifest.xml 68 android:protectionLevel="dangerous"
80 android:protectionLevel="signature"
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 585 if (pi.protectionLevel < startProtectionLevel
586 || pi.protectionLevel > endProtectionLevel) {
617 switch(pi.protectionLevel) {
631 System.out.println(prefix + " protectionLevel:" + protLevel);
    [all...]
  /frameworks/base/docs/html/guide/topics/security/
security.jd 185 android:protectionLevel=&quot;dangerous&quot; /&gt;
190 &lt;protectionLevel&gt;} attribute is required, telling the system how the
  /packages/apps/Browser/
AndroidManifest.xml 25 android:protectionLevel="signatureOrSystem" />
  /frameworks/base/core/res/res/values/
attrs_manifest.xml 149 permanent protectionLevel. If you are creating a custom permission in an
150 application, you can define a protectionLevel attribute with one of the
151 values listed below. If no protectionLevel is defined for a custom
153 <attr name="protectionLevel">
    [all...]

Completed in 701 milliseconds

1 2