Home | History | Annotate | Download | only in src

Lines Matching refs:pContext

57 M4OSA_ERR M4OSA_fileReadOpen(M4OSA_Context* pContext, M4OSA_Void* pFileDescriptor,
61 pContext, pFileDescriptor, fileModeAccess);
63 return M4OSA_fileCommonOpen(M4OSA_FILE_READER, pContext,
86 M4OSA_ERR M4OSA_fileReadData(M4OSA_Context pContext, M4OSA_MemAddr8 data,
89 M4OSA_FileContext* pFileContext = pContext;
96 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
97 "M4OSA_fileReadData: pContext is M4OSA_NULL");
143 err = M4OSA_fileCommonSeek(pContext, M4OSA_kFileSeekBeginning,
218 M4OSA_ERR M4OSA_fileReadSeek(M4OSA_Context pContext, M4OSA_FileSeekAccessMode seekMode,
221 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext;
227 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
228 "M4OSA_fileReadSeek: pContext is M4OSA_NULL");
287 err = M4OSA_fileCommonSeek(pContext, M4OSA_kFileSeekBeginning,
303 err = M4OSA_fileCommonSeek(pContext, seekMode, pPosition);
326 * @param pContext: (IN/OUT) Context of the core file reader
333 M4OSA_ERR M4OSA_fileReadClose(M4OSA_Context pContext)
335 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext;
337 M4OSA_TRACE1_1("M4OSA_fileReadClose : pC = 0x%p", pContext);
339 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
340 "M4OSA_fileReadClose: pContext is M4OSA_NULL");
347 return M4OSA_fileCommonClose(M4OSA_FILE_READER, pContext);
362 * @param pContext: (IN/OUT) Context of the core file reader
373 M4OSA_ERR M4OSA_fileReadGetOption(M4OSA_Context pContext, M4OSA_FileReadOptionID optionID,
376 M4OSA_FileContext* pFileContext = pContext;
380 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
381 "M4OSA_fileReadGetOption: pContext is M4OSA_NULL");
471 return M4OSA_fileCommonGetAttribute(pContext,
479 return M4OSA_fileCommonGetURL(pContext, (M4OSA_Char**)pOptionValue);
503 * @param pContext: (IN/OUT) Context of the core file reader
514 M4OSA_ERR M4OSA_fileReadSetOption(M4OSA_Context pContext,
518 M4OSA_FileContext* pFileContext = pContext;
522 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
523 "M4OSA_fileReadSetOption: pContext is M4OSA_NULL");