Home
last modified time | relevance | path

Searched refs:ArtifactsLocation (Results 1 – 10 of 10) sorted by relevance

/art/artd/binder/com/android/server/art/
DGetDexoptNeededResult.aidl34 com.android.server.art.ArtifactsLocation artifactsLocation =
35 com.android.server.art.ArtifactsLocation.NONE_OR_ERROR;
DGetDexoptStatusResult.aidl34 com.android.server.art.ArtifactsLocation artifactsLocation =
35 com.android.server.art.ArtifactsLocation.NONE_OR_ERROR;
DArtifactsLocation.aidl21 enum ArtifactsLocation { enum
/art/libartservice/service/javatests/com/android/server/art/
DArtManagerLocalTest.java407 "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 …]
DPrimaryDexopterTestBase.java190 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()
DPrimaryDexopterTest.java163 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()
DSecondaryDexopterTest.java310 result.artifactsLocation = ArtifactsLocation.NONE_OR_ERROR; in dexoptIsNeeded()
/art/libartservice/service/java/com/android/server/art/
DArtFileManager.java151 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()
DDexopter.java594 case ArtifactsLocation.DALVIK_CACHE: in getInputVdex()
597 case ArtifactsLocation.NEXT_TO_DEX: in getInputVdex()
600 case ArtifactsLocation.DM: in getInputVdex()
/art/artd/
Dartd.cc94 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()