• Home
  • Raw
  • Download

Lines Matching refs:PFile

28 ESR_ReturnCode PFileDestroy(PFile* self)  in PFileDestroy()
38 ESR_ReturnCode PFileOpen(PFile* self, const LCHAR* mode) in PFileOpen()
48 ESR_ReturnCode PFileClose(PFile* self) in PFileClose()
58 ESR_ReturnCode PFileRead(PFile* self, void* buffer, size_t size, size_t* count) in PFileRead()
68 ESR_ReturnCode PFileWrite(PFile* self, void* buffer, size_t size, size_t* count) in PFileWrite()
78 ESR_ReturnCode PFileFlush(PFile* self) in PFileFlush()
88 ESR_ReturnCode PFileSeek(PFile* self, long offset, int origin) in PFileSeek()
99 ESR_ReturnCode PFileGetPosition(PFile* self, size_t* position) in PFileGetPosition()
109 ESR_ReturnCode PFileIsOpen(PFile* self, ESR_BOOL* isOpen) in PFileIsOpen()
119 ESR_ReturnCode PFileIsEOF(PFile* self, ESR_BOOL* isEof) in PFileIsEOF()
129 ESR_ReturnCode PFileGetFilename(PFile* self, LCHAR* filename, size_t* len) in PFileGetFilename()
142 ESR_ReturnCode PFileIsErrorSet(PFile* self, ESR_BOOL* isError) in PFileIsErrorSet()
152 ESR_ReturnCode PFileClearError(PFile* self) in PFileClearError()
162 ESR_ReturnCode PFileVfprintf(PFile* self, int* result, const LCHAR* format, va_list args) in PFileVfprintf()
175 ESR_ReturnCode PFileFgetc(PFile* self, LINT* result) in PFileFgetc()
185 ESR_ReturnCode PFileFgets(PFile* self, LCHAR* string, int n, LCHAR** result) in PFileFgets()
195 ESR_ReturnCode PFileReadInt(PFile* self, int* value) in PFileReadInt()
270 ESR_ReturnCode PFileReadLCHAR(PFile* self, LCHAR* value, size_t len) in PFileReadLCHAR()
335 PFile* pfopen(const LCHAR* filename, const LCHAR* mode) in pfopen()
337 PFile* result; in pfopen()
359 size_t pfread(void* buffer, size_t size, size_t count, PFile* stream) in pfread()
369 size_t pfwrite(const void* buffer, size_t size, size_t count, PFile* stream) in pfwrite()
379 int pfclose(PFile* stream) in pfclose()
389 void prewind(PFile* stream) in prewind()
394 int pfseek(PFile* stream, long offset, int origin) in pfseek()
404 long pftell(PFile* stream) in pftell()
415 int pfeof(PFile* stream) in pfeof()
425 int pferror(PFile* stream) in pferror()
435 void pclearerr(PFile* stream) in pclearerr()
440 int pfflush(PFile* stream) in pfflush()
450 LCHAR* pfgets(LCHAR* string, int n, PFile* self) in pfgets()
461 LINT pfgetc(PFile* self) in pfgetc()
472 int pfprintf(PFile* stream, const LCHAR* format, ...) in pfprintf()
490 int pvfprintf(PFile* stream, const LCHAR* format, va_list argptr) in pvfprintf()