HomeSort by relevance Sort by last modified time
    Searched defs:OatFileAssistant (Results 1 - 2 of 2) sorted by null

  /art/runtime/
oat_file_assistant.h 49 class OatFileAssistant {
105 // Constructs an OatFileAssistant object to assist the oat file
109 // unchanged for the duration of the lifetime of the OatFileAssistant object.
122 OatFileAssistant(const char* dex_location,
126 ~OatFileAssistant();
133 // Only one OatFileAssistant object can hold the lock for a target oat file
134 // at a time. The Lock is released automatically when the OatFileAssistant
205 // After this call, no other methods of the OatFileAssistant should be
207 // the OatFileAssistant object.
266 // TODO: The OatFileAssistant probably isn't the right place to have thi
    [all...]
oat_file_assistant.cc 46 std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) {
48 case OatFileAssistant::kOatCannotOpen:
51 case OatFileAssistant::kOatDexOutOfDate:
54 case OatFileAssistant::kOatBootImageOutOfDate:
57 case OatFileAssistant::kOatRelocationOutOfDate:
60 case OatFileAssistant::kOatUpToDate:
70 OatFileAssistant::OatFileAssistant(const char* dex_location,
77 CHECK(dex_location != nullptr) << "OatFileAssistant: null dex location";
103 LOG(WARNING) << "OatFileAssistant: Load executable specified,
    [all...]

Completed in 590 milliseconds