Home
last modified time | relevance | path

Searched refs:ProfBufferIO (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingInternal.h71 typedef struct ProfBufferIO { struct
80 } ProfBufferIO; argument
83 ProfBufferIO *lprofCreateBufferIOInternal(void *File, uint32_t BufferSz);
88 ProfBufferIO *lprofCreateBufferIO(ProfDataWriter *FileWriter);
94 void lprofDeleteBufferIO(ProfBufferIO *BufferIO);
100 int lprofBufferIOWrite(ProfBufferIO *BufferIO, const uint8_t *Data,
106 int lprofBufferIOFlush(ProfBufferIO *BufferIO);
H A DInstrProfilingWriter.c26 static ProfBufferIO TheBufferIO;
55 static void llvmInitBufferIO(ProfBufferIO *BufferIO, ProfDataWriter *FileWriter, in llvmInitBufferIO()
64 COMPILER_RT_VISIBILITY ProfBufferIO *
76 COMPILER_RT_VISIBILITY void lprofDeleteBufferIO(ProfBufferIO *BufferIO) { in lprofDeleteBufferIO()
87 lprofBufferIOWrite(ProfBufferIO *BufferIO, const uint8_t *Data, uint32_t Size) { in lprofBufferIOWrite()
110 COMPILER_RT_VISIBILITY int lprofBufferIOFlush(ProfBufferIO *BufferIO) { in lprofBufferIOFlush()
126 static int writeOneValueProfData(ProfBufferIO *BufferIO, in writeOneValueProfData()
221 ProfBufferIO *BufferIO; in writeValueProfData()
H A DInstrProfilingFile.c335 COMPILER_RT_VISIBILITY ProfBufferIO *
343 ProfBufferIO *IO = lprofCreateBufferIO(fileWriter); in lprofCreateBufferIOInternal()