Searched refs:file_desc (Results 1 - 4 of 4) sorted by relevance

/frameworks/media/libvideoeditor/osal/src/
H A DM4OSA_FileReader.c110 pFileContext->file_desc);
161 pFileContext->file_desc);
262 err = fseek(pFileContext->file_desc, *pPosition, SeekModeOption);
452 iSavePos = ftell(pFileContext->file_desc); /*1- Check the first position */
453 fseek(pFileContext->file_desc, 0, SEEK_END); /*2- Go to the end of the file */
454 iSize = ftell(pFileContext->file_desc); /*3- Check the file size*/
455 fseek(pFileContext->file_desc, iSavePos, SEEK_SET); /*4- go to the first position*/
H A DM4OSA_FileWriter.c106 WriteSize = fwrite((void *)data,1, uiSize, pFileContext->file_desc);
113 fflush(pFileContext->file_desc);
148 uiSizeWrite = fwrite(data, sizeof(M4OSA_Char), uiSize, pFileContext->file_desc);
253 err = fseek(pFileContext->file_desc,*pPosition,SeekModeOption);
351 if (fflush(pFileContext->file_desc) != 0)
440 iSavePos = ftell(pFileContext->file_desc); /*1- Check the first position */
441 fseek(pFileContext->file_desc, 0, SEEK_END); /*2- Go to the end of the file */
442 *position = ftell(pFileContext->file_desc); /*3- Check the file size*/
443 fseek(pFileContext->file_desc, iSavePos, SEEK_SET); /*4- go to the first position*/
H A DM4OSA_FileCommon.c225 pFileContext->file_desc = pFileHandler;
433 if(fseek(pFileContext->file_desc, fpos_seek, SEEK_CUR) != 0)
494 i32_err_code = fclose(pFileContext->file_desc);
496 pFileContext->file_desc = M4OSA_NULL;
/frameworks/media/libvideoeditor/osal/inc/
H A DM4OSA_FileCommon_priv.h48 FILE* file_desc; member in struct:__anon1359

Completed in 369 milliseconds