Searched refs:permissions (Results 251 - 275 of 314) sorted by relevance

<<111213

/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/wifi/tests/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/minikin/libs/minikin/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/minikin/tests/unittest/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/native/opengl/tests/hwc/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/support/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DDpmMockContext.java13 * See the License for the specific language governing permissions and
313 /** TODO: Migrate everything to use {@link #permissions} to avoid confusion. */
318 public final List<String> permissions = callerPermissions; field in class:DpmMockContext
618 return; // Assume system has all permissions.
621 List<String> permissions = binder.callingPermissions.get(binder.getCallingUid());
622 if (permissions == null) {
625 permissions = callerPermissions;
629 if (!permissions.contains(permission)) {
H A DDpmTestBase.java13 * See the License for the specific language governing permissions and
82 * appropriate calling UID and calling permissions fields already set up.
93 caller.permissions);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DSearchFragment.java11 * or implied. See the License for the specific language governing permissions and limitations under
241 public void onRequestPermissionsResult(int requestCode, String[] permissions, argument
243 if (requestCode == AUDIO_PERMISSION_REQUEST_CODE && permissions.length > 0) {
244 if (permissions[0].equals(Manifest.permission.RECORD_AUDIO)
H A DSearchSupportFragment.java14 * or implied. See the License for the specific language governing permissions and limitations under
244 public void onRequestPermissionsResult(int requestCode, String[] permissions, argument
246 if (requestCode == AUDIO_PERMISSION_REQUEST_CODE && permissions.length > 0) {
247 if (permissions[0].equals(Manifest.permission.RECORD_AUDIO)
/frameworks/base/data/fonts/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/opt/net/wifi/libwifi_hal/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/opt/photoviewer/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_mid_hor.s12 ; See the License for the specific language governing permissions and
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdFillRow7.s13 ; See the License for the specific language governing permissions and
H A Dh264bsdWriteMacroblock.s13 ; See the License for the specific language governing permissions and
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdFillRow7.S13 @ See the License for the specific language governing permissions and
H A Dh264bsdWriteMacroblock.S13 @ See the License for the specific language governing permissions and
/frameworks/base/core/java/android/app/
H A DFragmentHostCallback.java13 * See the License for the specific language governing permissions and
179 * Requests permissions from the given fragment.
183 @NonNull String[] permissions, int requestCode) {
182 onRequestPermissionsFromFragment(@onNull Fragment fragment, @NonNull String[] permissions, int requestCode) argument
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDocumentsProvider.java13 * See the License for the specific language governing permissions and
123 final List<UriPermission> permissions =
125 final Uri[] uris = new Uri[permissions.size()];
126 for (int i = 0; i < permissions.size(); i++) {
127 uris[i] = permissions.get(i).getUri();
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentHostCallback.java13 * See the License for the specific language governing permissions and
153 * Requests permissions from the given fragment.
157 @NonNull String[] permissions, int requestCode) {
156 onRequestPermissionsFromFragment(@onNull Fragment fragment, @NonNull String[] permissions, int requestCode) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java13 * See the License for the specific language governing permissions and
549 List<String> permissions = null;
560 if (permissions == null) {
561 permissions = new ArrayList<>();
563 permissions.add(permission);
567 if (permissions == null) {
571 String[] permissionsArray = new String[permissions.size()];
572 permissions.toArray(permissionsArray);
620 // Only system components can circumvent runtime permissions when installing.
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java13 * See the License for the specific language governing permissions and
234 * user actively declined requested permissions, or the session was
400 * Return details for a specific session. No special permissions are
621 * Register to watch for session lifecycle events. No special permissions
635 * Register to watch for session lifecycle events. No special permissions
1088 * Sets which runtime permissions to be granted to the package at installation.
1090 * @param permissions The permissions to grant or null to grant all runtime
1091 * permissions.
1097 public void setGrantedRuntimePermissions(String[] permissions) { argument
[all...]
/frameworks/base/packages/SystemUI/tests/
H A DAndroid.mk12 # See the License for the specific language governing permissions and

Completed in 559 milliseconds

<<111213