Home | History | Annotate | Download | only in tests

Lines Matching refs:fIn

481                HANDLE fIn, long lBuffUsed)
484 FILE *fIn, int lBuffUsed)
492 lSize = GetFileSize(fIn, NULL );
493 SetFilePointer(fIn, 0, NULL, FILE_BEGIN);
495 //fseek (fIn , 0 , SEEK_END);
496 //lSize = ftell (fIn);
497 //rewind (fIn);
501 ReadFile(fIn, pBuf->pBuffer, lBuffUsed, &nRead, NULL);
503 nRead = fread(pBuf->pBuffer,1, lBuffUsed, fIn);
631 HANDLE fIn = NULL;
637 FILE* fIn = NULL;
800 fIn = CreateFile(szInFile, GENERIC_READ, 0,
802 if (INVALID_HANDLE_VALUE == fIn) {
810 fIn = fopen(szInFile, "r");
811 if ( fIn == NULL ) {
819 lBuffused = ReadJpegSections(fIn , imageinfo);
1275 rewind(fIn);
1276 nRead = fill_data(pInBuffHead[0], fIn, lBuffused);
1521 if ( fIn != NULL ) {
1524 CloseHandle(fIn);
1526 fclose(fIn);