Home
last modified time | relevance | path

Searched refs:WriteAll (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Core/
H A DCommunicationTest.cpp47 TEST(CommunicationTest, WriteAll) { in TEST() argument
80 EXPECT_EQ(write_comm.WriteAll(data.data(), data.size(), conn_status, &error), in TEST()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_basic_logging.cpp112 LW->WriteAll(reinterpret_cast<char *>(&Header), in getLog()
247 LW->WriteAll(reinterpret_cast<char *>(FirstEntry), in InMemoryRawLog()
270 LW->WriteAll(reinterpret_cast<char *>(FirstEntry), in InMemoryRawLogWithArg()
293 LW->WriteAll(reinterpret_cast<char *>(FirstEntry), in InMemoryRawLogWithArg()
360 TLD.LogWriter->WriteAll(reinterpret_cast<char *>(TLD.InMemoryBuffer), in TLDDestructor()
H A Dxray_utils.cpp49 void LogWriter::WriteAll(const char *Begin, const char *End) XRAY_NEVER_INSTRUMENT { in WriteAll() function in __xray::LogWriter
140 void LogWriter::WriteAll(const char *Begin, const char *End) XRAY_NEVER_INSTRUMENT {
H A Dxray_utils.h39 void WriteAll(const char *Begin, const char *End);
H A Dxray_fdr_logging.cpp349 LW->WriteAll(reinterpret_cast<char *>(&Header), in fdrLoggingFlush()
373 LW->WriteAll(reinterpret_cast<char *>(&ExtentsRecord), in fdrLoggingFlush()
376 LW->WriteAll(reinterpret_cast<char *>(B.Data), in fdrLoggingFlush()
H A Dxray_profiling.cpp252 LW->WriteAll(reinterpret_cast<const char *>(B.Data), in profilingFlush()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dmod-file.h37 bool WriteAll();
55 void WriteAll(const Scope &);
H A Dmod-file.cpp101 bool ModFileWriter::WriteAll() { in WriteAll() function in Fortran::semantics::ModFileWriter
105 WriteAll(context_.globalScope()); in WriteAll()
109 void ModFileWriter::WriteAll(const Scope &scope) { in WriteAll() function in Fortran::semantics::ModFileWriter
121 WriteAll(scope); // write out submodules in WriteOne()
H A Dsemantics.cpp495 ModFileWriter{context_}.WriteAll(); in Perform()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DCommunication.h225 size_t WriteAll(const void *src, size_t src_len,
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp99 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendAck()
109 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendNack()
158 size_t bytes_written = WriteAll(packet_data, packet_length, status, nullptr); in SendRawPacketNoLock()
/llvm-project-15.0.7/lldb/source/Core/
H A DCommunication.cpp190 size_t Communication::WriteAll(const void *src, size_t src_len, in WriteAll() function in Communication