/external/elfutils/0.153/libdw/ |
dwarf_getabbrev.c | 62 __libdw_getabbrev (dbg, cu, offset, lengthp, result) 63 Dwarf *dbg; 70 if (dbg->sectiondata[IDX_debug_abbrev] == NULL) 73 if (offset >= dbg->sectiondata[IDX_debug_abbrev]->d_size) 80 = (unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf + offset; 113 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev); 167 return __libdw_getabbrev (die->cu->dbg, die->cu,
|
dwarf_getattrs.c | 90 Dwarf *dbg = die->cu->dbg; local 95 >= ((unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf 96 + dbg->sectiondata[IDX_debug_abbrev]->d_size))) 134 size_t len = __libdw_form_val_len (dbg, die->cu, attr.form,
|
libdwP.h | 272 Dwarf *dbg; member in struct:Dwarf_Aranges_s 287 Dwarf *dbg; member in struct:Dwarf_CU 366 #define libdw_alloc(dbg, type, tsize, cnt) \ 367 ({ struct libdw_memblock *_tail = (dbg)->mem_tail; \ 374 _result = (type *) __libdw_allocate (dbg, _required, __alignof (type));\ 383 #define libdw_typed_alloc(dbg, type) \ 384 libdw_alloc (dbg, type, sizeof (type), 1) 387 extern void *__libdw_allocate (Dwarf *dbg, size_t minsize, size_t align) 400 extern struct Dwarf_CU *__libdw_intern_next_unit (Dwarf *dbg, bool debug_types) 404 extern struct Dwarf_CU *__libdw_findcu (Dwarf *dbg, Dwarf_Off offset, bool tu [all...] |
dwarf_formref.c | 78 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); 82 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); 86 *return_offset = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
|
dwarf_formsdata.c | 76 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); 80 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); 84 *return_sval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/ |
OMX_AacEnc_Utils.c | 126 OMX_PRINT1(pComponentPrivate->dbg, "%d :: UTIL: AACENCFill_LCMLInitParams\n ",__LINE__); 137 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: UTIL: Frames per output buffer = %d \n\n",__LINE__, FramesPerOutBuf); 140 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: ------ Buffer Details -----------\n",__LINE__); 141 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Input Buffer Count = %ld \n",__LINE__,nIpBuf); 142 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Input Buffer Size = %ld\n",__LINE__,nIpBufSize); 143 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Output Buffer Count = %ld\n",__LINE__,nOpBuf); 144 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Output Buffer Size = %ld\n",__LINE__,nOpBufSize); 145 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: ------ Buffer Details ------------\n",__LINE__); 175 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_AacEncUtils.c\n",__LINE__); 177 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: Codec is configuring to DASF mode\n",__LINE__) [all...] |
OMX_AacEncoder.c | 246 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_AACENC"); 266 OMX_PRBUFFER2(pComponentPrivate->dbg, "AACENC: pInputBufferList %p\n ", pComponentPrivate->pInputBufferList); 271 OMX_PRBUFFER2(pComponentPrivate->dbg, "AACENC: pOutputBufferList %p\n ", pComponentPrivate->pOutputBufferList); 308 OMX_PRINT2(pComponentPrivate->dbg, "%d :: AACENC: pComponentPrivate->bPlayCompleteFlag = %ld\n",__LINE__,pComponentPrivate->bPlayCompleteFlag); 391 OMX_PRCOMM2(pComponentPrivate->dbg, "AACENC: pPortDef_ip %p \n",pPortDef_ip ); 396 OMX_PRCOMM2(pComponentPrivate->dbg, "AACENC: pPortDef_op %p, size: %x \n",pPortDef_op, sizeof(OMX_PARAM_PORTDEFINITIONTYPE)); 436 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error returned from loading ResourceManagerProxy thread\n",__LINE__); 454 OMX_ERROR4(pComponentPrivate->dbg, "%d :: [AAC Encoder Component] - failure to open WRITE pipe\n",__LINE__); 459 OMX_ERROR4(pComponentPrivate->dbg, "%d :: [AAC Encoder Component] - failure to open READ pipe\n",__LINE__); 467 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error returned from the Component\n",__LINE__) 1692 struct OMX_TI_Debug dbg = {0}; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeAdaptor.cs | 53 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTreeAdaptor 56 public DebugTreeAdaptor(IDebugEventListener dbg, ITreeAdaptor adaptor) { 57 this.dbg = dbg; 67 dbg.CreateNode(node, payload); 75 dbg.ErrorNode(node); 91 dbg.CreateNode(t); 96 dbg.AddChild(t, child); 102 dbg.CreateNode(d); 108 dbg.NilNode(node) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeAdaptor.java | 48 protected DebugEventListener dbg; field in class:DebugTreeAdaptor 51 public DebugTreeAdaptor(DebugEventListener dbg, TreeAdaptor adaptor) { 52 this.dbg = dbg; 62 dbg.createNode(node, payload); 71 dbg.errorNode(node); 87 dbg.createNode(t); 92 dbg.addChild(t, child); 98 dbg.createNode(d); 104 dbg.nilNode(node) [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/ |
OMX_WbAmrEnc_CompThread.c | 104 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n"); 136 OMX_ERROR4(pComponentPrivate->dbg, "Comp Thrd Exiting!\n"); 148 OMX_ERROR4(pComponentPrivate->dbg, "curState is not OMX_StateIdle\n"); 153 OMX_PRINT2(pComponentPrivate->dbg, "Component Time Out !!!!! \n"); 155 OMX_ERROR4(pComponentPrivate->dbg, "Error in Select\n"); 164 OMX_PRCOMM2(pComponentPrivate->dbg, "DATA pipe is set in Component Thread\n"); 169 OMX_ERROR4(pComponentPrivate->dbg, "Error while reading from the pipe\n"); 176 OMX_ERROR2(pComponentPrivate->dbg, "WBAMRENC_HandleDataBufFromApp returned error\n"); 181 OMX_PRINT1(pComponentPrivate->dbg, "CMD pipe is set in Component Thread\n"); 185 OMX_ERROR4(pComponentPrivate->dbg, "Error in Reading from the Data pipe\n") [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/ |
OMX_WmaDec_Utils.c | 127 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponent = %p",pComponent); 128 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponentPrivate = %p", 130 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entered WMADECFill_LCMLInitParams",__LINE__); 131 OMX_PRINT2(pComponentPrivate->dbg, "%d :: WMADECFill_LCMLInitParams - pComponentPrivate = %p", 133 OMX_PRINT2(pComponentPrivate->dbg, "%d :: WMADECFill_LCMLInitParams - pHandle = %p",__LINE__, 171 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_WmaDecUtils.c",__LINE__); 183 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d:[ALLOC] %p",__LINE__,strmAttr); 187 OMX_ERROR4(pComponentPrivate->dbg, "strmAttr - failed to malloc"); 192 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d:[ALLOC] %p",__LINE__,strmAttr); 193 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_WmaDecUtils.c",__LINE__) [all...] |
OMX_WmaDecoder.c | 241 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_WMADEC"); 244 OMX_PRDSP1(pComponentPrivate->dbg, "PERF %d :: OMX_WmaDecoder.c\n", __LINE__); 410 OMX_PRCOMM2(pComponentPrivate->dbg, "%d ::pPortDef_ip = %p\n", __LINE__,pPortDef_ip); 411 OMX_PRCOMM2(pComponentPrivate->dbg, "%d ::pPortDef_op = %p\n", __LINE__,pPortDef_op); 451 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: Initialize RM Proxy... \n", __LINE__); 453 OMX_PRINT2(pComponentPrivate->dbg, "%d ::OMX_ComponentInit\n", __LINE__); 455 OMX_ERROR4(pComponentPrivate->dbg, "%d ::Error returned from loading ResourceManagerProxy thread\n", 460 OMX_PRINT1(pComponentPrivate->dbg, "%d ::Start Component Thread \n", __LINE__); 462 /*OMX_PRINT1(pComponentPrivate->dbg, "%d ::OMX_ComponentInit\n", __LINE__);*/ 464 OMX_ERROR4(pComponentPrivate->dbg, "%d ::Error returned from the Component\n" 1549 struct OMX_TI_Debug dbg; local [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/ |
OMX_VideoEnc_Thread.c | 168 OMX_TRACE2(pComponentPrivate->dbg, "pselect() = 0\n"); 179 OMX_TRACE3(pComponentPrivate->dbg, "select() error.\n"); 184 OMX_ERROR5(pComponentPrivate->dbg, "*Fatal Error : %x\n", eError); 196 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdPipe\n"); 208 OMX_PRCOMM2(pComponentPrivate->dbg, "Received thread close command.\n"); 219 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdDataPipe\n"); 232 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdDataPipe\n"); 249 OMX_PRSTATE2(pComponentPrivate->dbg, "Enters OMX_VIDENC_HandleCommandStateSet\n"); 253 OMX_PRSTATE2(pComponentPrivate->dbg, "Exits OMX_VIDENC_HandleCommandStateSet\n"); 256 OMX_PRSTATE2(pComponentPrivate->dbg, "Enters OMX_VIDENC_HandleCommandFlush\n") [all...] |
OMX_VideoEnc_Utils.c | 192 OMX_ERRORTYPE OMX_VIDENC_ListCreate(struct OMX_TI_Debug *dbg, struct VIDENC_NODE** pListHead) 199 OMX_TRACE4(*dbg, "malloc() out of memory error\n"); 203 OMX_TRACE1(*dbg, "Create MemoryListHeader[%p]\n", *pListHead); 224 OMX_ERRORTYPE OMX_VIDENC_ListAdd(struct OMX_TI_Debug *dbg, struct VIDENC_NODE* pListHead, OMX_PTR pData) 232 OMX_TRACE4(*dbg, "malloc() out of memory error\n"); 238 OMX_TRACE1(*dbg, "Add MemoryNode[%p] -> [%p]\n", pNewNode, pNewNode->pData); 265 OMX_ERRORTYPE OMX_VIDENC_ListRemove(struct OMX_TI_Debug *dbg, struct VIDENC_NODE* pListHead, 280 OMX_TRACE1(*dbg, "Remove MemoryNode[%p] -> [%p]\n", pTmp, pTmp->pData); 306 OMX_ERRORTYPE OMX_VIDENC_ListDestroy(struct OMX_TI_Debug *dbg, struct VIDENC_NODE* pListHead) 319 OMX_TRACE0(*dbg, "Remove MemoryNode[%p] -> [%p]\n", pTmp, pTmp->pData) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
Dbg.stg | 72 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]); 77 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]); 83 dbg.SemanticPredicate( result, predicate ); 100 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 111 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state ) 112 : base( input, dbg, state ) 114 Profiler p = (Profiler)dbg; 118 {g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 124 /** Basically we don't want to set any dbg listeners are root will have it. */ 126 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state<grammar.delegators:{g|, <g.recognizerName> <g:delegateName()>}> [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
Dbg.stg | 71 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]); 76 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]); 82 dbg.SemanticPredicate( result, predicate ); 99 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 110 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state ) 111 : base( input, dbg, state ) 113 Profiler p = (Profiler)dbg; 117 {g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 123 /** Basically we don't want to set any dbg listeners are root will have it. */ 125 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state<grammar.delegators:{g|, <g.recognizerName> <g:delegateName()>}> [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/src/ |
LCML_DspCodec.c | 113 struct OMX_TI_Debug dbg); 118 struct OMX_TI_Debug dbg); 159 OMX_DBG_INIT (dspcodecinterface->dbg, "TI_LCML"); 178 OMX_PRINT2 (dspcodecinterface->dbg, "GetHandle application handle %p dspCodec %p",pHandle, pHandle->dspCodec); 213 OMX_PRINT1 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "%d :: InitMMCodecEx application\n", __LINE__); 240 OMX_PRDSP4 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "%d :: append_dsp_path returned an error!\n", __LINE__); 273 OMX_PRINT1 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "%d :: Entering Init_DSPSubSystem\n", __LINE__); 276 OMX_PRDSP1 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "DspManager_Open Successful\n"); 281 OMX_PRDSP2 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "DSPProcessor_Attach Successful\n"); 282 OMX_PRDSP1 (((LCML_CODEC_INTERFACE *)hInt)->dbg, "Base Image is Already Loaded\n") [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeAdaptor.cs | 55 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTreeAdaptor 58 public DebugTreeAdaptor( IDebugEventListener dbg, ITreeAdaptor adaptor ) 60 this.dbg = dbg; 72 dbg.CreateNode( node, payload ); 82 dbg.ErrorNode( node ); 100 dbg.CreateNode( t ); 106 dbg.AddChild( t, child ); 113 dbg.CreateNode( d ); 120 dbg.CreateNode(d) [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/ |
OMX_AacDec_Utils.c | 127 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bPopulated = %d\n", 129 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bEnabled = %d\n", 131 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[OUTPUT_PORT_AACDEC]->bPopulated = %d\n", 133 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[OUTPUT_PORT_AACDEC]->bEnabled = %d\n", 144 OMX_PRBUFFER2(pComponentPrivate->dbg, "Input Buffer Count = %ld\n",nIpBuf); 145 OMX_PRBUFFER2(pComponentPrivate->dbg, "Input Buffer Size = %ld\n",nIpBufSize); 146 OMX_PRBUFFER2(pComponentPrivate->dbg, "Output Buffer Count = %ld\n",nOpBuf); 147 OMX_PRBUFFER2(pComponentPrivate->dbg, "Output Buffer Size = %ld\n",nOpBufSize); 181 OMX_PRINT1(pComponentPrivate->dbg, "DLL name0 = %s\n",plcml_Init->NodeInfo.AllUUIDs[0].DllName); 182 OMX_PRINT1(pComponentPrivate->dbg, "DLL name1 = %s\n",plcml_Init->NodeInfo.AllUUIDs[1].DllName) [all...] |
OMX_AacDec_CompThread.c | 118 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread \n",__LINE__); 150 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Comp Thrd Exiting here...\n",__LINE__); 157 OMX_ERROR2(pComponentPrivate->dbg, "\n\n\n!!!!! Component Time Out !!!!!!!!!!!! \n"); 160 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__); 170 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: CMD pipe is set in Component Thread\n",__LINE__); 173 OMX_PRINT1(pComponentPrivate->dbg, "Exiting from Component thread\n"); 175 OMX_PRSTATE2(pComponentPrivate->dbg, "******************* Component State Set to Loaded\n\n"); 187 OMX_ERROR4(pComponentPrivate->dbg, "OMX_EventError:: OMX_ErrorPortUnpopulated at CompThread line %d\n", __LINE__); 202 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: DATA pipe is set in Component Thread\n",__LINE__); 205 OMX_ERROR2(pComponentPrivate->dbg, "%d :: Error while reading from the pipe\n",__LINE__) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
ProfileGrammarParser.cs | 62 public ProfileGrammarParser( ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state ) 63 : base( input, dbg, state ) 65 Profiler p = (Profiler)dbg; 75 public ProfileGrammarParser( ITokenStream input, IDebugEventListener dbg ) 76 : base( input, dbg ) 78 Profiler p = (Profiler)dbg; 89 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileGrammarParser.ruleNames[ruleIndex]); 95 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileGrammarParser.ruleNames[ruleIndex]); 100 dbg.SemanticPredicate( result, predicate ); 116 this.adaptor = new DebugTreeAdaptor(dbg,adaptor) [all...] |
DebugGrammarParser.cs | 83 public DebugGrammarParser( ITokenStream input, IDebugEventListener dbg ) 84 : base( input, dbg ) 96 dbg.SemanticPredicate( result, predicate ); 112 this.adaptor = new DebugTreeAdaptor(dbg,adaptor); 143 dbg.EnterRule( GrammarFileName, "prog" ); 146 dbg.Commence(); 149 dbg.Location( 50, -1 ); 154 dbg.EnterAlt( 1 ); 160 dbg.Location( 50, 6 ); 164 dbg.EnterSubRule( 1 ) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
ASTDbg.stg | 33 * hierarchy is set up as ASTDbg : AST : Dbg : Java by code generator. 39 this.adaptor = new DebugTreeAdaptor(dbg,adaptor);
|
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/ |
OMX_Mp3Dec_Utils.c | 132 OMX_PRINT1(pComponentPrivate->dbg, "Entered MP3DEC_Fill_LCMLInitParams\n"); 133 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_INPUT_PORT]->bPopulated = %d\n", 135 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_INPUT_PORT]->bEnabled = %d\n", 137 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_OUTPUT_PORT]->bPopulated = %d\n", 139 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_OUTPUT_PORT]->bEnabled = %d\n", 152 OMX_PRBUFFER2(pComponentPrivate->dbg, "Input Buffer Count = %ld\n",nIpBuf); 153 OMX_PRBUFFER2(pComponentPrivate->dbg, "Input Buffer Size = %ld\n",nIpBufSize); 154 OMX_PRBUFFER2(pComponentPrivate->dbg, "Output Buffer Count = %ld\n",nOpBuf); 155 OMX_PRBUFFER2(pComponentPrivate->dbg, "Output Buffer Size = %ld\n",nOpBufSize); 197 OMX_PRBUFFER2(pComponentPrivate->dbg, ": Malloc strmAttr = %p\n",strmAttr) [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/ |
OMX_WbAmrDecoder.c | 250 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_WBAMRDEC"); 283 OMX_PRINT1(pComponentPrivate->dbg, "Setting dasfmode and mimemode to 0\n"); 418 OMX_PRBUFFER2(pComponentPrivate->dbg, "[ALLOC] %p\n",pPortDef_op); 419 OMX_PRINT1(pComponentPrivate->dbg, "pPortDef_ip = %p\n",pPortDef_ip); 420 OMX_PRINT1(pComponentPrivate->dbg, "pPortDef_op = %p\n",pPortDef_op); 454 OMX_ERROR4(pComponentPrivate->dbg, "Error returned from loading ResourceManagerProxy thread\n"); 461 OMX_ERROR4(pComponentPrivate->dbg, "Error returned from the Component\n"); 464 OMX_PRINT1(pComponentPrivate->dbg, "OMX_ComponentInit\n"); 468 OMX_PRINT1(pComponentPrivate->dbg, "OMX_ComponentInit\n"); 470 OMX_ERROR4(pComponentPrivate->dbg, "[WBAMR Dec Component] - failure to open WRITE pipe\n") 1613 struct OMX_TI_Debug dbg; local [all...] |