OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oat_contents
(Results
1 - 4
of
4
) sorted by null
/art/compiler/
elf_writer_mclinker.cc
68
std::vector<uint8_t>
oat_contents
;
local
69
oat_contents
.reserve(oat_writer->GetSize());
70
VectorOutputStream output_stream("oat contents",
oat_contents
);
72
CHECK_EQ(oat_writer->GetSize(),
oat_contents
.size());
75
AddOatInput(
oat_contents
);
83
oat_contents
.clear();
159
void ElfWriterMclinker::AddOatInput(std::vector<uint8_t>&
oat_contents
) {
162
std::unique_ptr<OatFile> oat_file(OatFile::OpenMemory(
oat_contents
, elf_file_->GetPath(), &error_msg));
elf_writer_mclinker.h
64
void AddOatInput(std::vector<uint8_t>&
oat_contents
);
/art/runtime/
oat_file.cc
56
OatFile* OatFile::OpenMemory(std::vector<uint8_t>&
oat_contents
,
59
CHECK(!
oat_contents
.empty()) << location;
62
oat_file->begin_ = &
oat_contents
[0];
63
oat_file->end_ = &
oat_contents
[
oat_contents
.size()];
oat_file.h
66
static OatFile* OpenMemory(std::vector<uint8_t>&
oat_contents
,
Completed in 1146 milliseconds