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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp71 FileSP file_sp; local
73 file_sp = m_last_file_sp;
75 file_sp = debugger_sp->GetSourceFileCache().FindSourceFile(file_spec);
81 if (target_sp && file_sp &&
82 file_sp->GetSourceMapModificationID() !=
84 file_sp.reset();
87 if (file_sp)
88 file_sp->UpdateIfNeeded();
90 // If file_sp is no good or it points to a non-existent file, reset it.
91 if (!file_sp || !FileSyste
359 FileSP file_sp = GetFile(file_spec); local
681 AddSourceFile(const FileSP &file_sp) argument
694 FileSP file_sp; local
[all...]
H A DDebugger.cpp824 void Debugger::SetInputFile(FileSP file_sp, repro::DataRecorder *recorder) { argument
825 assert(file_sp && file_sp->IsValid());
827 m_input_file_sp = file_sp;
833 void Debugger::SetOutputFile(FileSP file_sp) { argument
834 assert(file_sp && file_sp->IsValid());
835 m_output_stream_sp = std::make_shared<StreamFile>(file_sp);
838 void Debugger::SetErrorFile(FileSP file_sp) { argument
839 assert(file_sp
[all...]
/freebsd-11-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.cpp121 void SBStream::RedirectToFile(FileSP file_sp) { argument
122 LLDB_RECORD_METHOD(void, SBStream, RedirectToFile, (FileSP), file_sp);
124 if (!file_sp || !file_sp->IsValid())
135 m_opaque_up = std::make_unique<StreamFile>(file_sp);
H A DSBFile.cpp19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { argument
20 LLDB_RECORD_DUMMY(void, SBfile, SBFile, (FileSP), file_sp);
H A DSBDebugger.cpp296 SBError SBDebugger::SetInputFile(FileSP file_sp) { argument
297 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (FileSP), file_sp);
298 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp)));
317 FileSP file_sp = file.m_opaque_sp; local
329 file_sp = std::make_shared<NativeFile>(fh, true);
333 if (!file_sp || !file_sp->IsValid()) {
338 m_opaque_sp->SetInputFile(file_sp, recorder);
342 SBError SBDebugger::SetOutputFile(FileSP file_sp) { argument
343 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (FileSP), file_sp);
374 SetErrorFile(FileSP file_sp) argument
397 File &file_sp = m_opaque_sp->GetInputFile(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFile.h25 SBFile(FileSP file_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h64 void SetImmediateOutputFile(lldb::FileSP file_sp) { argument
65 lldb::StreamSP stream_sp(new StreamFile(file_sp));
69 void SetImmediateErrorFile(lldb::FileSP file_sp) { argument
70 lldb::StreamSP stream_sp(new StreamFile(file_sp));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1373 FileSP file_sp; local
1377 file_sp = std::make_shared<NativeFile>(fd, options.get(), false);
1379 file_sp = std::static_pointer_cast<File>(
1382 if (!file_sp->IsValid())
1386 return file_sp;
1424 FileSP file_sp;
1430 file_sp = std::static_pointer_cast<File>(
1441 file_sp = std::static_pointer_cast<File>(
1445 if (!file_sp)
1449 if (!file_sp
[all...]
H A DScriptInterpreterPython.cpp675 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, argument
679 if (!file_sp || !*file_sp) {
683 File &file = *file_sp;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h101 void AddSourceFile(const FileSP &file_sp);
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A Dpost-html.cpp1641 const char *file_sp; member in class:assert_state
1675 file_sp = NULL;
1837 file_sp = replace_str(file_sp, strsave(f));
1916 check_value(val_sp, sp, "sp", file_sp, line_sp, &check_sp_flag);

Completed in 225 milliseconds