Home
last modified time | relevance | path

Searched refs:access (Results 1 – 25 of 48) sorted by relevance

12

/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
DVehiclePropConfigBuilder.java42 mConfig.access = VehiclePropertyAccess.READ_WRITE; in VehiclePropConfigBuilder()
50 newConfig.access = propConfig.access; in clone()
72 public VehiclePropConfigBuilder setAccess(int access) { in setAccess() argument
73 mConfig.access = access; in setAccess()
DMockedVehicleHal.java278 assertEquals(VehiclePropertyAccess.WRITE, mConfig.access & VehiclePropertyAccess.WRITE); in onPropertySet()
285 assertEquals(VehiclePropertyAccess.READ, mConfig.access & VehiclePropertyAccess.READ); in onPropertyGet()
/packages/apps/Settings/src/com/android/settings/location/
DRecentLocationAccessPreferenceController.java100 final RecentLocationAccesses.Access access = recentLocationAccesses.get(i); in updateRecentApps() local
102 .setIcon(access.icon) in updateRecentApps()
103 .setTitle(access.label) in updateRecentApps()
105 System.currentTimeMillis() - access.accessFinishTime, false, in updateRecentApps()
111 intent.putExtra(Intent.EXTRA_PACKAGE_NAME, access.packageName); in updateRecentApps()
112 intent.putExtra(Intent.EXTRA_USER, access.userHandle); in updateRecentApps()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/location/
DRecentLocationAccessPreferenceController.java100 final RecentLocationAccesses.Access access = recentLocationAccesses.get(i); in updateRecentApps() local
102 .setIcon(access.icon) in updateRecentApps()
103 .setTitle(access.label) in updateRecentApps()
104 .setSummary(access.contentDescription) in updateRecentApps()
109 intent.putExtra(Intent.EXTRA_PACKAGE_NAME, access.packageName); in updateRecentApps()
110 intent.putExtra(Intent.EXTRA_USER, access.userHandle); in updateRecentApps()
/packages/apps/SecureElement/src/com/android/se/security/
DChannelAccess.java95 public void setAccess(ACCESS access, String reason) { in setAccess() argument
96 mAccess = access; in setAccess()
132 public void setNFCEventAccess(ACCESS access) { in setNFCEventAccess() argument
133 mNFCEventAccess = access; in setNFCEventAccess()
165 public void setPrivilegeAccess(ACCESS access) { in setPrivilegeAccess() argument
166 mPrivilegeAccess = access; in setPrivilegeAccess()
/packages/apps/Settings/tests/uitests/assets/
Dsearch_results_list184 Do Not Disturb access;zen_access
185 Do Not Disturb access;zen_access_screen
356 Notification access;notification_access
357 Notification access;notification_access_screen
398 Premium SMS access;premium_sms
399 Premium SMS access;premium_sms_screen
486 Special app access;special_access
487 Special app access;special_app_access_screen
558 Usage access;special_app_usage_access
618 Your access to this device;device_access_category
/packages/services/Car/car_product/sepolicy/private/
Dcarservice_app.te12 # Allow Car Service to register/access itself with ServiceManager
18 # Allow Car Service to access certain system services.
65 # To access /sys/fs/<type>/<partition>/lifetime_write_kbytes
/packages/apps/Settings/src/com/android/settings/applications/specialaccess/zenaccess/
DZenAccessController.java94 public static void setAccess(final Context context, final String pkg, final boolean access) { in setAccess() argument
95 logSpecialPermissionChange(access, pkg, context); in setAccess()
98 mgr.setNotificationPolicyAccessGranted(pkg, access); in setAccess()
DZenAccessDetails.java82 final boolean access = (Boolean) newValue; in updatePreference()
83 if (access) { in updatePreference()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/specialaccess/zenaccess/
DZenAccessController.java94 public static void setAccess(final Context context, final String pkg, final boolean access) { in setAccess() argument
95 logSpecialPermissionChange(access, pkg, context); in setAccess()
98 mgr.setNotificationPolicyAccessGranted(pkg, access); in setAccess()
DZenAccessDetails.java82 final boolean access = (Boolean) newValue; in updatePreference()
83 if (access) { in updatePreference()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java59 private CarPropertyConfig(int access, int areaType, int changeMode, in CarPropertyConfig() argument
63 mAccess = access; in CarPropertyConfig()
563 public Builder<T> setAccess(int access) {
564 mAccess = access;
/packages/services/Car/tests/BugReportApp/
DREADME.md3 A test tool that is intended to show how to access Android Automotive OS bugreporting APIs.
31 To allow AAE BugReport app to access the API, you need to overlay
/packages/services/Car/service/src/com/android/car/hal/
DCarPropertyUtils.java150 .setAccess(p.access) in toCarPropertyConfig()
160 .setAccess(p.access) in toCarPropertyConfig()
DVehicleHal.java406 if ((config.access & VehiclePropertyAccess.READ) == 0 || in isPropertySubscribable()
573 .append(",access:0x").append(toHexString(config.access)) in dumpPropertyConfigsHelp()
/packages/services/Car/evs/sepolicy/
Devs_driver.te23 # Allow the driver to access kobject uevents
Devs_app.te12 # gets access to its own files on disk
/packages/services/Car/tests/CarDeveloperOptions/
DREADME5 pruned over time to contain the minimal set of files necessary to access the developer options from
/packages/apps/Test/connectivity/sl4n/
DREADME.md46 b) To enable RPC access from the command prompt:
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dtutorial.md102 // Using a reference for consecutive access is handy and faster.
124 You may access the elements in array by integer literal, for example, `a[0]`, `a[1]`, `a[2]`.
126 Array is similar to `std::vector`, instead of using indices, you may also use iterator to access al…
138 Similar to array, we can access all object members by iterator:
Dfeatures.md43 …edia.org/wiki/Simple_API_for_XML), RapidJSON provides a event sequential access parser API (`rapid…
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java218 int access = intent.getIntExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in parseIntent() local
223 if (access == BluetoothDevice.CONNECTION_ACCESS_YES) { in parseIntent()
/packages/apps/Messaging/
Dproguard.flags61 # access those fields by reflection (e.g. EmojiMarkup)
/packages/apps/KeyChain/src/com/android/keychain/
DKeyChainService.java666 private void broadcastPermissionChange(int uid, String alias, boolean access) { in broadcastPermissionChange() argument
676 intent.putExtra(KeyChain.EXTRA_KEY_ACCESSIBLE, access); in broadcastPermissionChange()
/packages/services/Car/car-lib/
DAndroid.bp68 // library to access settings from CarSettings

12