Home | History | Annotate | Download | only in test

Lines Matching refs:fIn

806 int fill_data (OMX_BUFFERHEADERTYPE *pBufferPrivate, HANDLE fIn, int buffSize)
808 int fill_data (OMX_BUFFERHEADERTYPE *pBuf, FILE *fIn, int buffSize)
816 ReadFile(fIn, pBuf->pBuffer, lSize, &nRead, NULL);
818 nRead = fread(pBuf->pBuffer,1, buffSize , fIn);
824 oneByte = fgetc(fIn);
825 if (feof(fIn)){
828 rewind(fIn);
831 ungetc(oneByte, fIn);
1091 HANDLE fIn = NULL;
1098 FILE* fIn = NULL;
1379 fIn = CreateFile(szInFile, GENERIC_READ, 0,
1381 if (INVALID_HANDLE_VALUE == fIn)
1388 fIn = fopen(szInFile, "r");
1389 if ( fIn == NULL ) {
1817 nRead = fill_data(pInBuff[nCounter], fIn,pInPortDef->nBufferSize);
1902 nRead = fill_data(pBuffer, fIn,pInPortDef->nBufferSize);
1996 CloseHandle(fIn);
1999 rewind (fIn);
2000 fclose(fIn);