Searched defs:prefer_file_cache (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Core/
H A DValue.cpp578 // want to read the actual value by setting "prefer_file_cache"
580 const bool prefer_file_cache = false; local
581 if (exe_ctx->GetTargetRef().ReadMemory(file_so_addr, prefer_file_cache, dst, byte_size, error) != byte_size)
H A DAddress.cpp38 bool prefer_file_cache = false; local
39 return target_sp->ReadMemory (address, prefer_file_cache, dst, dst_len, error);
H A DDisassembler.cpp248 const bool prefer_file_cache = false; local
249 size_t bytes_disassembled = disasm_sp->ParseInstructions (&exe_ctx, range, NULL, prefer_file_cache);
314 const bool prefer_file_cache = false; local
315 size_t bytes_disassembled = disasm_sp->ParseInstructions (&exe_ctx, range, &strm, prefer_file_cache);
362 const bool prefer_file_cache = false; local
366 prefer_file_cache);
1068 bool prefer_file_cache)
1083 prefer_file_cache,
1119 bool prefer_file_cache)
1139 prefer_file_cache,
1065 ParseInstructions(const ExecutionContext *exe_ctx, const AddressRange &range, Stream *error_strm_ptr, bool prefer_file_cache) argument
1116 ParseInstructions(const ExecutionContext *exe_ctx, const Address &start, uint32_t num_instructions, bool prefer_file_cache) argument
[all...]
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp1133 const bool prefer_file_cache = false; local
1135 prefer_file_cache,
1143 const size_t bytes_read = m_process->GetTarget().ReadMemory (m_kext_summary_header_addr, prefer_file_cache, buf, count, error);
1364 const bool prefer_file_cache = false; local
1366 prefer_file_cache,
/external/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp479 const bool prefer_file_cache = true; local
482 if (target->ReadMemory (addr, prefer_file_cache, opcode_data.data(), max_op_byte_size, error) == -1)
541 const bool prefer_file_cache = true; local
555 if (target->ReadMemory (m_cur_insn, prefer_file_cache, m_cur_insn_bytes, insn_len, error) == -1)
693 if (target->ReadMemory (last_seven_bytes, prefer_file_cache, bytebuf, 7, error) != -1)
709 if (target->ReadMemory (last_two_bytes, prefer_file_cache, bytebuf, 2, error) != -1)
769 const bool prefer_file_cache = true; local
770 if (target->ReadMemory (func.GetBaseAddress(), prefer_file_cache, bytebuf, sizeof (bytebuf), error) == -1)
842 const bool prefer_file_cache = true; local
853 if (target->ReadMemory (m_cur_insn, prefer_file_cache, m_cur_insn_byte
[all...]
/external/lldb/source/API/
H A DSBTarget.cpp2309 bool prefer_file_cache = false; local
2313 prefer_file_cache,
/external/lldb/source/Target/
H A DTarget.cpp1266 bool prefer_file_cache,
1307 if (prefer_file_cache)
1359 if (!prefer_file_cache && resolved_addr.IsSectionOffset())
1446 bool prefer_file_cache,
1456 size_t bytes_read = ReadMemory (addr, prefer_file_cache, &uval, byte_size, error);
1480 bool prefer_file_cache,
1487 prefer_file_cache,
1498 bool prefer_file_cache,
1504 prefer_file_cache,
1265 ReadMemory(const Address& addr, bool prefer_file_cache, void *dst, size_t dst_len, Error &error, lldb::addr_t *load_addr_ptr) argument
1445 ReadScalarIntegerFromMemory(const Address& addr, bool prefer_file_cache, uint32_t byte_size, bool is_signed, Scalar &scalar, Error &error) argument
1479 ReadUnsignedIntegerFromMemory(const Address& addr, bool prefer_file_cache, size_t integer_byte_size, uint64_t fail_value, Error &error) argument
1497 ReadPointerFromMemory(const Address& addr, bool prefer_file_cache, Error &error, Address &pointer_addr) argument

Completed in 1837 milliseconds