HomeSort by: relevance | last modified time | path
    Searched refs:Writer (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_log_writer_test.cc 46 FDRLogWriter Writer(B);
53 ASSERT_THAT(Writer.writeMetadataRecords(Preamble),
55 ASSERT_TRUE(Writer.writeMetadata<MetadataRecord::RecordKinds::NewCPUId>(1));
57 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Enter, 1, 1));
59 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Exit, 1, 1));
84 FDRLogWriter Writer(B);
94 ASSERT_THAT(Writer.writeMetadataRecords(Preamble),
96 ASSERT_TRUE(Writer.writeMetadata<MetadataRecord::RecordKinds::NewCPUId>(
100 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Enter, 1, TSC++));
102 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Exit, 1, TSC++))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingWriter.c 20 /* The buffer writer is reponsponsible in keeping writer state
94 COMPILER_RT_VISIBILITY int llvmWriteProfData(WriterCallback Writer,
105 return llvmWriteProfDataImpl(Writer, WriterCtx, DataBegin, DataEnd,
111 static int writeValueProfData(WriterCallback Writer, void *WriterCtx,
121 BufferIO = llvmCreateBufferIO(Writer, WriterCtx, BufferSz);
140 WriterCallback Writer, void *WriterCtx,
171 if (Writer(IOVec, sizeof(IOVec) / sizeof(*IOVec), &WriterCtx))
174 return writeValueProfData(Writer, WriterCtx, ValueDataBegin, DataSize);
InstrProfilingInternal.h 43 * low level writer callback function.
91 * through the low level writer callback.
96 * callback by other high level writer methods such as buffered IO writer
97 * and profile data writer. */
101 int llvmWriteProfData(WriterCallback Writer, void *WriterCtx,
104 int llvmWriteProfDataImpl(WriterCallback Writer, void *WriterCtx,
  /src/common/dist/zlib/contrib/ada/
zlib-streams.adb 24 -- We should flush the data written by the writer.
28 Close (Stream.Writer);
82 Init_Filter (Stream.Writer, Back_Compressed);
109 Flush (Stream.Writer, Buffer, Last, Mode);
123 return Is_Open (Stream.Reader) or else Is_Open (Stream.Writer);
204 Write (Stream.Writer, Item, No_Flush);
213 return Total_In (Stream.Writer);
222 return Total_Out (Stream.Writer);
zlib-streams.ads 111 Writer : Filter_Type;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_fdr_logging.cc 63 FDRLogWriter *Writer = nullptr;
472 // Set up a buffer, before setting up the log writer. Bail out on failure.
476 // Set up the Log Writer for this thread.
477 if (UNLIKELY(TLD.Writer == nullptr)) {
480 TLD.Writer = LWStorage;
482 TLD.Writer->resetRecord();
487 FDRController<>(TLD.BQ, TLD.Buffer, *TLD.Writer, clock_gettime,

Completed in 14 milliseconds