Home
last modified time | relevance | path

Searched refs:symfile (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Ddebugger_interface.cc166 ArrayRef<const uint8_t> symfile, in CreateJITCodeEntryInternal() argument
170 uint8_t* copy = new uint8_t[symfile.size()]; in CreateJITCodeEntryInternal()
172 memcpy(copy, symfile.data(), symfile.size()); in CreateJITCodeEntryInternal()
173 symfile = ArrayRef<const uint8_t>(copy, symfile.size()); in CreateJITCodeEntryInternal()
183 entry->symfile_addr_ = symfile.data(); in CreateJITCodeEntryInternal()
184 entry->symfile_size_ = symfile.size(); in CreateJITCodeEntryInternal()
210 const uint8_t* symfile = entry->symfile_addr_; in DeleteJITCodeEntryInternal() local
242 delete[] symfile; in DeleteJITCodeEntryInternal()
253 const ArrayRef<const uint8_t> symfile(dexfile->Begin(), dexfile->Size()); in AddNativeDebugInfoForDex() local
256 symfile, in AddNativeDebugInfoForDex()
[all …]
Ddebugger_interface.h51 const std::vector<uint8_t>& symfile,