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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/0.153/libdw/
dwarf_cuoffset.c 1 /* Return offset of DIE in CU.
60 dwarf_cuoffset (die)
61 Dwarf_Die *die;
63 return (die == NULL
65 : (die->addr - cu_data (die->cu)->d_buf - die->cu->start));
dwarf_getscopes_die.c 1 /* Return scope DIEs containing given DIE.
58 scope_visitor (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg)
60 if (die->die.addr != *(void **) arg)
73 scopes[i++] = die->die;
74 die = die->parent;
76 while (die != NULL);
84 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes
    [all...]
dwarf_dieoffset.c 1 /* Return offset of DIE.
60 dwarf_dieoffset (die)
61 Dwarf_Die *die;
63 return (die == NULL
65 : (Dwarf_Off) (die->addr - cu_data (die->cu)->d_buf));
dwarf_diename.c 1 /* Return string in name attribute of DIE.
60 dwarf_diename (die)
61 Dwarf_Die *die;
65 return INTUSE(dwarf_formstring) (INTUSE(dwarf_attr_integrate) (die,
dwarf_diecu.c 1 /* Return CU DIE containing given DIE.
59 dwarf_diecu (die, result, address_sizep, offset_sizep)
60 Dwarf_Die *die;
65 if (die == NULL)
68 *result = CUDIE (die->cu);
71 *address_sizep = die->cu->address_size;
73 *offset_sizep = die->cu->offset_size;
dwarf_hasattr_integrate.c 1 /* Check whether DIE has specific attribute, integrating DW_AT_abstract_origin.
58 dwarf_hasattr_integrate (Dwarf_Die *die, unsigned int search_name)
64 if (INTUSE(dwarf_hasattr) (die, search_name))
68 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin,
71 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, &attr_mem);
75 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
77 while (die != NULL);
dwarf_haschildren.c 60 dwarf_haschildren (die)
61 Dwarf_Die *die;
64 Dwarf_Abbrev *abbrevp = die->abbrev;
67 const unsigned char *readp = (unsigned char *) die->addr;
70 the data in the DIE. */
74 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
75 die->abbrev = abbrevp ?: DWARF_END_ABBREV;
77 if (unlikely (die->abbrev == DWARF_END_ABBREV))
83 return die->abbrev->has_children;
dwarf_entrypc.c 1 /* Return entry PC attribute of DIE.
59 dwarf_entrypc (die, return_addr)
60 Dwarf_Die *die;
65 return INTUSE(dwarf_formaddr) (INTUSE(dwarf_attr) (die, DW_AT_entry_pc,
67 ?: INTUSE(dwarf_attr) (die, DW_AT_low_pc,
dwarf_hasattr.c 1 /* Check whether given DIE has specific attribute.
60 dwarf_hasattr (die, search_name)
61 Dwarf_Die *die;
64 if (die == NULL)
69 (void) __libdw_find_attr (die, search_name, &code, NULL);
dwarf_attr.c 1 /* Return specific DWARF attribute of a DIE.
60 dwarf_attr (die, search_name, result)
61 Dwarf_Die *die;
65 if (die == NULL)
69 result->valp = __libdw_find_attr (die, search_name, &result->code,
72 result->cu = die->cu;
dwarf_getfuncs.c 68 Dwarf_Die *die; local
75 die = INTUSE(dwarf_offdie) (cudie->cu->dbg, offset, &die_mem);
76 res = INTUSE(dwarf_siblingof) (die, &die_mem);
78 die = res != 0 ? NULL : &die_mem;
80 while (die != NULL)
82 if (INTUSE(dwarf_tag) (die) == DW_TAG_subprogram)
84 if (callback (die, arg) != DWARF_CB_OK)
85 return INTUSE(dwarf_dieoffset) (die);
88 if (INTUSE(dwarf_siblingof) (die, &die_mem) != 0)
dwarf_attr_integrate.c 1 /* Return specific DWARF attribute of a DIE, integrating indirections.
58 dwarf_attr_integrate (Dwarf_Die *die, unsigned int search_name,
65 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, search_name, result);
69 attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, result);
71 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, result);
75 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
77 while (die != NULL);
dwarf_getattrs.c 1 /* Get attributes of the DIE.
59 dwarf_getattrs (Dwarf_Die *die, int (*callback) (Dwarf_Attribute *, void *),
62 if (die == NULL)
68 const unsigned char *die_addr = die->addr;
74 if (die->abbrev == NULL)
76 die->abbrev = __libdw_findabbrev (die->cu, u128);
78 if (unlikely (die->abbrev == DWARF_END_ABBREV))
86 const unsigned char *attrp = die->abbrev->attrp;
87 const unsigned char *const offset_attrp = die->abbrev->attrp + offset
    [all...]
dwarf_arrayorder.c 1 /* Return array order attribute of DIE.
60 dwarf_arrayorder (die)
61 Dwarf_Die *die;
67 (die, DW_AT_ordering, &attr_mem),
dwarf_bitoffset.c 1 /* Return bit offset attribute of DIE.
60 dwarf_bitoffset (die)
61 Dwarf_Die *die;
67 (die, DW_AT_bit_offset, &attr_mem),
dwarf_bitsize.c 1 /* Return bit size attribute of DIE.
60 dwarf_bitsize (die)
61 Dwarf_Die *die;
67 (die, DW_AT_bit_size, &attr_mem),
dwarf_bytesize.c 1 /* Return byte size attribute of DIE.
60 dwarf_bytesize (die)
61 Dwarf_Die *die;
67 (die, DW_AT_byte_size, &attr_mem),
dwarf_highpc.c 1 /* Return high PC attribute of DIE.
60 dwarf_highpc (die, return_addr)
61 Dwarf_Die *die;
66 return INTUSE(dwarf_formaddr) (INTUSE(dwarf_attr) (die, DW_AT_high_pc,
dwarf_lowpc.c 1 /* Return low PC attribute of DIE.
60 dwarf_lowpc (die, return_addr)
61 Dwarf_Die *die;
66 return INTUSE(dwarf_formaddr) (INTUSE(dwarf_attr) (die, DW_AT_low_pc,
dwarf_srclang.c 1 /* Return source language attribute of DIE.
60 dwarf_srclang (die)
61 Dwarf_Die *die;
67 (die, DW_AT_language, &attr_mem),
dwarf_child.c 1 /* Return child of current DIE.
64 __libdw_find_attr (Dwarf_Die *die, unsigned int search_name,
67 Dwarf *dbg = die->cu->dbg;
68 const unsigned char *readp = (unsigned char *) die->addr;
71 the data in the DIE. */
76 Dwarf_Abbrev *abbrevp = die->abbrev;
79 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
80 die->abbrev = abbrevp ?: DWARF_END_ABBREV;
82 if (unlikely (die->abbrev == DWARF_END_ABBREV))
94 const unsigned char *attrp = die->abbrev->attrp
    [all...]
dwarf_getscopes.c 68 /* Preorder visitor: prune the traversal if this DIE does not contain PC. */
70 pc_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg)
75 die->prune = true;
82 int result = INTUSE(dwarf_haspc) (&die->die, a->pc);
94 die->prune = true;
96 if (!die->prune
97 && INTUSE (dwarf_tag) (&die->die) == DW_TAG_inlined_subroutine)
107 origin_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/resources/multiFileResources/
post-echo-and-notify-done.cgi 7 || die "Could not get query\n";
  /external/bzip2/
format.pl 21 die "Usage: $0 xml_infile xml_outfile\n";
26 die "Can't find file \"$infile\""
30 die "Can't read input $infile\n";
34 die "Can't input $infile $!";
41 die "Can't output $outfile $! for writing";
  /external/libvorbis/vq/
make_floor_books.pl 13 die "Could not open $ARGV[0]: $!" unless open (F,$ARGV[0]);
28 die "Couldn't shell command.\n\tcommand:$command\n"
41 die "Couldn't remove file.\n\tcommand:$command\n"
64 die "Couldn't remove temp file.\n\tcommand:$command\n"
72 die "Couldn't append training data.\n\tcommand:$command\n"
79 die "Couldn't build huffbook.\n\tcommand:$command\n"
84 die "Couldn't append to output book.\n\tcommand:$command\n"
89 die "Couldn't remove temporary output file.\n\tcommand:$command\n"
94 die "Couldn't remove temporary output file.\n\tcommand:$command\n"
103 die "Couldn't remove temp files.\n\tcommand:$command\n"
    [all...]

Completed in 912 milliseconds

1 2 3 4 5 6 7 8 91011>>