reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Host/FileSystem.h
  146   std::shared_ptr<DataBufferLLVM> CreateDataBuffer(const llvm::Twine &path,

References

tools/lldb/source/API/SBSection.cpp
  210           auto data_buffer_sp = FileSystem::Instance().CreateDataBuffer(
tools/lldb/source/Commands/CommandObjectMemory.cpp
 1359       auto data_sp = FileSystem::Instance().CreateDataBuffer(
tools/lldb/source/Host/common/FileSystem.cpp
  311   return CreateDataBuffer(file_spec.GetPath(), size, offset);
tools/lldb/source/Host/linux/Host.cpp
  127   auto buffer_sp = FileSystem::Instance().CreateDataBuffer(exe_path, 0x20, 0);
tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
  114         FileSystem::Instance().CreateDataBuffer(m_current_value.GetPath());
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 2445   auto data_sp = FileSystem::Instance().CreateDataBuffer(file.GetPath());
 2979       FileSystem::Instance().CreateDataBuffer(fs.GetPath(), size, addr);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
 1169           FileSystem::Instance().CreateDataBuffer(temp_file_spec.GetPath());
tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
   61     auto data_sp = FileSystem::Instance().CreateDataBuffer(
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
   67     auto data_sp = FileSystem::Instance().CreateDataBuffer(
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  142   auto DataPtr = FileSystem::Instance().CreateDataBuffer(crash_file->GetPath(),
  152       FileSystem::Instance().CreateDataBuffer(crash_file->GetPath(), -1, 0);
tools/lldb/source/Symbol/ObjectFile.cpp
   78           data_sp = FileSystem::Instance().CreateDataBuffer(file->GetPath(),
  122             data_sp = FileSystem::Instance().CreateDataBuffer(
  212       FileSystem::Instance().CreateDataBuffer(file.GetPath(), 512, file_offset);
  684   return FileSystem::Instance().CreateDataBuffer(file.GetPath(), Size, Offset);
tools/lldb/unittests/Process/minidump/MinidumpParserTest.cpp
   46     auto BufferPtr = FileSystem::Instance().CreateDataBuffer(filename, -1, 0);