Home | History | Annotate | Download | only in src

Lines Matching refs:pContext

38  * @param      pContext: (OUT) Context of the core file writer
52 M4OSA_ERR M4OSA_fileWriteOpen(M4OSA_Context* pContext, M4OSA_Void* pUrl,
56 pContext, pUrl, fileModeAccess);
58 return M4OSA_fileCommonOpen(M4OSA_FILE_WRITER, pContext, pUrl,
71 * @param pContext: (IN/OUT) Context of the core file reader
80 M4OSA_ERR M4OSA_fileWriteData(M4OSA_Context pContext, M4OSA_MemAddr8 data,
83 M4OSA_FileContext* pFileContext = pContext;
90 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
91 "M4OSA_fileWriteData: pContext is M4OSA_NULL");
132 err = M4OSA_fileCommonSeek(pContext, M4OSA_kFileSeekBeginning,
199 * @param pContext: (IN/OUT) Context of the core file reader
209 M4OSA_ERR M4OSA_fileWriteSeek(M4OSA_Context pContext, M4OSA_FileSeekAccessMode seekMode,
212 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext;
218 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
219 "M4OSA_fileWriteSeek: pContext is M4OSA_NULL");
272 err = M4OSA_fileCommonSeek(pContext, seekMode, pPosition);
302 * @param pContext: (IN/OUT) Context of the core file writer
310 M4OSA_ERR M4OSA_fileWriteClose(M4OSA_Context pContext)
312 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext;
314 M4OSA_TRACE1_1("M4OSA_fileWriteClose : pC = 0x%p", pContext);
316 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
317 "M4OSA_fileWriteClose: pContext is M4OSA_NULL");
319 return M4OSA_fileCommonClose(M4OSA_FILE_WRITER, pContext);
326 * @param pContext: (IN/OUT) Context of the core file writer
332 M4OSA_ERR M4OSA_fileWriteFlush(M4OSA_Context pContext)
334 M4OSA_FileContext* pFileContext = pContext;
337 M4OSA_TRACE2_1("M4OSA_fileWriteFlush : pC = 0x%p", pContext);
339 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
340 "M4OSA_fileWriteFlush: pcontext is M4OSA_NULL");
375 * @param pContext: (IN/OUT) Context of the core file writer
387 M4OSA_ERR M4OSA_fileWriteGetOption(M4OSA_Context pContext, M4OSA_OptionID optionID,
390 M4OSA_FileContext* pFileContext = pContext;
394 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
395 "M4OSA_fileWriteGetOption: pContext is M4OSA_NULL");
464 return M4OSA_fileCommonGetURL (pContext, (M4OSA_Char**)pOptionValue);
471 return M4OSA_fileCommonGetAttribute(pContext,
489 *pOptionValue = pContext;
518 * @param pContext: (IN/OUT) Context of the core file writer
530 M4OSA_ERR M4OSA_fileWriteSetOption(M4OSA_Context pContext,
534 M4OSA_FileContext* pFileContext = pContext;
538 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,