Lines Matching refs:symfile
303 ArrayRef<const uint8_t> symfile = ArrayRef<const uint8_t>(), in CreateJITCodeEntryInternal() argument
321 if (NativeInfo::kCopySymfileData && !symfile.empty()) { in CreateJITCodeEntryInternal()
322 const uint8_t* copy = reinterpret_cast<const uint8_t*>(NativeInfo::Alloc(symfile.size())); in CreateJITCodeEntryInternal()
327 memcpy(NativeInfo::Writable(copy), symfile.data(), symfile.size()); in CreateJITCodeEntryInternal()
328 symfile = ArrayRef<const uint8_t>(copy, symfile.size()); in CreateJITCodeEntryInternal()
345 writable_entry->symfile_addr_ = symfile.data(); in CreateJITCodeEntryInternal()
346 writable_entry->symfile_size_ = symfile.size(); in CreateJITCodeEntryInternal()
398 const uint8_t* symfile = entry->symfile_addr_; in DeleteJITCodeEntryInternal() local
400 if (NativeInfo::kCopySymfileData && symfile != nullptr) { in DeleteJITCodeEntryInternal()
401 NativeInfo::Free(symfile); in DeleteJITCodeEntryInternal()
413 const ArrayRef<const uint8_t> symfile(dexfile->Begin(), dexfile->Size()); in AddNativeDebugInfoForDex() local
414 CreateJITCodeEntryInternal<DexNativeInfo>(symfile); in AddNativeDebugInfoForDex()
568 const std::vector<uint8_t>& symfile, in AddNativeDebugInfoForJit() argument
571 DCHECK_NE(symfile.size(), 0u); in AddNativeDebugInfoForJit()
583 CreateJITCodeEntryInternal<JitNativeInfo>(ArrayRef<const uint8_t>(symfile), in AddNativeDebugInfoForJit()
591 << " size=" << PrettySize(symfile.size()); in AddNativeDebugInfoForJit()