Searched refs:file_sp (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp71 FileSP file_sp; local
73 file_sp = debugger_sp->GetSourceFileCache().FindSourceFile(file_spec);
79 if (target_sp && file_sp &&
80 file_sp->GetSourceMapModificationID() !=
82 file_sp.reset();
85 if (file_sp)
86 file_sp->UpdateIfNeeded();
88 // If file_sp is no good or it points to a non-existent file, reset it.
89 if (!file_sp || !FileSystem::Instance().Exists(file_sp
374 FileSP file_sp = GetFile(file_spec); local
696 AddSourceFile(const FileSP &file_sp) argument
709 FileSP file_sp; local
[all...]
H A DDebugger.cpp778 void Debugger::SetInputFile(FileSP file_sp, repro::DataRecorder *recorder) { argument
779 assert(file_sp && file_sp->IsValid());
781 m_input_file_sp = file_sp;
787 void Debugger::SetOutputFile(FileSP file_sp) { argument
788 assert(file_sp && file_sp->IsValid());
789 m_output_stream_sp = std::make_shared<StreamFile>(file_sp);
792 void Debugger::SetErrorFile(FileSP file_sp) { argument
793 assert(file_sp
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp128 size_t SBCommandReturnObject::PutOutput(FileSP file_sp) { argument
130 file_sp);
131 if (!file_sp)
133 return file_sp->Printf("%s", GetOutput());
153 size_t SBCommandReturnObject::PutError(FileSP file_sp) { argument
155 file_sp);
156 if (!file_sp)
158 return file_sp->Printf("%s", GetError());
298 void SBCommandReturnObject::SetImmediateOutputFile(FileSP file_sp) { argument
300 (FileSP), file_sp);
304 SetImmediateErrorFile(FileSP file_sp) argument
[all...]
H A DSBStream.cpp128 void SBStream::RedirectToFile(FileSP file_sp) { argument
129 LLDB_RECORD_METHOD(void, SBStream, RedirectToFile, (FileSP), file_sp);
131 if (!file_sp || !file_sp->IsValid())
143 m_opaque_up = std::make_unique<StreamFile>(file_sp);
H A DSBFile.cpp19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { argument
H A DSBDebugger.cpp297 SBError SBDebugger::SetInputFile(FileSP file_sp) { argument
298 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (FileSP), file_sp);
299 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp)));
318 FileSP file_sp = file.m_opaque_sp; local
330 file_sp = std::make_shared<NativeFile>(fh, true);
334 if (!file_sp || !file_sp->IsValid()) {
339 m_opaque_sp->SetInputFile(file_sp, recorder);
343 SBError SBDebugger::SetOutputFile(FileSP file_sp) { argument
344 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (FileSP), file_sp);
375 SetErrorFile(FileSP file_sp) argument
398 File &file_sp = m_opaque_sp->GetInputFile(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFile.h25 SBFile(FileSP file_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h65 void SetImmediateOutputFile(lldb::FileSP file_sp) { argument
66 lldb::StreamSP stream_sp(new StreamFile(file_sp));
70 void SetImmediateErrorFile(lldb::FileSP file_sp) { argument
71 lldb::StreamSP stream_sp(new StreamFile(file_sp));
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h101 void AddSourceFile(const FileSP &file_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1420 FileSP file_sp; local
1424 file_sp = std::make_shared<NativeFile>(fd, options.get(), false);
1426 file_sp = std::static_pointer_cast<File>(
1429 if (!file_sp->IsValid())
1433 return file_sp;
1471 FileSP file_sp;
1477 file_sp = std::static_pointer_cast<File>(
1488 file_sp = std::static_pointer_cast<File>(
1492 if (!file_sp)
1496 if (!file_sp
[all...]
H A DScriptInterpreterPython.cpp687 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, argument
691 if (!file_sp || !*file_sp) {
695 File &file = *file_sp;

Completed in 94 milliseconds