Home | History | Annotate | Download | only in pm

Lines Matching defs:protectionLevel

36      * A normal application value for {@link #protectionLevel}, corresponding
38 * {@link android.R.attr#protectionLevel}.
43 * Dangerous value for {@link #protectionLevel}, corresponding
45 * {@link android.R.attr#protectionLevel}.
50 * System-level value for {@link #protectionLevel}, corresponding
52 * {@link android.R.attr#protectionLevel}.
74 * Additional flag for {@link #protectionLevel}, corresponding
76 * {@link android.R.attr#protectionLevel}.
89 * Additional flag for {@link #protectionLevel}, corresponding
91 * {@link android.R.attr#protectionLevel}.
96 * Additional flag for {@link #protectionLevel}, corresponding
98 * {@link android.R.attr#protectionLevel}.
103 * Additional flag for {@link #protectionLevel}, corresponding
105 * {@link android.R.attr#protectionLevel}.
110 * Additional flag for {@link #protectionLevel}, corresponding
112 * {@link android.R.attr#protectionLevel}.
117 * Additional flag for {@link #protectionLevel}, corresponding
119 * {@link android.R.attr#protectionLevel}.
124 * Additional flag for {@link #protectionLevel}, corresponding
126 * {@link android.R.attr#protectionLevel}.
131 * Additional flag for {@link #protectionLevel}, corresponding
133 * {@link android.R.attr#protectionLevel}.
138 * Additional flag for {@link #protectionLevel}, corresponding
140 * {@link android.R.attr#protectionLevel}.
145 * Additional flag for {@link #protectionLevel}, corresponding
147 * {@link android.R.attr#protectionLevel}.
152 * Additional flag for {@link #protectionLevel}, corresponding
154 * {@link android.R.attr#protectionLevel}.
162 * Additional flag for {${link #protectionLevel}, corresponding
164 * {@link android.R.attr#protectionLevel}.
172 * Additional flag for {@link #protectionLevel}, corresponding
174 * {@link android.R.attr#protectionLevel}.
203 * Mask for {@link #protectionLevel}: the basic protection type.
211 * Mask for {@link #protectionLevel}: additional flag bits.
220 * {@link android.R.attr#protectionLevel}. Consists of
232 * Flags are listed under {@link android.R.attr#protectionLevel}.
237 public int protectionLevel;
373 protectionLevel = orig.protectionLevel;
410 return protectionLevel & PROTECTION_MASK_BASE;
414 * Return the additional flags in {@link #protectionLevel}.
418 return protectionLevel & ~PROTECTION_MASK_BASE;
436 dest.writeInt(protectionLevel);
458 return (protectionLevel & PermissionInfo.PROTECTION_FLAG_APPOP) != 0;
475 protectionLevel = source.readInt();