Searched refs:ArtifactsLocation (Results 1 – 10 of 10) sorted by relevance
/art/artd/binder/com/android/server/art/ |
D | GetDexoptNeededResult.aidl | 34 com.android.server.art.ArtifactsLocation artifactsLocation = 35 com.android.server.art.ArtifactsLocation.NONE_OR_ERROR;
|
D | GetDexoptStatusResult.aidl | 34 com.android.server.art.ArtifactsLocation artifactsLocation = 35 com.android.server.art.ArtifactsLocation.NONE_OR_ERROR;
|
D | ArtifactsLocation.aidl | 21 enum ArtifactsLocation { enum
|
/art/libartservice/service/javatests/com/android/server/art/ |
D | ArtManagerLocalTest.java | 407 "location-debug-string-0", ArtifactsLocation.NEXT_TO_DEX)) in testGetDexoptStatus() 411 "location-debug-string-1", ArtifactsLocation.NEXT_TO_DEX)) in testGetDexoptStatus() 415 "location-debug-string-2", ArtifactsLocation.NEXT_TO_DEX)) in testGetDexoptStatus() 419 "location-debug-string-3", ArtifactsLocation.NEXT_TO_DEX)) in testGetDexoptStatus() 423 "run-from-apk", "unknown", "unknown", ArtifactsLocation.NEXT_TO_DEX)) in testGetDexoptStatus() 427 "unknown", "unknown", "error", ArtifactsLocation.NONE_OR_ERROR)) in testGetDexoptStatus() 1163 "speed-profile", "bg-dexopt", "location", ArtifactsLocation.NEXT_TO_DEX)) in testCleanup() 1167 "verify", "cmdline", "location", ArtifactsLocation.NEXT_TO_DEX)) in testCleanup() 1173 "verify", "bg-dexopt", "location", ArtifactsLocation.DALVIK_CACHE)) in testCleanup() 1179 "verify", "vdex", "location", ArtifactsLocation.NEXT_TO_DEX)) in testCleanup() [all …]
|
D | PrimaryDexopterTestBase.java | 190 return dexoptIsNeeded(ArtifactsLocation.NONE_OR_ERROR); in dexoptIsNeeded() 193 protected GetDexoptNeededResult dexoptIsNeeded(@ArtifactsLocation int location) { in dexoptIsNeeded() 197 if (location != ArtifactsLocation.NONE_OR_ERROR) { in dexoptIsNeeded()
|
D | PrimaryDexopterTest.java | 163 doReturn(dexoptIsNeeded(ArtifactsLocation.NONE_OR_ERROR)) in testDexoptInputVdex() 172 doReturn(dexoptIsNeeded(ArtifactsLocation.DALVIK_CACHE)) in testDexoptInputVdex() 183 doReturn(dexoptIsNeeded(ArtifactsLocation.NEXT_TO_DEX)) in testDexoptInputVdex() 194 doReturn(dexoptIsNeeded(ArtifactsLocation.DM)) in testDexoptInputVdex()
|
D | SecondaryDexopterTest.java | 310 result.artifactsLocation = ArtifactsLocation.NONE_OR_ERROR; in dexoptIsNeeded()
|
/art/libartservice/service/java/com/android/server/art/ |
D | ArtFileManager.java | 151 if (result.artifactsLocation == ArtifactsLocation.DALVIK_CACHE in getUsableArtifacts() 152 || result.artifactsLocation == ArtifactsLocation.NEXT_TO_DEX) { in getUsableArtifacts() 155 result.artifactsLocation == ArtifactsLocation.DALVIK_CACHE); in getUsableArtifacts()
|
D | Dexopter.java | 594 case ArtifactsLocation.DALVIK_CACHE: in getInputVdex() 597 case ArtifactsLocation.NEXT_TO_DEX: in getInputVdex() 600 case ArtifactsLocation.DM: in getInputVdex()
|
/art/artd/ |
D | artd.cc | 94 using ::aidl::com::android::server::art::ArtifactsLocation; 215 ArtifactsLocation ArtifactsLocationToAidl(OatFileAssistant::Location location) { in ArtifactsLocationToAidl() 218 return ArtifactsLocation::NONE_OR_ERROR; in ArtifactsLocationToAidl() 220 return ArtifactsLocation::DALVIK_CACHE; in ArtifactsLocationToAidl() 222 return ArtifactsLocation::NEXT_TO_DEX; in ArtifactsLocationToAidl() 224 return ArtifactsLocation::DM; in ArtifactsLocationToAidl()
|