Lines Matching refs:BufferIO
15 void lprofDeleteBufferIO(ProfBufferIO *BufferIO);
17 int lprofBufferIOWrite(ProfBufferIO *BufferIO, const char *Data, uint32_t Size);
18 int lprofBufferIOFlush(ProfBufferIO *BufferIO);
27 ProfBufferIO *BufferIO; in main() local
45 BufferIO = lprofCreateBufferIOInternal(File[J], IOBufferSize[J]); in main()
47 lprofBufferIOWrite(BufferIO, "Short Strings:\n", in main()
50 lprofBufferIOWrite(BufferIO, SmallData, strlen(SmallData)); in main()
52 lprofBufferIOWrite(BufferIO, "Long Strings:\n", strlen("Long Strings:\n")); in main()
54 lprofBufferIOWrite(BufferIO, MediumData, strlen(MediumData)); in main()
56 lprofBufferIOWrite(BufferIO, "Extra Long Strings:\n", in main()
59 lprofBufferIOWrite(BufferIO, LargeData, strlen(LargeData)); in main()
61 lprofBufferIOWrite(BufferIO, "Mixed Strings:\n", strlen("Mixed Strings:\n")); in main()
63 lprofBufferIOWrite(BufferIO, MediumData, strlen(MediumData)); in main()
64 lprofBufferIOWrite(BufferIO, SmallData, strlen(SmallData)); in main()
66 lprofBufferIOWrite(BufferIO, "Endings:\n", strlen("Endings:\n")); in main()
67 lprofBufferIOWrite(BufferIO, "END\n", strlen("END\n")); in main()
68 lprofBufferIOWrite(BufferIO, "ENDEND\n", strlen("ENDEND\n")); in main()
69 lprofBufferIOWrite(BufferIO, "ENDENDEND\n", strlen("ENDENDEND\n")); in main()
70 lprofBufferIOWrite(BufferIO, "ENDENDENDEND\n", strlen("ENDENDENDEND\n")); in main()
71 lprofBufferIOFlush(BufferIO); in main()
73 lprofDeleteBufferIO(BufferIO); in main()