Searched refs:error_or_file (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DReproducerInstrumentation.cpp38 auto error_or_file = llvm::MemoryBuffer::getFile(file.GetPath()); local
39 if (auto err = error_or_file.getError())
42 return Replay((*error_or_file)->getBuffer());
H A DReproducer.cpp222 auto error_or_file = MemoryBuffer::getFile(index.GetPath()); local
223 if (auto err = error_or_file.getError())
226 yaml::Input yin((*error_or_file)->getBuffer());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.cpp188 auto error_or_file = MemoryBuffer::getFile(path.GetPath()); local
189 if (auto err = error_or_file.getError())
192 yaml::Input yin((*error_or_file)->getBuffer());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectReproducer.cpp441 auto error_or_file = MemoryBuffer::getFile(*gdb_file); variable
442 if (auto err = error_or_file.getError()) {
448 yaml::Input yin((*error_or_file)->getBuffer());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducer.h357 auto error_or_file = llvm::MemoryBuffer::getFile(file.GetPath());
358 if (auto err = error_or_file.getError())
362 llvm::yaml::Input yin((*error_or_file)->getBuffer());

Completed in 168 milliseconds