/packages/modules/Bluetooth/system/audio_hal_interface/aidl/ |
D | a2dp_provider_info.cc | 130 case CodecId::vendor: { in assignSourceCodecIndex() 131 int vendor_id = codec.id.get<CodecId::vendor>().id; in assignSourceCodecIndex() 132 int codec_id = codec.id.get<CodecId::vendor>().codecId; in assignSourceCodecIndex() 185 case CodecId::vendor: { in assignSinkCodecIndex() 186 int vendor_id = codec.id.get<CodecId::vendor>().id; in assignSinkCodecIndex() 187 int codec_id = codec.id.get<CodecId::vendor>().codecId; in assignSinkCodecIndex() 251 if (codec->id.getTag() == CodecId::vendor && in SourceCodecIndex() 252 codec->id.get<CodecId::vendor>().id == (int)vendor_id && in SourceCodecIndex() 253 codec->id.get<CodecId::vendor>().codecId == codec_id && in SourceCodecIndex() 298 if (codec->id.getTag() == CodecId::vendor && in SinkCodecIndex() [all …]
|
/packages/modules/Virtualization/microdroid/ |
D | README.md | 143 ## Running Microdroid with vendor image 145 With using `vm` tool, execute the following commands to launch a VM with vendor 150 --vendor $VENDOR_IMAGE 153 ### Verification of vendor image 155 Since vendor image of Microdroid is not part of `com.android.virt` APEX, the 156 verification process of vendor partition is different from others. 166 Fixed path in VM for vendor hashtree digest is written in [fstab.microdroid]. 167 During first stage init of VM, [dm-verity] is set up based on vendor hashtree 170 For non-pVM, virtualizationmanager creates [DTBO] containing vendor hashtree 171 digest, and passes to the VM via crosvm option. The vendor hashtree digest is [all …]
|
D | fstab.microdroid | 2 # This is a temporary solution to unblock other devs that depend on /vendor partition in Microdroid 3 # The /vendor partition will only be mounted if the kernel cmdline contains 5 /dev/block/by-name/microdroid-vendor /vendor ext4 noatime,ro,errors=panic wait,first_stage_mount,av…
|
/packages/modules/NeuralNetworks/extensions/ |
D | README.md | 3 Neural Networks API (NNAPI) vendor extensions, introduced in Android 10, are 4 collections of vendor-defined operations and data types. On devices running NN 6 supporting corresponding vendor extensions. Vendor extensions don't modify the 16 native binaries on the `/product`, `/vendor`, `/odm`, and `/data` partitions. 17 Apps and native binaries located on the `/system` partition can't use vendor 20 A list of Android apps and binaries permitted to use NNAPI vendor extensions is 21 stored in `/vendor/etc/nnapi_extensions_app_allowlist`. Each line of the file 32 The vendor creates and maintains a header file with the extension definition. A 37 of the vendor. 40 vendor name. The vendor name is represented by `EXAMPLE` in the code samples on [all …]
|
/packages/services/Car/cpp/telemetry/cartelemetryd/sampleclient/ |
D | README.md | 3 This is a sample vendor service that sends `CarData` to car telemetry service. 14 adb push $ANDROID_PRODUCT_OUT/vendor/bin/android.automotive.telemetryd-sampleclient /system/bin/ 23 **2. Under vendor** 36 `adb shell /vendor/bin/android.automotive.telemetryd-sampleclient`. 51 /vendor/bin/android\.automotive\.telemetryd-sampleclient u:object_r:cartelemetryd_sample_exec:s0 60 service cartelemetryd_sample /vendor/bin/android.automotive.telemetryd-sampleclient
|
/packages/modules/Bluetooth/tools/rootcanal/scripts/ |
D | build_and_run.sh | 52 VENDOR_SYMBOLS_REL=/symbols/system/vendor/lib 56 TEST_VENDOR_LIB=test-vendor.so 58 VENDOR_LIB=libbt-vendor.so 108 adb push ${VENDOR_SYMBOLS_ABS}/${VENDOR_LIB} /vendor/lib 111 adb push ${TEST_VENDOR_LIB_ABS}/data/${CONTROLLER_PROPERTIES} /vendor/etc/bluetooth/
|
/packages/modules/Virtualization/tests/vendor_images/ |
D | Android.bp | 13 partition_name: "microdroid-vendor", 23 partition_name: "microdroid-vendor", 32 partition_name: "microdroid-vendor",
|
/packages/modules/Bluetooth/system/gd/rust/linux/utils/src/ |
D | at_command_parser.rs | 54 pub vendor: Option<String>, field 87 let vendor = match command { in parse_at_command_data() localVariable 119 vendor: vendor, in parse_at_command_data() 347 assert_eq!(at_command.vendor, None); in test_parse_vendor() 351 assert_eq!(at_command.vendor, Some(AT_COMMAND_VENDOR_APPLE.to_string())); in test_parse_vendor() 355 assert_eq!(at_command.vendor, Some(AT_COMMAND_VENDOR_APPLE.to_string())); in test_parse_vendor() 359 assert_eq!(at_command.vendor, Some(AT_COMMAND_VENDOR_PLANTRONICS.to_string())); in test_parse_vendor()
|
/packages/modules/Bluetooth/tools/rootcanal/proto/rootcanal/ |
D | configuration.proto | 51 // Enable the support for the CSR vendor command. 53 // Enable the support for Android vendor commands. 54 // Note: not all required vendor commands are necessarily implemented 74 // Configure support for vendor features. 75 optional VendorFeatures vendor = 5; field
|
/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/reset/ |
D | ResetDataTaskTest.java | 34 import com.android.ondevicepersonalization.services.data.vendor.FileUtils; 35 import com.android.ondevicepersonalization.services.data.vendor.LocalData; 36 import com.android.ondevicepersonalization.services.data.vendor.OnDevicePersonalizationLocalDataDao; 37 import com.android.ondevicepersonalization.services.data.vendor.OnDevicePersonalizationVendorDataDa… 38 import com.android.ondevicepersonalization.services.data.vendor.VendorData;
|
/packages/apps/ManagedProvisioning/ |
D | README.md | 26 vendor/xts \ 28 vendor/unbundled_google/packages/SettingsGoogle \ 31 vendor/google/apps/SetupWizardOverlay/PixelSetupWizard
|
/packages/modules/Bluetooth/tools/rootcanal/hal/ |
D | android.hardware.bluetooth@1.1-service.sim.rc | 1 service vendor.bluetooth-1-1 /vendor/bin/hw/android.hardware.bluetooth@1.1-service.sim
|
/packages/apps/Settings/src/com/android/settings/gestures/ |
D | DoubleTwistPreferenceController.java | 57 final String vendor = resources.getString(R.string.gesture_double_twist_sensor_vendor); in isGestureAvailable() local 58 if (!TextUtils.isEmpty(type) && !TextUtils.isEmpty(vendor)) { in isGestureAvailable() 62 if (type.equals(s.getStringType()) && vendor.equals(s.getVendor())) { in isGestureAvailable()
|
/packages/modules/adb/client/ |
D | usb_osx.cpp | 110 static std::unique_ptr<usb_handle> CheckInterface(IOUSBInterfaceInterface550** iface, UInt16 vendor, 156 UInt16 vendor; in AndroidInterfaceAdded() local 233 kr = (*dev)->GetDeviceVendor(dev, &vendor); in AndroidInterfaceAdded() 297 vendor, product, serial); in AndroidInterfaceAdded() 315 CheckInterface((IOUSBInterfaceInterface550**)iface, vendor, product); in AndroidInterfaceAdded() 356 UInt16 vendor, UInt16 product) { in CheckInterface() argument
|
/packages/modules/NeuralNetworks/driver/sample_shim/ |
D | Android.bp | 36 vendor: true, 108 // Library prebuilt object and registers it as a sAIDL vendor service. 110 // To see an example where the driver code is available as a vendor service
|
/packages/services/Car/tests/CarTelemetryApp/ |
D | README.md | 11 CarService should bind to the vendor service, the list of early start up applications that 12 CarService binds to are listed in `vendor/auto/embedded/products/rro_overlay/CarServiceOverlay/res/… 20 to `config_earlyStartupServices` in `vendor/auto/embedded/products/rro_overlay/CarServiceOverlay/re…
|
/packages/modules/OnDevicePersonalization/tests/manualtests/src/com/android/ondevicepersonalization/services/download/ |
D | OnDevicePersonalizationDataProcessingAsyncCallableManualTests.java | 31 import com.android.ondevicepersonalization.services.data.vendor.OnDevicePersonalizationVendorDataDa… 32 import com.android.ondevicepersonalization.services.data.vendor.VendorData; 33 import com.android.ondevicepersonalization.services.data.vendor.VendorDataContract;
|
/packages/modules/ImsMedia/test/ |
D | README.md | 25 adb pull /vendor/etc/vintf/manifest.xml 36 adb push manifest.xml /vendor/etc/vintf/manifest.xml
|
/packages/services/Car/car_product/car_ui_portrait/rro/ |
D | car_ui_portrait_rro.mk | 19 $(call inherit-product-if-exists, vendor/auto/embedded/products/coolwhip/car-ui-lib-rros/product.mk) 20 $(call inherit-product-if-exists, vendor/google/nexus_overlay/fonts/fonts.mk) 97 ro.boot.vendor.overlay.theme=$(subst $(space),,$(PORTRAIT_RRO_PACKAGES))
|
/packages/modules/Bluetooth/system/stack/test/ |
D | stack_avrcp_test.cc | 49 msg.vendor.p_vendor_data = vendor_rsp_buf; in TEST_F() 50 msg.vendor.vendor_len = 13; in TEST_F() 189 .vendor = in TEST_F()
|
/packages/modules/Virtualization/vm/src/ |
D | main.rs | 127 vendor: Option<PathBuf>, field 142 fn vendor(&self) -> &Option<PathBuf> { in vendor() method 143 &self.vendor in vendor() 147 fn vendor(&self) -> Option<PathBuf> { in vendor() method
|
/packages/modules/Bluetooth/system/bta/test/ |
D | bta_dip_test.cc | 123 ASSERT_EQ(record.dip.vendor, 0x18d1); in TEST_F() 157 ASSERT_EQ(record.dip.vendor, 0); in TEST_F() 192 ASSERT_EQ(record.dip.vendor, 0); in TEST_F()
|
/packages/modules/Bluetooth/system/main/ |
D | bte_conf.cc | 56 record.vendor = in bte_load_did_conf() 89 log::info("vendorId = {:04x}", record.vendor); in bte_load_did_conf()
|
/packages/services/Car/car_product/build/ |
D | car_system.mk | 24 $(call inherit-product-if-exists, vendor/google/security/adb/vendor_key.mk) 143 …rservice.overlay.packages?=com.android.car.resources.vendor;com.google.android.car.resources.vendo…
|
/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/maintenance/ |
D | OnDevicePersonalizationMaintenanceJobServiceTest.java | 60 import com.android.ondevicepersonalization.services.data.vendor.FileUtils; 61 import com.android.ondevicepersonalization.services.data.vendor.LocalData; 62 import com.android.ondevicepersonalization.services.data.vendor.OnDevicePersonalizationLocalDataDao; 63 import com.android.ondevicepersonalization.services.data.vendor.OnDevicePersonalizationVendorDataDa… 64 import com.android.ondevicepersonalization.services.data.vendor.VendorData;
|