Home
last modified time | relevance | path

Searched refs:hFile (Results 1 – 2 of 2) sorted by relevance

/utopia/UTPA2-700.0.x/modules/mfe/api/mfe/
H A DFramerMp4V.c128 HANDLE hMapFile, hFile; in DoFileMapping() local
132 hFile = CreateFile(lpFileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL); in DoFileMapping()
134 if(hFile && hFile != INVALID_HANDLE_VALUE) in DoFileMapping()
136 pBsInfo->nFileSize = GetFileSize(hFile, NULL); in DoFileMapping()
137 hMapFile = CreateFileMapping(hFile, NULL, PAGE_READONLY, 0, 0, NULL); in DoFileMapping()
146 CloseHandle(hFile); in DoFileMapping()
/utopia/UTPA2-700.0.x/modules/gpd/api/gpd/
H A DapiGPD.c1360 hFile = fopen(param->filename, "rb"); in MAdp_GPD_Play()
1361 if(!hFile) in MAdp_GPD_Play()
1367 fseek (hFile , 0 , SEEK_END); in MAdp_GPD_Play()
1368 lSize = ftell (hFile); in MAdp_GPD_Play()
1369 rewind (hFile); in MAdp_GPD_Play()
1372 result = fread ((char *)pGPDContext->GpdAddrInfo.u32VA_ReadBufferAddr,1,lSize,hFile); in MAdp_GPD_Play()