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

/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBCommandReturnObject.cpp121 size_t SBCommandReturnObject::PutOutput(FileSP file_sp) { argument
122 LLDB_INSTRUMENT_VA(this, file_sp);
123 if (!file_sp)
125 return file_sp->Printf("%s", GetOutput());
145 size_t SBCommandReturnObject::PutError(FileSP file_sp) { argument
146 LLDB_INSTRUMENT_VA(this, file_sp);
147 if (!file_sp)
149 return file_sp->Printf("%s", GetError());
278 void SBCommandReturnObject::SetImmediateOutputFile(FileSP file_sp) { argument
279 LLDB_INSTRUMENT_VA(this, file_sp);
283 SetImmediateErrorFile(FileSP file_sp) argument
[all...]
H A DSBStream.cpp127 void SBStream::RedirectToFile(FileSP file_sp) { argument
128 LLDB_INSTRUMENT_VA(this, file_sp);
130 if (!file_sp || !file_sp->IsValid())
142 m_opaque_up = std::make_unique<StreamFile>(file_sp);
H A DSBFile.cpp19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { argument
22 LLDB_INSTRUMENT_VA(this, file_sp);
H A DSBDebugger.cpp399 SBError SBDebugger::SetInputFile(FileSP file_sp) { argument
400 LLDB_INSTRUMENT_VA(this, file_sp);
401 return SetInputFile(SBFile(file_sp));
404 SBError SBDebugger::SetOutputFile(FileSP file_sp) { argument
405 LLDB_INSTRUMENT_VA(this, file_sp);
406 return SetOutputFile(SBFile(file_sp));
434 SBError SBDebugger::SetErrorFile(FileSP file_sp) { argument
435 LLDB_INSTRUMENT_VA(this, file_sp);
436 return SetErrorFile(SBFile(file_sp));
480 File &file_sp local
[all...]
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DSourceManager.cpp82 FileSP file_sp; local
84 file_sp = debugger_sp->GetSourceFileCache().FindSourceFile(resolved_fspec);
90 if (target_sp && file_sp &&
91 file_sp->GetSourceMapModificationID() !=
93 file_sp.reset();
96 if (file_sp)
97 file_sp->UpdateIfNeeded();
99 // If file_sp is no good or it points to a non-existent file, reset it.
100 if (!file_sp || !FileSystem::Instance().Exists(file_sp
389 FileSP file_sp = GetFile(file_spec); local
716 AddSourceFile(const FileSP &file_sp) argument
729 FileSP file_sp; local
[all...]
H A DDebugger.cpp943 void Debugger::SetInputFile(FileSP file_sp) { argument
944 assert(file_sp && file_sp->IsValid());
945 m_input_file_sp = std::move(file_sp);
951 void Debugger::SetOutputFile(FileSP file_sp) { argument
952 assert(file_sp && file_sp->IsValid());
953 m_output_stream_sp = std::make_shared<StreamFile>(file_sp);
956 void Debugger::SetErrorFile(FileSP file_sp) { argument
957 assert(file_sp
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/API/
H A DSBFile.h25 SBFile(FileSP file_sp);
/openbsd-current/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h66 void SetImmediateOutputFile(lldb::FileSP file_sp) { argument
69 lldb::StreamSP stream_sp(new StreamFile(file_sp));
73 void SetImmediateErrorFile(lldb::FileSP file_sp) { argument
76 lldb::StreamSP stream_sp(new StreamFile(file_sp));
/openbsd-current/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1322 FileSP file_sp; local
1326 file_sp = std::make_shared<NativeFile>(fd, options.get(), false);
1328 file_sp = std::static_pointer_cast<File>(
1331 if (!file_sp->IsValid())
1335 return file_sp;
1366 FileSP file_sp;
1372 file_sp = std::static_pointer_cast<File>(
1383 file_sp = std::static_pointer_cast<File>(
1387 if (!file_sp)
1391 if (!file_sp
[all...]
H A DScriptInterpreterPython.cpp610 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, argument
614 if (!file_sp || !*file_sp) {
618 File &file = *file_sp;
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DSourceManager.h102 void AddSourceFile(const FileSP &file_sp);

Completed in 205 milliseconds