OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BufferIO
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/test/profile/
instrprof-bufferio.c
15
void lprofDeleteBufferIO(ProfBufferIO *
BufferIO
);
17
int lprofBufferIOWrite(ProfBufferIO *
BufferIO
, const char *Data, uint32_t Size);
18
int lprofBufferIOFlush(ProfBufferIO *
BufferIO
);
27
ProfBufferIO *
BufferIO
;
45
BufferIO
= lprofCreateBufferIOInternal(File[J], IOBufferSize[J]);
47
lprofBufferIOWrite(
BufferIO
, "Short Strings:\n",
50
lprofBufferIOWrite(
BufferIO
, SmallData, strlen(SmallData));
52
lprofBufferIOWrite(
BufferIO
, "Long Strings:\n", strlen("Long Strings:\n"));
54
lprofBufferIOWrite(
BufferIO
, MediumData, strlen(MediumData));
56
lprofBufferIOWrite(
BufferIO
, "Extra Long Strings:\n"
[
all
...]
/external/compiler-rt/lib/profile/
InstrProfilingWriter.c
47
static void llvmInitBufferIO(ProfBufferIO *
BufferIO
, WriterCallback FileWriter,
49
BufferIO
->File = File;
50
BufferIO
->FileWriter = FileWriter;
51
BufferIO
->BufferStart = Buffer;
52
BufferIO
->BufferSz = BufferSz;
53
BufferIO
->CurOffset = 0;
68
COMPILER_RT_VISIBILITY void lprofDeleteBufferIO(ProfBufferIO *
BufferIO
) {
77
lprofBufferIOWrite(ProfBufferIO *
BufferIO
, const uint8_t *Data, uint32_t Size) {
79
if (Size +
BufferIO
->CurOffset >
BufferIO
->BufferSz)
[
all
...]
InstrProfilingInternal.h
79
* The interface to destroy the
bufferIO
handle and reclaim
82
void lprofDeleteBufferIO(ProfBufferIO *
BufferIO
);
86
* \c
BufferIO
. Returns 0 if successful, otherwise return -1.
88
int lprofBufferIOWrite(ProfBufferIO *
BufferIO
, const uint8_t *Data,
94
int lprofBufferIOFlush(ProfBufferIO *
BufferIO
);
Completed in 366 milliseconds