Home
last modified time | relevance | path

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

/art/artd/binder/com/android/server/art/
DGetDexoptNeededResult.aidl30 ArtifactsLocation artifactsLocation = ArtifactsLocation.NONE_OR_ERROR;
32 enum ArtifactsLocation { enum
/art/libartservice/service/javatests/com/android/server/art/
DPrimaryDexopterTestBase.java19 import static com.android.server.art.GetDexoptNeededResult.ArtifactsLocation;
180 return dexoptIsNeeded(ArtifactsLocation.NONE_OR_ERROR); in dexoptIsNeeded()
183 protected GetDexoptNeededResult dexoptIsNeeded(@ArtifactsLocation byte location) { in dexoptIsNeeded()
187 if (location != ArtifactsLocation.NONE_OR_ERROR) { in dexoptIsNeeded()
DPrimaryDexopterTest.java19 import static com.android.server.art.GetDexoptNeededResult.ArtifactsLocation;
139 doReturn(dexoptIsNeeded(ArtifactsLocation.NONE_OR_ERROR)) in testDexoptInputVdex()
148 doReturn(dexoptIsNeeded(ArtifactsLocation.DALVIK_CACHE)) in testDexoptInputVdex()
159 doReturn(dexoptIsNeeded(ArtifactsLocation.NEXT_TO_DEX)) in testDexoptInputVdex()
170 doReturn(dexoptIsNeeded(ArtifactsLocation.DM)) in testDexoptInputVdex()
DSecondaryDexopterTest.java20 import static com.android.server.art.GetDexoptNeededResult.ArtifactsLocation;
305 result.artifactsLocation = ArtifactsLocation.NONE_OR_ERROR; in dexoptIsNeeded()
/art/libartservice/service/java/com/android/server/art/
DDexopter.java19 import static com.android.server.art.GetDexoptNeededResult.ArtifactsLocation;
478 case ArtifactsLocation.DALVIK_CACHE: in getInputVdex()
481 case ArtifactsLocation.NEXT_TO_DEX: in getInputVdex()
484 case ArtifactsLocation.DM: in getInputVdex()
/art/artd/
Dartd.cc114 using ArtifactsLocation = GetDexoptNeededResult::ArtifactsLocation; typedef
210 ArtifactsLocation ArtifactsLocationToAidl(OatFileAssistant::Location location) { in ArtifactsLocationToAidl()
213 return ArtifactsLocation::NONE_OR_ERROR; in ArtifactsLocationToAidl()
215 return ArtifactsLocation::DALVIK_CACHE; in ArtifactsLocationToAidl()
217 return ArtifactsLocation::NEXT_TO_DEX; in ArtifactsLocationToAidl()
219 return ArtifactsLocation::DM; in ArtifactsLocationToAidl()