Searched defs:permissions (Results 1 - 25 of 63) sorted by relevance

123

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/permissions/
H A DPermissionsUtil.java13 * See the License for the specific language governing permissions and
17 package com.android.inputmethod.latin.permissions;
31 * Utility class for permissions.
36 * Returns the list of permissions not granted from the given list of permissions.
38 * @param permissions list of permissions to check.
39 * @return the list of permissions that do not have permission to use.
42 String... permissions) {
44 for (String permission : permissions) {
41 getDeniedPermissions(Context context, String... permissions) argument
59 requestPermissions(Activity activity, int requestCode, String[] permissions) argument
79 checkAllPermissionsGranted(Context context, String... permissions) argument
[all...]
H A DPermissionsActivity.java13 * See the License for the specific language governing permissions and
17 package com.android.inputmethod.latin.permissions;
28 * An activity to help request permissions. It's used when no other activity is available, e.g. in
29 * InputMethodService. This activity assumes that all permissions are not granted yet.
35 * Key to retrieve requested permissions from the intent.
49 * Starts a PermissionsActivity and checks/requests supplied permissions.
83 // Assuming that all supplied permissions are not granted yet, so that we don't need to
91 int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
94 requestCode, permissions, grantResults);
90 onRequestPermissionsResult( int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) argument
H A DPermissionsManager.java13 * See the License for the specific language governing permissions and
17 package com.android.inputmethod.latin.permissions;
70 // otherwise request the permissions.
84 int requestCode, String[] permissions, int[] grantResults) {
83 onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults) argument
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
H A DPermissionsActivity.java13 * See the License for the specific language governing permissions and
37 public void onRequestPermissionsResult(int request, String[] permissions, int[] results) { argument
38 // The media browser displays an error anyway if it doesn't have the required permissions
40 // for the purpose of trampolining the permissions request anyway.
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DRequestDesiredPermissionsActivity.java13 * See the License for the specific language governing permissions and
29 * Requests permissions that are not absolutely required by the calling Activity;
30 * if permissions are denied, the calling Activity is still restarted.
32 * Activities that have a set of permissions that must be granted in order for the Activity to
48 * to prompt user for these permissions. After that calling activity is restarted
65 final List<String> permissions = new ArrayList<>();
67 permissions.add(permission.READ_CALENDAR);
71 permissions.add(permission.READ_SMS);
73 sDesiredPermissions = permissions.toArray(new String[0]);
80 int requestCode, String permissions[], in
79 onRequestPermissionsResult( int requestCode, String permissions[], int[] grantResults) argument
[all...]
H A DRequestPermissionsActivity.java13 * See the License for the specific language governing permissions and
33 * Activity that requests permissions needed for activities exported from Contacts.
47 * Method to check if the required permissions are given.
61 final List<String> permissions = new ArrayList<>();
63 permissions.add(permission.GET_ACCOUNTS);
64 permissions.add(permission.READ_CONTACTS);
65 permissions.add(permission.WRITE_CONTACTS);
72 permissions.add(permission.CALL_PHONE);
73 permissions.add(permission.READ_CALL_LOG);
74 permissions
82 onRequestPermissionsResult( int requestCode, String permissions[], int[] grantResults) argument
[all...]
H A DRequestPermissionsActivityBase.java13 * See the License for the specific language governing permissions and
44 /** Whether the permissions activity was already started. */
53 * @return list of permissions that are needed in order for {@link #PREVIOUS_ACTIVITY_INTENT}
60 /** If true then start the target activity "for result" after permissions are granted. */
71 // permissions) so this is important to track.
78 * If any permissions the Contacts app needs are missing, open an Activity
79 * to prompt the user for these permissions. Moreover, finish the current activity.
110 protected boolean isAllGranted(String permissions[], int[] grantResult) { argument
111 for (int i = 0; i < permissions.length; i++) {
113 && isPermissionRequired(permissions[
147 hasPermissions(Context context, String[] permissions) argument
[all...]
/packages/apps/Music/src/com/android/music/
H A DMusicBrowserActivity.java13 * See the License for the specific language governing permissions and
94 int requestCode, String permissions[], int[] grantResults) {
93 onRequestPermissionsResult( int requestCode, String permissions[], int[] grantResults) argument
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppWithAdminGrantedPermissionsCounter.java12 * permissions and limitations under the License.
28 * Counts installed apps across all users that have been granted one or more specific permissions by
37 public AppWithAdminGrantedPermissionsCounter(Context context, String[] permissions, argument
41 mPermissions = permissions;
52 public static boolean includeInCount(String[] permissions, argument
56 // The app uses run-time permissions. Check whether one or more of the permissions were
58 for (final String permission : permissions) {
67 // The app uses install-time permissions. Check whether the app requested one or more of the
68 // permissions an
[all...]
H A DAppWithAdminGrantedPermissionsLister.java13 * See the License for the specific language governing permissions and
24 * Lists installed apps across all users that have been granted one or more specific permissions by
32 public AppWithAdminGrantedPermissionsLister(String[] permissions, argument
36 mPermissions = permissions;
H A DIPackageManagerWrapper.java13 * See the License for the specific language governing permissions and
74 String[] permissions, int flags, int userId) throws RemoteException;
73 getPackagesHoldingPermissions( String[] permissions, int flags, int userId) argument
H A DAppPermissionsPreferenceController.java12 * permissions and limitations under the License.
75 The 3 permissions are the first three from the list which any app has granted:
79 final Set<String> permissions = getAllPermissionsInGroups();
80 Set<String> grantedPermissionGroups = getGrantedPermissionGroups(permissions);
95 private Set<String> getGrantedPermissionGroups(Set<String> permissions) { argument
100 if (installedPackage.permissions == null) {
103 for (PermissionInfo permissionInfo : installedPackage.permissions) {
104 if (permissions.contains(permissionInfo.name)
126 Log.e(TAG, "Error getting permissions label.", e);
135 final List<PermissionInfo> permissions
[all...]
H A DApplicationFeatureProvider.java13 * See the License for the specific language governing permissions and
57 * managed profiles that have been granted one or more of the given permissions by the admin.
59 * @param permissions Only consider apps that have been granted one or more of these
60 * permissions by the admin, either at run-time or install-time
64 void calculateNumberOfAppsWithAdminGrantedPermissions(String[] permissions, boolean async, argument
69 * managed profiles that have been granted one or more of the given permissions by the admin.
71 * @param permissions Only consider apps that have been granted one or more of these
72 * permissions by the admin, either at run-time or install-time
75 void listAppsWithAdminGrantedPermissions(String[] permissions, ListOfAppsCallback callback); argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DSpellCheckerSettingsActivity.java13 * See the License for the specific language governing permissions and
19 import com.android.inputmethod.latin.permissions.PermissionsManager;
57 int requestCode, String[] permissions, int[] grantResults) {
59 requestCode, permissions, grantResults);
56 onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults) argument
/packages/services/Car/TrustAgent/src/com/android/car/trust/
H A DMainActivity.java13 * See the License for the specific language governing permissions and
82 String permissions[], int[] grantResults) {
81 onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) argument
/packages/apps/Settings/src/com/android/settings/enterprise/
H A DAdminGrantedPermissionsPreferenceControllerBase.java13 * permissions and limitations under the License.
37 boolean async, String[] permissions, String permissionGroup) {
39 mPermissions = permissions;
69 // apps that the admin has granted a given permissions takes a bit of time, we always
77 // We block and return synchronously whether the admin has granted the given permissions to
36 AdminGrantedPermissionsPreferenceControllerBase(Context context, Lifecycle lifecycle, boolean async, String[] permissions, String permissionGroup) argument
H A DApplicationListFragment.java13 * See the License for the specific language governing permissions and
63 public AdminGrantedPermission(String[] permissions) { argument
64 mPermissions = permissions;
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DGattDbElement.java13 * See the License for the specific language governing permissions and
53 public int permissions; field in class:GattDbElement
69 public static GattDbElement createCharacteristic(UUID uuid, int properties, int permissions) { argument
74 el.permissions = permissions;
78 public static GattDbElement createDescriptor(UUID uuid, int permissions) { argument
82 el.permissions = permissions;
/packages/apps/Car/Stream/src/com/android/car/stream/
H A DPermissionsActivity.java13 * See the License for the specific language governing permissions and
34 * A trampoline activity that checks if all permissions necessary are granted.
85 public void onRequestPermissionsResult(int requestCode, String[] permissions, argument
87 super.onRequestPermissionsResult(requestCode, permissions, grantResults);
92 for (int i = 0; i < permissions.length; i++) {
93 String permission = permissions[i];
135 private boolean arePermissionGranted(String[] permissions) { argument
136 for (String permission : permissions) {
/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DRegularSearchFragment.java13 * See the License for the specific language governing permissions and
125 "Requesting permissions: " + Arrays.toString(deniedPermissions));
133 int requestCode, String[] permissions, int[] grantResults) {
139 PermissionsUtil.notifyPermissionGranted(getActivity(), permissions[0]);
132 onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults) argument
H A DSmartDialSearchFragment.java13 * See the License for the specific language governing permissions and
138 "Requesting permissions: " + Arrays.toString(deniedPermissions));
146 int requestCode, String[] permissions, int[] grantResults) {
145 onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults) argument
/packages/apps/Dialer/java/com/android/dialer/postcall/
H A DPostCallActivity.java13 * See the License for the specific language governing permissions and
124 int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
125 if (permissions.length > 0 && permissions[0].equals(permission.SEND_SMS)) {
126 PermissionsUtil.permissionRequested(this, permissions[0]);
123 onRequestPermissionsResult( int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) argument
/packages/apps/Dialer/java/com/android/dialer/shortcuts/
H A DCallContactActivity.java13 * See the License for the specific language governing permissions and
66 * Attempt to make a call, finishing the activity if the required permissions are already granted.
67 * If the required permissions are not already granted, the activity is not finished so that the
128 int requestCode, String[] permissions, int[] grantResults) {
127 onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults) argument
/packages/apps/HTMLViewer/src/com/android/htmlviewer/
H A DHTMLViewerActivity.java13 * See the License for the specific language governing permissions and
107 String permissions[], int[] grantResults) {
109 assert permissions.length == 1;
110 assert Manifest.permission.READ_EXTERNAL_STORAGE.equals(permissions[0]);
106 onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) argument
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DPermissionCheckActivity.java13 * See the License for the specific language governing permissions and
35 * Activity to check if the user has required permissions. If not, it will try to prompt the user
36 * to grant permissions. However, the OS may not actually prompt the user if the user had
37 * previously checked the "Never ask again" checkbox while denying the required permissions.
105 final int requestCode, final String permissions[], final int[] grantResults) {
107 // We do not use grantResults as some of the granted permissions might have been
108 // revoked while the permissions dialog box was being shown for the missing permissions.
104 onRequestPermissionsResult( final int requestCode, final String permissions[], final int[] grantResults) argument

Completed in 575 milliseconds

123