Searched defs:pContext (Results 1 - 25 of 81) sorted by relevance

1234

/frameworks/compile/libbcc/lib/Core/
H A DBCCContextImpl.h39 BCCContextImpl(BCCContext &pContext) { } argument
H A DSource.cpp39 static inline llvm::Module *helper_load_bitcode(llvm::LLVMContext &pContext, argument
42 llvm::Module *module = llvm::getLazyBitcodeModule(pInput, pContext, &error);
56 Source *Source::CreateFromBuffer(BCCContext &pContext, argument
69 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext,
76 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
84 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) { argument
95 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext,
102 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
110 Source *Source::CreateFromFd(BCCContext &pContext, int pFd) { argument
123 llvm::Module *module = helper_load_bitcode(pContext
138 CreateFromModule(BCCContext &pContext, llvm::Module &pModule, bool pNoDelete) argument
148 Source(BCCContext &pContext, llvm::Module &pModule, bool pNoDelete) argument
182 CreateEmpty(BCCContext &pContext, const std::string &pName) argument
[all...]
/frameworks/av/libvideoeditor/vss/src/
H A DM4PTO3GPP_VideoPreProcessing.c46 * M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
50 * @param pContext (IN) VPP context, which actually is the M4PTO3GPP internal context
60 M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, argument
77 M4PTO3GPP_InternalContext *pC = (M4PTO3GPP_InternalContext*)(pContext);
H A DM4VSS3GPP_MediaAndCodecSubscription.c134 * @param pContext: (IN) Execution context.
136 * @return M4ERR_PARAMETER pContext is NULL
139 M4OSA_ERR M4VSS3GPP_subscribeMediaAndCodec(M4VSS3GPP_MediaAndCodecCtxt *pContext) argument
161 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pContext);
178 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface,
194 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface,
210 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface,
226 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface,
246 err = M4VSS3GPP_registerVideoDecoder( pContext, videoDecoderType, pVideoDecoderInterface);
258 err = M4VSS3GPP_registerVideoDecoder( pContext, videoDecoderTyp
[all...]
H A DM4AD_Null.c67 * @param pContext: (OUT) Context of the decoder
77 M4OSA_ERR M4AD_NULL_create( M4AD_Context* pContext, argument
83 M4OSA_DEBUG_IF1((pContext == 0), M4ERR_PARAMETER,
96 *pContext = pC;
H A DM4PCMR_CoreReader.c39 * M4OSA_ERR M4PCMR_openRead(M4OSA_Context* pContext, M4OSA_Void* pUrl,
48 * @param pContext: (OUT) Pointer on the PCM Reader context
52 * @return M4ERR_PARAMETER pContext and/or pUrl and/or pFileFunction is NULL
62 M4OSA_ERR M4PCMR_openRead(M4OSA_Context* pContext, M4OSA_Void* pUrl, argument
71 if((M4OSA_NULL == pContext)|| (M4OSA_NULL == pUrl) ||(M4OSA_NULL == pFileFunction))
84 *pContext = (M4OSA_Context)context;
164 *pContext = M4OSA_NULL;
/frameworks/wilhelm/src/itf/
H A DIVisualization.c23 slVisualizationCallback callback, void *pContext, SLmilliHertz rate)
33 thiz->mContext = pContext;
22 IVisualization_RegisterVisualizationCallback(SLVisualizationItf self, slVisualizationCallback callback, void *pContext, SLmilliHertz rate) argument
H A DIMIDIMessage.c39 slMetaEventCallback callback, void *pContext)
46 thiz->mMetaEventContext = pContext;
55 slMIDIMessageCallback callback, void *pContext)
62 thiz->mMessageContext = pContext;
38 IMIDIMessage_RegisterMetaEventCallback(SLMIDIMessageItf self, slMetaEventCallback callback, void *pContext) argument
54 IMIDIMessage_RegisterMIDIMessageCallback(SLMIDIMessageItf self, slMIDIMessageCallback callback, void *pContext) argument
H A DIOutputMix.c48 slMixDeviceChangeCallback callback, void *pContext)
55 thiz->mContext = pContext;
47 IOutputMix_RegisterDeviceChangeCallback(SLOutputMixItf self, slMixDeviceChangeCallback callback, void *pContext) argument
H A DIBufferQueue.c146 slBufferQueueCallback callback, void *pContext)
155 thiz->mContext = pContext;
145 IBufferQueue_RegisterCallback(SLBufferQueueItf self, slBufferQueueCallback callback, void *pContext) argument
H A DIPrefetchStatus.c61 slPrefetchCallback callback, void *pContext)
68 thiz->mContext = pContext;
60 IPrefetchStatus_RegisterCallback(SLPrefetchStatusItf self, slPrefetchCallback callback, void *pContext) argument
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompilerDriver.h61 inline void setRSRuntimeLookupContext(void *pContext) argument
62 { mRSRuntime.setContext(pContext); }
67 RSExecutable *build(BCCContext &pContext,
/frameworks/compile/mclinker/lib/LD/
H A DSectionMerger.cpp18 SectionMerger::SectionMerger(SectionMap& pSectionMap, LDContext& pContext) argument
20 m_Output(pContext),
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Mutex.c51 * @param pContext:(OUT) Context of the created mutex
57 M4OSA_ERR M4OSA_mutexOpen(M4OSA_Context* pContext) argument
63 M4OSA_TRACE1_1("M4OSA_mutexOpen\t\tM4OSA_Context* 0x%x", pContext);
64 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER,
65 "M4OSA_mutexOpen: pContext is M4OSA_NULL");
67 *pContext = M4OSA_NULL;
106 *pContext = (M4OSA_Context) pMutexContext;
H A DM4OSA_FileReader.c57 M4OSA_ERR M4OSA_fileReadOpen(M4OSA_Context* pContext, M4OSA_Void* pFileDescriptor, argument
61 pContext, pFileDescriptor, fileModeAccess);
63 return M4OSA_fileCommonOpen(M4OSA_FILE_READER, pContext,
86 M4OSA_ERR M4OSA_fileReadData(M4OSA_Context pContext, M4OSA_MemAddr8 data, argument
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, argument
221 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext;
333 M4OSA_fileReadClose(M4OSA_Context pContext) argument
373 M4OSA_fileReadGetOption(M4OSA_Context pContext, M4OSA_FileReadOptionID optionID, M4OSA_DataOption* pOptionValue) argument
514 M4OSA_fileReadSetOption(M4OSA_Context pContext, M4OSA_FileReadOptionID optionID, M4OSA_DataOption optionValue) argument
[all...]
H A DM4OSA_FileWriter.c38 * @param pContext: (OUT) Context of the core file writer
52 M4OSA_ERR M4OSA_fileWriteOpen(M4OSA_Context* pContext, M4OSA_Void* pUrl, argument
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, argument
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_kFileSeekBeginnin
209 M4OSA_fileWriteSeek(M4OSA_Context pContext, M4OSA_FileSeekAccessMode seekMode, M4OSA_FilePosition* pPosition) argument
310 M4OSA_fileWriteClose(M4OSA_Context pContext) argument
332 M4OSA_fileWriteFlush(M4OSA_Context pContext) argument
387 M4OSA_fileWriteGetOption(M4OSA_Context pContext, M4OSA_OptionID optionID, M4OSA_DataOption* pOptionValue) argument
530 M4OSA_fileWriteSetOption(M4OSA_Context pContext, M4OSA_OptionID optionID, M4OSA_DataOption optionValue) argument
[all...]
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_MediaAndCodecSubscription.c132 * M4OSA_ERR M4MCS_SubscribeMediaAndCodec(M4MCS_Context pContext);
136 * @param pContext: (IN) Execution context.
138 * @return M4ERR_PARAMETER pContext is NULL
141 M4OSA_ERR M4MCS_subscribeMediaAndCodec(M4MCS_Context pContext) argument
163 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pContext);
181 err = M4MCS_registerReader( pContext, readerMediaType,
199 err = M4MCS_registerReader( pContext, readerMediaType,
218 err = M4MCS_registerReader( pContext, readerMediaType,
241 err = M4MCS_registerVideoDecoder( pContext, videoDecoderType,
258 err = M4MCS_registerVideoDecoder( pContext, videoDecoderTyp
[all...]
H A DM4MCS_VideoPreProcessing.c56 * M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
60 * @param pContext (IN) VPP context, which actually is the MCS internal context in our case
70 M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, argument
79 M4MCS_InternalContext *pC = (M4MCS_InternalContext*)(pContext);
H A DM4MCS_Codecs.c44 * @param pContext (IN/OUT) MCS context.
49 M4OSA_ERR M4MCS_clearInterfaceTables(M4MCS_Context pContext) argument
51 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext;
126 * @param pContext: (IN) Execution context.
128 * @return M4ERR_PARAMETER pContext,pWtrGlobalInterface or
133 M4OSA_ERR M4MCS_registerWriter(M4MCS_Context pContext, M4WRITER_OutputFileType MediaType, argument
137 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext;
148 M4OSA_TRACE3_3("MCS: M4MCS_registerWriter called with pContext=0x%x,\
179 * @param pContext: (IN) Execution context.
181 * @return M4ERR_PARAMETER pContext o
185 M4MCS_registerVideoEncoder( M4MCS_Context pContext, M4ENCODER_Format MediaType, M4ENCODER_GlobalInterface *pEncGlobalInterface) argument
242 M4MCS_registerAudioEncoder( M4MCS_Context pContext, M4ENCODER_AudioFormat MediaType, M4ENCODER_AudioGlobalInterface *pEncGlobalInterface) argument
294 M4MCS_registerReader( M4MCS_Context pContext, M4READER_MediaType mediaType, M4READER_GlobalInterface *pRdrGlobalInterface, M4READER_DataInterface *pRdrDataInterface) argument
341 M4MCS_registerVideoDecoder( M4MCS_Context pContext, M4DECODER_VideoType decoderType, M4DECODER_VideoInterface *pDecoderInterface) argument
403 M4MCS_registerAudioDecoder( M4MCS_Context pContext, M4AD_Type decoderType, M4AD_Interface *pDecoderInterface) argument
446 M4MCS_unRegisterAllWriters(M4MCS_Context pContext) argument
482 M4MCS_unRegisterAllEncoders(M4MCS_Context pContext) argument
526 M4MCS_unRegisterAllReaders(M4MCS_Context pContext) argument
563 M4MCS_unRegisterAllDecoders(M4MCS_Context pContext) argument
611 M4MCS_setCurrentWriter( M4MCS_Context pContext, M4VIDEOEDITING_FileType mediaType) argument
668 M4MCS_setCurrentVideoEncoder( M4MCS_Context pContext, M4VIDEOEDITING_VideoFormat mediaType) argument
720 M4MCS_setCurrentAudioEncoder( M4MCS_Context pContext, M4VIDEOEDITING_AudioFormat mediaType) argument
774 M4MCS_setCurrentReader( M4MCS_Context pContext, M4VIDEOEDITING_FileType mediaType) argument
824 M4MCS_setCurrentVideoDecoder( M4MCS_Context pContext, M4_StreamType mediaType) argument
873 M4MCS_setCurrentAudioDecoder( M4MCS_Context pContext, M4_StreamType mediaType) argument
[all...]
/frameworks/av/libvideoeditor/vss/3gpwriter/src/
H A DM4MP4W_Interface.c69 * M4OSA_ERR M4WRITER_3GP_openWrite(M4WRITER_Context* pContext, void* pWhat,
73 * @param pContext: (OUT) Execution context of the 3GP writer, allocated by this function.
83 * @return M4ERR_PARAMETER: pContext or pFilePtrFct is M4OSA_NULL (debug only)
87 M4OSA_ERR M4WRITER_3GP_openWrite( M4WRITER_Context* pContext, argument
100 M4OSA_DEBUG_IF2((M4OSA_NULL == pContext),M4ERR_PARAMETER,
101 "M4WRITER_3GP_openWrite: pContext is M4OSA_NULL");
107 *pContext=M4OSA_NULL;
127 *pContext = (M4WRITER_Context *)apContext;
149 * M4OSA_ERR M4WRITER_3GP_startWriting(M4WRITER_Context pContext)
153 * @param pContext
160 M4WRITER_3GP_startWriting(M4WRITER_Context pContext) argument
204 M4WRITER_3GP_addStream(M4WRITER_Context pContext, M4SYS_StreamDescription* pStreamDescription) argument
341 M4WRITER_3GP_closeWrite(M4WRITER_Context pContext) argument
393 M4WRITER_3GP_setOption( M4WRITER_Context pContext, M4OSA_UInt32 optionID, M4OSA_DataOption optionValue) argument
597 M4WRITER_3GP_getOption( M4WRITER_Context pContext, M4OSA_UInt32 optionID, M4OSA_DataOption optionValue) argument
702 M4WRITER_3GP_startAU( M4WRITER_Context pContext, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU) argument
766 M4WRITER_3GP_processAU( M4WRITER_Context pContext, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU) argument
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoBrowserMain.c38 * M4OSA_Context pContext, M4OSA_UInt32 x,
41 * @param pContext (IN) : Video Browser context
51 M4OSA_Context pContext,
56 VideoBrowserContext* pC = (VideoBrowserContext*)pContext;
60 pContext, x, y, dx, dy);
63 CHECK_PTR(videoBrowserSetWindow, pContext, err, M4ERR_PARAMETER);
138 VideoBrowserContext* pContext = M4OSA_NULL; local
157 pContext = (VideoBrowserContext*)M4OSA_32bitAlignedMalloc(
161 CHECK_PTR(videoBrowserCreate, pContext,err, M4ERR_ALLOC);
162 memset((void *)pContext,
50 videoBrowserSetWindow( M4OSA_Context pContext, M4OSA_Int32 *pPixelArray, M4OSA_UInt32 x, M4OSA_UInt32 y, M4OSA_UInt32 dx, M4OSA_UInt32 dy) argument
393 videoBrowserCleanUp(M4OSA_Context pContext) argument
444 videoBrowserPrepareFrame(M4OSA_Context pContext, M4OSA_UInt32* pTime, M4OSA_UInt32 tolerance) argument
525 videoBrowserDisplayCurrentFrame(M4OSA_Context pContext) argument
[all...]
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DSymbolResolvers.h106 typedef void *(*LookupFunctionTy)(ContextTy pContext, const char *pName);
114 ContextTy pContext = NULL)
115 : mLookupFunc(pLookupFunc), mContext(pContext) { }
128 inline void setContext(ContextTy pContext) argument
129 { mContext = pContext; }
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp316 RSExecutable *RSCompilerDriver::build(BCCContext &pContext, argument
373 Source *source = Source::CreateFromBuffer(pContext, pResName,
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDFile.h70 void setContext(LDContext* pContext) argument
71 { m_pContext = pContext; }
/frameworks/wilhelm/src/desktop/
H A DSndFile.c26 void SndFile_Callback(SLBufferQueueItf caller, void *pContext) argument
28 CAudioPlayer *thisAP = (CAudioPlayer *) pContext;

Completed in 5669 milliseconds

1234