/packages/services/Car/cpp/watchdog/server/tests/ |
D | IoOveruseConfigsTest.cpp | 144 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in sampleBuildVendorConfig() 151 return constructResourceOveruseConfig(ComponentType::VENDOR, in sampleBuildVendorConfig() 192 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in sampleUpdateVendorConfig() 201 return constructResourceOveruseConfig(ComponentType::VENDOR, in sampleUpdateVendorConfig() 346 ComponentType::VENDOR, /*safeToKill=*/{}, /*vendorPrefixes=*/{}, in TEST_F() 350 toPerStateIoOveruseThreshold(ComponentType::VENDOR, in TEST_F() 465 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, 10, 90, 300), in TEST_F() 473 constructResourceOveruseConfig(ComponentType::VENDOR, /*safeToKill=*/{}, in TEST_F() 500 constructResourceOveruseConfig(ComponentType::VENDOR, /*safeToKill=*/{}, in TEST_F() 523 packageInfo = constructAppPackageInfo("vendorPackage", ComponentType::VENDOR, in TEST_F() [all …]
|
D | PackageInfoResolverTest.cpp | 181 constructPackageInfo("vendor.package.A", 5100, UidType::NATIVE, ComponentType::VENDOR, in TEST_F() 184 constructPackageInfo("vendor.package.B", 6700, UidType::NATIVE, ComponentType::VENDOR, in TEST_F() 187 constructPackageInfo("vendor.pkg.C", 9997, UidType::NATIVE, ComponentType::VENDOR, in TEST_F() 229 ComponentType::VENDOR, ApplicationCategoryType::OTHERS)}, in TEST_F() 231 constructPackageInfo("vendor.pkg", 16700, UidType::NATIVE, ComponentType::VENDOR, in TEST_F() 235 ComponentType::VENDOR, ApplicationCategoryType::OTHERS)}, in TEST_F() 238 ComponentType::VENDOR, ApplicationCategoryType::OTHERS, in TEST_F()
|
D | OveruseConfigurationXmlHelperTest.cpp | 104 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in TEST() 119 constructResourceOveruseConfig(ComponentType::VENDOR, in TEST() 207 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in TEST() 222 constructResourceOveruseConfig(ComponentType::VENDOR, in TEST()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarVendorExtensionManagerTest.java | 73 0x1 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32 | VehicleArea.GLOBAL; 76 0x2 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.FLOAT | VehicleArea.SEAT; 79 0x3 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.BYTES | VehicleArea.SEAT; 82 0x4 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.BYTES | VehicleArea.GLOBAL; 85 0x5 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.STRING | VehicleArea.GLOBAL; 88 0x6 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT64 | VehicleArea.GLOBAL; 91 0x7 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32_VEC | VehicleArea.GLOBAL; 94 0x8 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT64_VEC | VehicleArea.GLOBAL; 415 return VehiclePropertyGroup.VENDOR == (prop & VehiclePropertyGroup.VENDOR); in isVendorProperty()
|
D | CarPropertyManagerTest.java | 131 0x1201 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32 | VehicleArea.SEAT; 133 0x1202 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32 | VehicleArea.SEAT; 136 0x1101 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.MIXED | VehicleArea.SEAT; 138 0x1102 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.MIXED | VehicleArea.GLOBAL; 140 0x1110 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.MIXED | VehicleArea.GLOBAL; 143 0x1103 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32_VEC 149 0x1108 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32 154 0x1104 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.INT32_VEC 157 0x1105 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.BOOLEAN 160 0x1106 | VehiclePropertyGroup.VENDOR | VehiclePropertyType.FLOAT [all …]
|
/packages/services/Car/service/src/com/android/car/watchdog/ |
D | OveruseConfigurationCache.java | 201 proto.write(IoThresholdByPackage.PACKAGE_TYPE, PerformanceDump.VENDOR); in dumpProto() 247 case ComponentType.VENDOR: in set() 289 case ComponentType.VENDOR: in fetchThreshold() 333 case ComponentType.VENDOR: in isSafeToKill() 380 case ComponentType.VENDOR: in setIoThresholdsLocked() 449 case ComponentType.VENDOR: in toComponentTypeString() 475 case ComponentType.VENDOR: in toProtoComponentType() 476 return PerformanceDump.VENDOR; in toProtoComponentType()
|
D | PackageInfoHandler.java | 257 if (seenComponents.get(ComponentType.VENDOR)) { in getSharedComponentType() 258 return ComponentType.VENDOR; in getSharedComponentType() 263 return ComponentType.VENDOR; in getSharedComponentType() 307 return ComponentType.VENDOR; in getComponentType() 316 return ComponentType.VENDOR; in getComponentType()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | IoOveruseConfigs.cpp | 167 case ComponentType::VENDOR: in getComponentFilter() 332 mVendorConfig.mGeneric.name = toString(ComponentType::VENDOR); 438 case ComponentType::VENDOR: in updateFromAidlConfig() 511 if (componentType != ComponentType::VENDOR) { in update() 592 vendorConfig->componentType = ComponentType::VENDOR; in get() 664 case ComponentType::VENDOR: in writeToDisk() 698 case ComponentType::VENDOR: in fetchThreshold() 735 case ComponentType::VENDOR: in isSafeToKill()
|
D | PackageInfoResolver.cpp | 62 return ComponentType::VENDOR; in getComponentTypeForNativeUid() 68 return ComponentType::VENDOR; in getComponentTypeForNativeUid()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/property/ |
D | VehiclePropertyIdDebugUtilsUnitTest.java | 55 VehiclePropertyIdDebugUtils.toDebugString(VehiclePropertyGroup.VENDOR)).isEqualTo( in testToDebugString() 56 "VENDOR_PROPERTY(0x" + Integer.toHexString(VehiclePropertyGroup.VENDOR) + ")"); in testToDebugString()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/property/ |
D | HalPropertyDebugUtilsUnitTest.java | 56 assertThat(HalPropertyDebugUtils.toPropertyIdString(VehiclePropertyGroup.VENDOR)).isEqualTo( in testToPropertyIdString() 57 "VENDOR_PROPERTY(0x" + Integer.toHexString(VehiclePropertyGroup.VENDOR) + ")"); in testToPropertyIdString() 234 assertThat(toGroupString(VehiclePropertyGroup.VENDOR)).isEqualTo("VENDOR(0x20000000)"); in testToGroupString() 243 assertThat(toValueTypeString(VehiclePropertyGroup.VENDOR)).isEqualTo( in testToValueTypeString()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceUnitTest.java | 802 UidType.NATIVE, ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUids() 807 UidType.APPLICATION, ComponentType.VENDOR, in testGetPackageInfosForUids() 840 ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosWithSharedUids() 878 UidType.APPLICATION, ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUidsWithVendorPackagePrefixes() 882 ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUidsWithVendorPackagePrefixes() 888 ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUidsWithVendorPackagePrefixes() 928 UidType.APPLICATION, ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUidsWithMissingApplicationInfos() 932 UidType.APPLICATION, ComponentType.VENDOR, ApplicationCategoryType.OTHERS), in testGetPackageInfosForUidsWithMissingApplicationInfos() 998 cache.fetchThreshold("vendor_package.non_critical.A", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold() 1003 cache.fetchThreshold("vendor_package.A", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold() [all …]
|
/packages/modules/Bluetooth/system/packet/tests/avrcp/ |
D | avrcp_packet_test.cc | 71 CType::STATUS, 0x09, 0x00, Opcode::VENDOR, std::move(cap_req_builder)); in TEST() 86 ASSERT_EQ(test_avrcp_packet->GetOpcode(), Opcode::VENDOR); in TEST()
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/ |
D | ComponentType.aidl | 39 VENDOR, enumConstant
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/1/android/automotive/watchdog/internal/ |
D | ComponentType.aidl | 39 VENDOR = 2, enumConstant
|
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/ |
D | ComponentType.aidl | 39 VENDOR, enumConstant
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/2/android/automotive/watchdog/internal/ |
D | ComponentType.aidl | 39 VENDOR = 2, enumConstant
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/ |
D | ComponentType.aidl | 39 VENDOR, enumConstant
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | CarPropertyManagerTest.java | 57 private static final int STARTING_TEST_CODES = 0x3000 | VehiclePropertyGroup.VENDOR 60 | VehiclePropertyGroup.VENDOR | VehicleArea.GLOBAL | VehiclePropertyType.INT32;
|
/packages/modules/Bluetooth/system/packet/tests/fuzzers/ |
D | avrcp_packet_fuzzer.cc | 78 CType::STATUS, 0x09, 0x00, Opcode::VENDOR, std::move(cap_req_builder)); in LLVMFuzzerTestOneInput()
|
/packages/modules/Bluetooth/system/packet/avrcp/ |
D | vendor_packet.h | 49 : PacketBuilder(ctype, 0x09, 0x00, Opcode::VENDOR), in VendorPacketBuilder()
|
/packages/services/Car/libs/car-test-lib/src/android/car/testapi/ |
D | FakeCarPropertyService.java | 369 if (halArea == VehicleArea.VENDOR) { in getVehicleAreaType() 385 static final int VENDOR = 0x08000000; field in FakeCarPropertyService.VehicleArea
|
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/osdouble/ |
D | ClusterOsDoubleActivity.java | 75 private static final int VENDOR = 0x20000000; field in ClusterOsDoubleActivity 286 return (propId & ~MASK) | VENDOR; in toVendorId()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | VmsHalServiceTest.java | 1081 int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1; in testDumpMetrics_VendorProperty() 1107 int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1; in testDumpMetrics_VendorProperty_Timeout() 1123 int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1; in testDumpMetrics_VendorProperty_Unavailable()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | HalPropConfig.java | 220 if (halArea == VehicleArea.VENDOR) { in getVehicleAreaType()
|