HomeSort by relevance Sort by last modified time
    Searched refs:ReadFileContents (Results 1 - 12 of 12) sorted by null

  /external/lldb/include/lldb/Host/
FileSpec.h 527 ReadFileContents (off_t offset = 0, size_t length = SIZE_MAX, Error *error_ptr = NULL) const;
530 ReadFileContents (off_t file_offset, void *dst, size_t dst_len, Error *error_ptr) const;
  /external/lldb/source/Interpreter/
OptionValueFileSpec.cpp 154 m_data_sp = m_current_value.ReadFileContents();
  /external/lldb/source/Host/macosx/
Symbols.cpp 104 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, sizeof(struct mach_header_64) + sizeofcmds));
112 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, sizeof(struct mach_header) + sizeofcmds));
156 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, fat_header_and_arch_size));
178 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset + arch_offset, 0x1000));
207 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, 0x1000));
    [all...]
  /external/lldb/source/Core/
SourceManager.cpp 411 m_data_sp = m_file_spec.ReadFileContents ();
457 m_data_sp = m_file_spec.ReadFileContents ();
496 m_data_sp = m_file_spec.ReadFileContents ();
  /external/lldb/source/Symbol/
ObjectFile.cpp 77 data_sp = file->ReadFileContents(file_offset, std::min<size_t>(512, file_size));
114 data_sp = archive_file.ReadFileContents(file_offset, 512);
192 DataBufferSP data_sp (file.ReadFileContents(file_offset, 512));
  /external/lldb/source/API/
SBSection.cpp 228 DataBufferSP data_buffer_sp (objfile->GetFileSpec().ReadFileContents (file_offset, file_size));
  /external/lldb/source/Host/common/
FileSpec.cpp 790 FileSpec::ReadFileContents (off_t file_offset, void *dst, size_t dst_len, Error *error_ptr) const
827 FileSpec::ReadFileContents (off_t file_offset, size_t file_size, Error *error_ptr) const
    [all...]
Host.cpp     [all...]
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.cpp 459 DataBufferSP section_header_data_sp(m_file.ReadFileContents (section_header_data_offset, section_header_byte_size));
534 DataBufferSP symtab_data_sp(m_file.ReadFileContents (m_coff_header.symoff, symbol_data_size + 4));
538 DataBufferSP strtab_data_sp(m_file.ReadFileContents (m_coff_header.symoff + symbol_data_size, strtab_size));
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp     [all...]
  /external/lldb/source/Commands/
CommandObjectMemory.cpp     [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp 515 data_sp = file.ReadFileContents(file_offset, header.sizeofcmds);
746 data_sp = m_file.ReadFileContents(m_file_offset, header_and_lc_size);
    [all...]

Completed in 369 milliseconds