HomeSort by relevance Sort by last modified time
    Searched refs:dbg (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 159 #define OMX_DBG_SET_MASK(dbg, mask_str) \
162 sscanf((mask_str), "%lx", &(dbg).mask); \
164 (dbg).mask &= ~0ul >> (32 - 4 * strlen(mask_str)); \
165 (dbg).mask |= OMX_DBG_BASEMASK << (4 * strlen(mask_str)); \
168 (dbg).mask = OMX_DBG_BASEMASK; \
174 #define OMX_DBG_INIT_BASE(dbg) \
176 (dbg).err = stderr; \
177 (dbg).out = stdout; \
178 (dbg).out_opened = (dbg).err_opened = NULL;
    [all...]
  /external/elfutils/libdw/
dwarf_getstring.c 24 dwarf_getstring (dbg, offset, lenp)
25 Dwarf *dbg;
29 if (dbg == NULL)
32 if (dbg->sectiondata[IDX_debug_str] == NULL
33 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
40 const char *result = ((const char *) dbg->sectiondata[IDX_debug_str]->d_buf
43 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_getpubnames.c 28 get_offsets (Dwarf *dbg)
34 unsigned char *const startp = dbg->sectiondata[IDX_debug_pubnames]->d_buf;
36 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
59 Dwarf_Off len = read_4ubyte_unaligned_inc (dbg, readp);
62 len = read_8ubyte_unaligned_inc (dbg, readp);
69 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
75 uint16_t version = read_2ubyte_unaligned (dbg, readp);
84 mem[cnt].cu_offset = read_4ubyte_unaligned (dbg, readp + 2);
86 mem[cnt].cu_offset = read_8ubyte_unaligned (dbg, readp + 2);
89 assert (dbg->sectiondata[IDX_debug_info] != NULL)
    [all...]
dwarf_offdie.c 24 dwarf_offdie (dbg, offset, result)
25 Dwarf *dbg;
29 if (dbg == NULL)
32 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size)
42 result->addr = (char *) dbg->sectiondata[IDX_debug_info]->d_buf + offset;
45 result->cu = __libdw_findcu (dbg, offset);
dwarf_getaranges.c 32 dwarf_getaranges (dbg, aranges, naranges)
33 Dwarf *dbg;
37 if (dbg == NULL)
40 if (dbg->aranges != NULL)
42 *aranges = dbg->aranges;
44 *naranges = dbg->aranges->naranges;
48 if (dbg->sectiondata[IDX_debug_aranges]->d_buf == NULL)
55 = (const char *) dbg->sectiondata[IDX_debug_aranges]->d_buf;
56 const char *readendp = readp + dbg->sectiondata[IDX_debug_aranges]->d_size;
79 Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp)
    [all...]
libdw_alloc.c 27 __libdw_allocate (Dwarf *dbg, size_t minsize)
29 size_t size = MAX (dbg->mem_default_size,
33 dbg->oom_handler ();
37 newp->prev = dbg->mem_tail;
38 dbg->mem_tail = newp;
45 dwarf_new_oom_handler (Dwarf *dbg, Dwarf_OOM handler)
47 Dwarf_OOM old = dbg->oom_handler;
48 dbg->oom_handler = handler;
dwarf_offabbrev.c 23 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp,
26 if (dbg == NULL)
29 return __libdw_getabbrev (dbg, NULL, offset, lengthp, abbrevp) == NULL;
dwarf_formstring.c 36 Dwarf *dbg = attrp->cu->dbg;
39 || dbg->sectiondata[IDX_debug_str] == NULL)
49 off = read_8ubyte_unaligned (dbg, attrp->valp);
51 off = read_4ubyte_unaligned (dbg, attrp->valp);
53 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
56 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
libdw_findcu.c 52 __libdw_findcu (dbg, start)
53 Dwarf *dbg;
58 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb);
62 if (start < dbg->next_cu_offset)
71 Dwarf_Off oldoff = dbg->next_cu_offset;
76 if (dwarf_nextcu (dbg, oldoff, &dbg->next_cu_offset, NULL,
82 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU);
84 newp->dbg = dbg;
    [all...]
dwarf_formaddr.c 38 *return_addr = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
40 *return_addr = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
libdwP.h 172 Dwarf *dbg; member in struct:Dwarf_Files_s
209 Dwarf *dbg; member in struct:Dwarf_Aranges_s
224 Dwarf *dbg; member in struct:Dwarf_CU
258 #define libdw_alloc(dbg, type, tsize, cnt) \
259 ({ struct libdw_memblock *_tail = (dbg)->mem_tail; \
267 _result = (type *) __libdw_allocate (dbg, _required); \
268 _tail = (dbg)->mem_tail; \
278 #define libdw_typed_alloc(dbg, type) \
279 libdw_alloc (dbg, type, sizeof (type), 1)
282 extern void *__libdw_allocate (Dwarf *dbg, size_t minsize
    [all...]
dwarf_getattrs.c 49 Dwarf *dbg = die->cu->dbg; local
54 >= ((unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf
55 + dbg->sectiondata[IDX_debug_abbrev]->d_size)))
82 size_t len = __libdw_form_val_len (dbg, die->cu, attr.form,
  /external/bluetooth/glib/debian/
rules 14 build-dbg: build-dbg-stamp
15 build-dbg-stamp:
19 touch build-dbg-stamp
24 rm -f build-stamp build-dbg-stamp install-stamp install-dbg-stamp
31 clean-dbg:
34 rm -f build-stamp build-dbg-stamp install-stamp install-dbg-stamp
49 install-dbg: install-dbg-stam
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
baycom.h 24 struct baycom_debug_data dbg; member in union:baycom_ioctl::__anon14279
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_ComponentThread.c 78 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: \n",__LINE__);
110 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
116 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: bIsStopping = %ld\n",__LINE__,
119 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: lcml_nOpBuf = %ld\n",__LINE__,
122 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: lcml_nIpBuf = %ld\n",__LINE__,
124 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: app_nBuf = %ld\n",__LINE__,
128 OMX_PRINT2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: AmrComponentThread \n",__LINE__);
130 OMX_PRINT2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: AmrComponentThread \n",__LINE__);
132 OMX_ERROR4(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: Error Occurred in Codec Stop..\n",__LINE__);
141 OMX_PRINT2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: AmrComponentThread \n",__LINE__)
    [all...]
  /external/svox/pico/lib/
picokdbg.h 46 /* Dbg type and functions */
68 picoos_uint8 picokdbg_getPhoneId(const picokdbg_Dbg dbg,
74 picoos_char *picokdbg_getPhoneSym(const picokdbg_Dbg dbg,
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDec_ComponentThread.c 102 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
124 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
135 OMX_ERROR4(pComponentPrivate->dbg, "Comp Thrd Exiting here...\n");
140 OMX_PRSTATE2(pComponentPrivate->dbg, "bIsStopping = %ld\n",
143 OMX_PRBUFFER2(pComponentPrivate->dbg, "lcml_nOpBuf = %ld\n",
146 OMX_PRBUFFER2(pComponentPrivate->dbg, "lcml_nIpBuf = %ld\n",
148 OMX_PRBUFFER2(pComponentPrivate->dbg, "app_nBuf = %ld\n",
159 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
161 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
165 OMX_PRINT2(pComponentPrivate->dbg,"Component Time Out !!!!!!!!!!!! \n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_ComponentThread.c 93 OMX_PRINT1(pComponentPrivate->dbg, "OMX_WmaDec_ComponentThread:%d\n",__LINE__);
95 OMX_PRDSP2(pComponentPrivate->dbg, "PERF%d :: OMX_WmaDec_ComponentThread.c\n",__LINE__);
124 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
129 OMX_PRDSP1(pComponentPrivate->dbg, "%d : bIsStopping = %ld\n",__LINE__, pComponentPrivate->bIsStopping);
131 OMX_PRINT2(pComponentPrivate->dbg, "%d:WmaComponentThread \n",__LINE__);
143 OMX_ERROR4(pComponentPrivate->dbg, "%d:WmaComponentThread \n",__LINE__);
147 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: Component Time Out !!!!!!!!!!!! \n",__LINE__);
150 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
160 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: DATA pipe is set in Component Thread\n",__LINE__);
163 OMX_ERROR2(pComponentPrivate->dbg, "%d :: Error while reading from the pipe\n",__LINE__)
    [all...]
  /external/elfutils/tests/
get-pubnames.c 24 callback (Dwarf *dbg, Dwarf_Global *gl, void *arg)
34 if (dwarf_offdie (dbg, gl->cu_offset, &cu_die) == NULL
45 if (dwarf_offdie (dbg, gl->die_offset, &die) == NULL
67 Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ); local
68 if (dbg == NULL)
78 if (dwarf_getpubnames (dbg, callback, NULL, 0) != 0)
85 dwarf_end (dbg);
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Dec_CompThread.c 117 OMX_PRINT1(pComponentPrivate->dbg, ":: Entering ComponentThread \n");
148 OMX_PRINT1(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
155 OMX_PRSTATE2(pComponentPrivate->dbg, "\n\n\n!!!!! Component Time Out !!!!!!!!!!!! \n");
156 OMX_PRSTATE2(pComponentPrivate->dbg, "Current State: %d \n", pComponentPrivate->curState);
158 OMX_PRDSP2(pComponentPrivate->dbg, "%d:: lcml_nCntOp = %lu\n",__LINE__,pComponentPrivate->lcml_nCntOp);
159 OMX_PRDSP2(pComponentPrivate->dbg, "%d : lcml_nCntIp = %lu\n",__LINE__,pComponentPrivate->lcml_nCntIp);
160 OMX_PRDSP2(pComponentPrivate->dbg, "%d : lcml_nCntIpRes = %lu\n",__LINE__,pComponentPrivate->lcml_nCntIpRes);
161 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: lcml_nCntOpReceived = %lu\n",__LINE__,pComponentPrivate->lcml_nCntOpReceived);
164 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
170 OMX_ERROR4(pComponentPrivate->dbg, ":: Error in Select\n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_ComponentThread.c 107 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering NBAMRENC_CompThread\n", __LINE__);
138 OMX_ERROR2(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
143 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: bIsThreadstop = %ld\n",__LINE__,pComponentPrivate->bIsThreadstop);
144 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: lcml_nOpBuf = %ld\n",__LINE__,pComponentPrivate->lcml_nOpBuf);
145 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: lcml_nIpBuf = %ld\n",__LINE__,pComponentPrivate->lcml_nIpBuf);
146 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: app_nBuf = %ld\n",__LINE__,pComponentPrivate->app_nBuf);
155 OMX_ERROR4(pComponentPrivate->dbg, "%d :: pComponentPrivate->curState is not OMX_StateIdle\n",__LINE__);
159 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Component Time Out !!!!! \n",__LINE__);
161 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
172 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: DATA pipe is set in Component Thread\n",__LINE__)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Thread.c 126 OMX_TRACE2(pComponentPrivate->dbg, "fd max is %d\n",fdmax);
145 OMX_TRACE2(pComponentPrivate->dbg, "Component Thread Time Out!!!\n");
147 OMX_TRACE4(pComponentPrivate->dbg, "Error in Select\n");
157 OMX_PRBUFFER2(pComponentPrivate->dbg, "filled_inpBuf_Q pipe is set\n");
162 OMX_PRBUFFER4(pComponentPrivate->dbg, "Error while processing free queue buffers\n");
170 OMX_PRBUFFER2(pComponentPrivate->dbg, "free_outBuf_Q has some buffers in Component Thread\n");
173 OMX_PRBUFFER4(pComponentPrivate->dbg, "Error while processing free Q Buffers\n");
181 OMX_PRCOMM2(pComponentPrivate->dbg, "CMD pipe is set in Component Thread\n");
192 OMX_PRINT2(pComponentPrivate->dbg, "eCmd %d, nParam1 %d\n", (int)eCmd, (int)nParam1);
194 OMX_PRINT2(pComponentPrivate->dbg, "processing OMX_CommandStateSet\n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_CompThread.c 97 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread\n", __LINE__);
121 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
128 OMX_PRINT1(pComponentPrivate->dbg, "%d : bIsStopping = %ld\n",__LINE__, pComponentPrivate->bIsStopping);
129 OMX_PRINT1(pComponentPrivate->dbg, "%d : lcml_nOpBuf = %ld\n",__LINE__, pComponentPrivate->lcml_nOpBuf);
130 OMX_PRINT1(pComponentPrivate->dbg, "%d : lcml_nIpBuf = %ld\n",__LINE__, pComponentPrivate->lcml_nIpBuf);
134 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AACENC_ComponentThread \n",__LINE__);
144 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AACENC_ComponentThread \n",__LINE__);
147 OMX_PRINT1(pComponentPrivate->dbg, "%d ::OMX_AACENC_ComponentThread \n",__LINE__);
151 OMX_PRINT2(pComponentPrivate->dbg, "%d :: Component Time Out !!!!! \n",__LINE__);
155 OMX_ERROR2(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__)
    [all...]
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...]
  /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...]

Completed in 477 milliseconds

1 2 3 4 5