HomeSort by relevance Sort by last modified time
    Searched refs:isEof (Results 1 - 7 of 7) sorted by null

  /external/srec/portable/src/
PFileWrap.c 155 ESR_ReturnCode PFileIsEOF ( PFile *self, ESR_BOOL *isEof )
166 *isEof = ESR_TRUE;
168 *isEof = ESR_FALSE;
176 *isEof = ESR_TRUE;
178 *isEof = ESR_FALSE;
PANSIFileImpl.c 55 impl->Interface.Interface.isEOF = &PANSIFileIsEOFImpl;
332 ESR_ReturnCode PANSIFileIsEOFImpl(PFile* self, ESR_BOOL* isEof)
338 if (isEof == NULL)
352 *isEof = (posCur == posEnd);
356 *isEof = feof(impl->value) != 0;
PFile.c 119 ESR_ReturnCode PFileIsEOF(PFile* self, ESR_BOOL* isEof)
126 return self->isEOF(self, isEof);
  /external/srec/portable/include/
PANSIFileImpl.h 102 PORTABLE_API ESR_ReturnCode PANSIFileIsEOFImpl(PFile* self, ESR_BOOL* isEof);