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

1 2 3 4 5 6 7 8 9

  /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/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugParser.java 36 protected DebugEventListener dbg = null; field in class:DebugParser
46 public DebugParser(TokenStream input, DebugEventListener dbg, RecognizerSharedState state) {
47 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), state);
48 setDebugListener(dbg);
55 public DebugParser(TokenStream input, DebugEventListener dbg) {
56 this(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), dbg, null);
62 public void setDebugListener(DebugEventListener dbg) {
64 ((DebugTokenStream)input).setDebugListener(dbg);
66 this.dbg = dbg
    [all...]
DebugTreeParser.java 38 protected DebugEventListener dbg = null; field in class:DebugTreeParser
48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) {
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
50 setDebugListener(dbg);
57 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg) {
58 this(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), dbg, null);
64 public void setDebugListener(DebugEventListener dbg) {
66 ((DebugTreeNodeStream)input).setDebugListener(dbg);
68 this.dbg = dbg
    [all...]
  /external/elfutils/libdw/
dwarf_getstring.c 60 dwarf_getstring (dbg, offset, lenp)
61 Dwarf *dbg;
65 if (dbg == NULL)
68 if (dbg->sectiondata[IDX_debug_str] == NULL
69 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
76 const char *result = ((const char *) dbg->sectiondata[IDX_debug_str]->d_buf
79 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_getpubnames.c 68 get_offsets (Dwarf *dbg)
74 unsigned char *const startp = dbg->sectiondata[IDX_debug_pubnames]->d_buf;
76 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
99 Dwarf_Off len = read_4ubyte_unaligned_inc (dbg, readp);
102 len = read_8ubyte_unaligned_inc (dbg, readp);
116 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
122 uint16_t version = read_2ubyte_unaligned (dbg, readp);
131 mem[cnt].cu_offset = read_4ubyte_unaligned (dbg, readp + 2);
133 mem[cnt].cu_offset = read_8ubyte_unaligned (dbg, readp + 2);
136 if (unlikely (dbg->sectiondata[IDX_debug_info] == NUL
    [all...]
dwarf_offdie.c 60 dwarf_offdie (dbg, offset, result)
61 Dwarf *dbg;
65 if (dbg == NULL)
68 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size)
78 result->addr = (char *) dbg->sectiondata[IDX_debug_info]->d_buf + offset;
81 result->cu = __libdw_findcu (dbg, offset);
dwarf_addrdie.c 59 dwarf_addrdie (dbg, addr, result)
60 Dwarf *dbg;
68 if (INTUSE(dwarf_getaranges) (dbg, &aranges, &naranges) != 0
74 return INTUSE(dwarf_offdie) (dbg, off, result);
libdw_findcu.c 88 __libdw_findcu (dbg, start)
89 Dwarf *dbg;
94 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb);
98 if (start < dbg->next_cu_offset)
108 Dwarf_Off oldoff = dbg->next_cu_offset;
113 if (INTUSE(dwarf_nextcu) (dbg, oldoff, &dbg->next_cu_offset, NULL,
120 const char *bytes = (dbg->sectiondata[IDX_debug_info]->d_buf + oldoff
122 uint16_t version = read_2ubyte_unaligned (dbg, bytes);
129 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU)
    [all...]
dwarf_offabbrev.c 59 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp,
62 if (dbg == NULL)
65 Dwarf_Abbrev *abbrev = __libdw_getabbrev (dbg, NULL, offset, lengthp,
dwarf_formstring.c 72 Dwarf *dbg = attrp->cu->dbg;
75 || dbg->sectiondata[IDX_debug_str] == NULL)
85 off = read_8ubyte_unaligned (dbg, attrp->valp);
87 off = read_4ubyte_unaligned (dbg, attrp->valp);
89 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
92 return (const char *) dbg->sectiondata[IDX_debug_str]->d_buf + off;
dwarf_getaranges.c 76 dwarf_getaranges (dbg, aranges, naranges)
77 Dwarf *dbg;
81 if (dbg == NULL)
84 if (dbg->aranges != NULL)
86 *aranges = dbg->aranges;
88 *naranges = dbg->aranges->naranges;
92 if (dbg->sectiondata[IDX_debug_aranges] == NULL)
101 if (dbg->sectiondata[IDX_debug_aranges]->d_buf == NULL)
108 = (const char *) dbg->sectiondata[IDX_debug_aranges]->d_buf;
109 const char *readendp = readp + dbg->sectiondata[IDX_debug_aranges]->d_size
    [all...]
libdw_alloc.c 66 __libdw_allocate (Dwarf *dbg, size_t minsize, size_t align)
68 size_t size = MAX (dbg->mem_default_size,
73 dbg->oom_handler ();
80 newp->prev = dbg->mem_tail;
81 dbg->mem_tail = newp;
88 dwarf_new_oom_handler (Dwarf *dbg, Dwarf_OOM handler)
90 Dwarf_OOM old = dbg->oom_handler;
91 dbg->oom_handler = handler;
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
GLErrorLog.h 23 void dbg(){} function
27 if (err) { dbg(); ERR("Error: 0x%X in %s (%s:%d)\n", err, __FUNCTION__, __FILE__, __LINE__); } \
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeParser.cs 45 public IDebugEventListener dbg = null; field in class:Antlr.Runtime.Debug.DebugTreeParser
59 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state)
60 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), state) {
61 SetDebugListener(dbg);
68 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg)
69 : this(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), dbg, null) {
74 return dbg;
87 this.dbg = value;
96 dbg.RecognitionException(e)
    [all...]
DebugParser.cs 41 public IDebugEventListener dbg = null; field in class:Antlr.Runtime.Debug.DebugParser
55 public DebugParser(ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state)
56 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, dbg), state) {
57 SetDebugListener(dbg);
64 public DebugParser(ITokenStream input, IDebugEventListener dbg)
65 : this(input is DebugTokenStream ? input : new DebugTokenStream(input, dbg), dbg, null) {
70 return dbg;
84 dbg = value;
93 dbg.BeginResync()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 45 public IDebugEventListener dbg = null; field in class:Antlr.Runtime.Debug.DebugTreeParser
59 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state )
60 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), state )
62 SetDebugListener(dbg);
70 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg )
71 : this( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), dbg, null )
79 return dbg;
93 this.dbg = value;
104 dbg.RecognitionException( e )
    [all...]
DebugParser.cs 43 public IDebugEventListener dbg = null; field in class:Antlr.Runtime.Debug.DebugParser
57 public DebugParser( ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state )
58 : base( input is DebugTokenStream ? input : new DebugTokenStream( input, dbg ), state )
60 SetDebugListener(dbg);
68 public DebugParser( ITokenStream input, IDebugEventListener dbg )
69 : this( input is DebugTokenStream ? input : new DebugTokenStream( input, dbg ), dbg, null )
77 return dbg;
92 dbg = value;
103 dbg.BeginResync()
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 448 public JavaParser(TokenStream input, DebugEventListener dbg) {
449 super(input, dbg, new RecognizerSharedState());
454 dbg.semanticPredicate(result, predicate);
468 try { dbg.enterRule(getGrammarFileName(), "compilationUnit");
469 if ( getRuleLevel()==0 ) {dbg.commence();}
471 dbg.location(293, 1);
476 dbg.enterAlt(1);
480 dbg.location(298,9);
483 try { dbg.enterSubRule(2);
484 try { dbg.enterDecision(2, decisionCanBacktrack[2])
    [all...]
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
baycom.h 24 struct baycom_debug_data dbg; member in union:baycom_ioctl::__anon23019
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
baycom.h 24 struct baycom_debug_data dbg; member in union:baycom_ioctl::__anon24609
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
baycom.h 24 struct baycom_debug_data dbg; member in union:baycom_ioctl::__anon26121
  /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,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileTreeGrammar.cs 64 public ProfileTreeGrammar( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state )
65 : base( input, dbg, state )
67 Profiler p = (Profiler)dbg;
71 public ProfileTreeGrammar( ITreeNodeStream input, IDebugEventListener dbg )
72 : base( input, dbg, new RecognizerSharedState() )
74 Profiler p = (Profiler)dbg;
79 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileTreeGrammar.ruleNames[ruleIndex]);
85 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileTreeGrammar.ruleNames[ruleIndex]);
90 dbg.SemanticPredicate( result, predicate );
107 dbg.EnterRule( GrammarFileName, "prog" )
    [all...]

Completed in 1583 milliseconds

1 2 3 4 5 6 7 8 9