OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:oatfileassistant
(Results
1 - 7
of
7
) sorted by null
/art/runtime/
oat_file_assistant.cc
47
std::ostream& operator << (std::ostream& stream, const
OatFileAssistant
::OatStatus status) {
49
case
OatFileAssistant
::kOatOutOfDate:
52
case
OatFileAssistant
::kOatUpToDate:
55
case
OatFileAssistant
::kOatNeedsRelocation:
65
OatFileAssistant
::
OatFileAssistant
(const char* dex_location,
69
:
OatFileAssistant
(dex_location, nullptr, isa, profile_changed, load_executable)
72
OatFileAssistant
::
OatFileAssistant
(const char* dex_location,
78
CHECK(dex_location != nullptr) << "
OatFileAssistant
: null dex location"
[
all
...]
oat_file_assistant_test.cc
208
ASSERT_TRUE(
OatFileAssistant
::Dex2Oat(args, &error_msg)) << error_msg;
242
uint32_t combined_checksum =
OatFileAssistant
::CalculateCombinedImageChecksum();
265
ASSERT_TRUE(
OatFileAssistant
::Dex2Oat(args, &error_msg)) << error_msg;
302
ASSERT_TRUE(
OatFileAssistant
::Dex2Oat(args, &error_msg)) << error_msg;
386
OatFileAssistant
ofa(dex_location, kRuntimeISA, false, false);
397
ASSERT_TRUE(
OatFileAssistant
::Dex2Oat(args, &error_msg)) << error_msg;
418
OatFileAssistant
oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
420
EXPECT_EQ(
OatFileAssistant
::kDex2OatNeeded,
422
EXPECT_EQ(
OatFileAssistant
::kDex2OatNeeded,
424
EXPECT_EQ(
OatFileAssistant
::kDex2OatNeeded
[
all
...]
oat_file_assistant.h
49
class
OatFileAssistant
{
90
// Constructs an
OatFileAssistant
object to assist the oat file
94
// unchanged for the duration of the lifetime of the
OatFileAssistant
object.
110
OatFileAssistant
(const char* dex_location,
115
// Constructs an
OatFileAssistant
, providing an explicit target oat_location
117
OatFileAssistant
(const char* dex_location,
123
~
OatFileAssistant
();
130
// Only one
OatFileAssistant
object can hold the lock for a target oat file
131
// at a time. The Lock is released automatically when the
OatFileAssistant
180
// After this call, no other methods of the
OatFileAssistant
should b
[
all
...]
compiler_filter_test.cc
32
// match the
OatFileAssistant
::DexOptStatus values.
oat_file_manager.cc
558
OatFileAssistant
oat_file_assistant(dex_location,
570
VLOG(class_linker) << "
OatFileAssistant
::Lock: " << error_msg;
579
case
OatFileAssistant
::kUpdateFailed:
583
case
OatFileAssistant
::kUpdateNotAttempted:
589
case
OatFileAssistant
::kUpdateSucceeded:
/art/runtime/native/
dalvik_system_DexFile.cc
382
OatFileAssistant
oat_file_assistant(filename, target_instruction_set, profile_changed, false);
386
return
OatFileAssistant
::kNoDexOptNeeded;
414
OatFileAssistant
oat_file_assistant(filename.c_str(), target_instruction_set,
490
OatFileAssistant
oat_file_assistant(filename, kRuntimeISA, false, false);
/art/dex2oat/
dex2oat.cc
[
all
...]
Completed in 975 milliseconds