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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/tools/ctf/common/
symbol.c 35 ignore_symbol(GElf_Sym *sym, const char *name)
37 uchar_t type = GELF_ST_TYPE(sym->st_info);
43 if (sym->st_shndx == SHN_UNDEF || sym->st_name == 0)
58 if (type == STT_OBJECT && sym->st_shndx == SHN_ABS &&
59 sym->st_value == 0)
symbol.h 38 int ignore_symbol(GElf_Sym *sym, const char *name);
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/libumem/
misc.c 61 GElf_Sym sym; local
64 if (mdb_lookup_by_obj(UMEM_OBJNAME, "umem_alloc", &sym) == 0)
66 else if (mdb_lookup_by_obj(MDB_OBJ_EXEC, "umem_alloc", &sym) == 0)
81 umem_lookup_by_name(const char *name, GElf_Sym *sym)
84 UMEM_OBJNAME), name, sym));
91 GElf_Sym sym; local
93 if (umem_lookup_by_name(name, &sym))
96 if (mdb_vread(buf, sym.st_size, (uintptr_t)sym.st_value)
97 == sym.st_size
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/tools/findfp/common/
findsym.c 56 GElf_Sym sym; local
58 if (gelf_getsym(symtab, i, &sym) == NULL)
61 if ((GELF_ST_TYPE(sym.st_info) != STT_FUNC &&
62 GELF_ST_TYPE(sym.st_info) != STT_OBJECT) ||
63 sym.st_shndx == SHN_UNDEF)
66 if (addr - sym.st_value < sym.st_size) {
69 sym.st_name)) == NULL)
70 elfdie("failed to get name for sym %d", i);
71 *offp = addr - sym.st_value
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/logindmux/
logindmux.c 104 GElf_Sym sym; local
106 if (mdb_lookup_by_obj("logindmux", "logdmuxuwinit", &sym) == 0)
107 mdb_qops_install(&logdmux_uqops, (uintptr_t)sym.st_value);
108 if (mdb_lookup_by_obj("logindmux", "logdmuxlwinit", &sym) == 0)
109 mdb_qops_install(&logdmux_lqops, (uintptr_t)sym.st_value);
117 GElf_Sym sym; local
119 if (mdb_lookup_by_obj("logindmux", "logdmuxuwinit", &sym) == 0)
120 mdb_qops_remove(&logdmux_uqops, (uintptr_t)sym.st_value);
121 if (mdb_lookup_by_obj("logindmux", "logdmuxlwinit", &sym) == 0)
122 mdb_qops_remove(&logdmux_lqops, (uintptr_t)sym.st_value)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/krtld/
reloc.h 228 #define REL_ERR_UNIMPL(lml, file, sym, rtype) \
230 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
233 #define REL_ERR_UNSUPSZ(lml, file, sym, rtype, size) \
236 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
239 #define REL_ERR_NONALIGN(lml, file, sym, rtype, off) \
242 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
245 #define REL_ERR_UNNOBITS(lml, file, sym, rtype, nbits)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Exporter/
Heavy.pm 62 my($type, $sym, $cache_is_current, $oops);
108 foreach $sym (@names) { delete $imports{$sym} }
118 foreach $sym (@imports) {
119 if (!$export_cache->{$sym}) {
120 if ($sym =~ m/^\d/) {
121 $pkg->VERSION($sym); # inherit from UNIVERSAL
134 } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) {
144 if (!$export_cache->{$sym}) {
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/docs/
multiboot.h 38 # define EXT_C(sym) _ ## sym
40 # define EXT_C(sym) sym
  /onnv/onnv-gate/usr/src/lib/libpp/common/
ppmacref.c 31 ppmacref(struct ppsymbol* sym, char* file, int line, int type, unsigned long sum)
39 p += sfsprintf(p, MAXTOKEN, "\n#%s %s:%s %s %d", dirname(PRAGMA), pp.pass, keyname(X_MACREF), sym->name, type);
42 if (sym->macro && sym->macro->value)
43 sum = strsum(sym->macro->value, (long)sym->macro->arity);
ppmisc.c 37 register struct ppsymbol* sym; local
39 if (!(sym = ppsymget(pp.symtab, name)) && (ref <= REF_NORMAL && pp.macref || ref == REF_CREATE || ref == REF_DELETE && (pp.mode & (INIT|READONLY))))
43 sym = ppsymset(pp.symtab, NiL);
45 if (sym && ref <= REF_NORMAL)
47 if (pp.macref) (*pp.macref)(sym, error_info.file, error_info.line, ref == REF_NORMAL && (pp.state & CONDITIONAL) ? REF_IF : ref, 0L);
48 if (!sym->macro) sym = 0;
53 if (ref == REF_IF && sym && (sym->flags & SYM_PREDEFINED) && *name != '_' && !(pp.mode & (HOSTED|INACTIVE)))
62 return(sym);
74 register struct ppsymbol* sym; local
    [all...]
ppcall.c 36 * 0 returned if tok==0 and sym->mac->value to be copied to output by caller
41 ppcall(register struct ppsymbol* sym, int tok)
62 sym->flags |= SYM_NOTICED;
63 if (mac = sym->macro)
66 if ((sym->flags & SYM_PREDICATE) && (pp.state & (CONDITIONAL|WARN)) == (CONDITIONAL|WARN))
67 error(1, "%s: macro definition overrides assertion: use #%s ...", sym->name, sym->name);
68 if (sym->flags & SYM_DISABLED)
76 error(1, "%s: macro recursion inhibited", sym->name);
80 if ((sym->flags & SYM_PREDEFINED) && !(pp.mode & (HOSTED|INACTIVE))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
vars.pm 13 my ($sym, $ch);
15 if (($ch, $sym) = /^([\$\@\%\*\&])(.+)/) {
16 if ($sym =~ /\W/) {
18 if ($sym =~ /^\w+[[{].*[]}]$/) {
21 } elsif (warnings::enabled() and length($sym) == 1 and $sym !~ tr/a-zA-Z//) {
28 $sym = "${callpack}::$sym" unless $sym =~ /::/;
29 *$sym
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/
defsubs_h.PL 67 my $sym = shift;
68 my $l = length($sym);
70 newCONSTSUB(stash,"$sym",newSViv($sym));
71 av_push(export_ok,newSVpvn("$sym",$l));
  /onnv/onnv-gate/usr/src/cmd/sgs/elfedit/common/
elfconst.c 253 elfedit_atoui_sym_t *sym = &fill_state->desc[fill_state->cur++]; local
255 sym->sym_name = str;
256 sym->sym_value = value;
266 libconv_fill_iter(sym_table_ent_t *sym, conv_iter_osabi_t osabi, Half mach,
269 switch (sym->ste_type) {
271 (void) (* sym->ste_conv_func.simple)(
273 (void) (* sym->ste_conv_func.simple)(
278 (void) (* sym->ste_conv_func.osabi)(osabi,
280 (void) (* sym->ste_conv_func.osabi)(osabi,
285 (void) (* sym->ste_conv_func.mach)(mach
430 sym_table_ent_t *sym; local
501 sym_table_ent_t *sym; local
    [all...]
util.c 71 * sym - NULL terminated array of name->value mappings.
87 elfedit_atoi_value_to_str(const elfedit_atoi_sym_t *sym, elfedit_atoi_t value,
90 for (; sym->sym_name != NULL; sym++)
91 if (value == sym->sym_value)
92 return (sym->sym_name);
100 elfedit_atoui_value_to_str(const elfedit_atoui_sym_t *sym,
103 for (; sym->sym_name != NULL; sym++)
104 if (value == sym->sym_value
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dis/
dis_target.c 222 sym_entry_t *sym; local
261 for (i = 0, sym = p_symtab; i < tgt->dt_symcount; i++) {
262 if (gelf_getsym(symdata, i, &(sym->se_sym)) == NULL) {
272 if (!IS_DATA_TYPE(GELF_ST_TYPE(sym->se_sym.st_info))) {
277 if (sym->se_sym.st_shndx == SHN_XINDEX && symshndx != NULL) {
281 sym->se_shndx = -1;
283 sym->se_shndx = symshndx[i];
286 sym->se_shndx = sym->se_sym.st_shndx;
289 if ((sym->se_name = elf_strptr(tgt->dt_elf, shdr.sh_link
507 sym_entry_t *sym, *osym, *match; local
589 sym_entry_t *sym = tgt->dt_symcache; local
721 sym_entry_t *sym; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/elfedit/modules/common/
sym.c 50 SYM_CMD_T_DUMP = 0, /* sym:dump */
52 SYM_CMD_T_ST_BIND = 1, /* sym:st_bind */
53 SYM_CMD_T_ST_INFO = 2, /* sym:st_info */
54 SYM_CMD_T_ST_NAME = 3, /* sym:st_name */
55 SYM_CMD_T_ST_OTHER = 4, /* sym:st_other */
56 SYM_CMD_T_ST_SHNDX = 5, /* sym:st_shndx */
57 SYM_CMD_T_ST_SIZE = 6, /* sym:st_size */
58 SYM_CMD_T_ST_TYPE = 7, /* sym:st_type */
59 SYM_CMD_T_ST_VALUE = 8, /* sym:st_value */
60 SYM_CMD_T_ST_VISIBILITY = 9 /* sym:st_visibility *
155 } sym; member in struct:__anon205
250 Sym *sym; local
428 Sym *sym; local
685 Sym *sym = &symstate->sym.data[symstate->ndx]; local
743 Sym *sym = &symstate->sym.data[symstate->ndx]; local
795 Sym *sym = &symstate->sym.data[symstate->ndx]; local
942 Sym *sym = &symstate->sym.data[symstate->ndx]; local
981 Sym *sym = &symstate->sym.data[symstate->ndx]; local
1231 Sym *sym = &symstate->sym.data[symstate->ndx]; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/zmod/
inftrees.c 43 unsigned sym; /* index of code symbols */ local
111 for (sym = 0; sym < codes; sym++)
112 count[lens[sym]]++;
148 for (sym = 0; sym < codes; sym++)
149 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
keytab.c 74 static void _kt_assign_action(KeySym *sym, KtBinder binder, KtKeyFn *keyfn,
228 Symbol *sym = _find_HashSymbol(kt->actions, action); local
229 if(!sym) {
235 keyfn = (KtKeyFn *) sym->fn;
236 data = sym->data;
346 KeySym *sym; local
366 sym = kt->table + last;
367 sym->keyseq = binary;
368 sym->nc = nc;
370 KtAction *action = sym->actions + i
665 Symbol *sym; \/* The symbol table entry of the action *\/ local
809 KeySym *sym = kt->table + oldkey; local
984 Symbol *sym; \/* The symbol table entry of the action *\/ local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
tst.signature.d 36 @symmy[sym(0)] = count();
47 @symmy[sym(0)] = count();
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/rdb_demo/common/
syms.c 72 GElf_Sym sym; local
74 if (symtab_getsym(symp, i, &sym) == 0) {
79 if (sym.st_name == 0)
81 if ((sym.st_shndx == SHN_UNDEF) ||
82 (strcmp(strs + sym.st_name, symname) != 0))
84 *symptr = sym;
132 GElf_Sym sym; local
157 if (symtab_getsym(symp, i, &sym) == 0) {
161 if ((sym.st_name == 0) || (sym.st_shndx == SHN_UNDEF)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/rtld/common/
move.c 54 elf_move_bad(Lm_list *lml, Rt_map *lmp, Sym *sym, ulong_t num, Addr addr)
66 if (ELF_ST_BIND(sym->st_info) != STB_LOCAL)
67 name = (const char *)(STRTAB(lmp) + sym->st_name);
102 Sym *sym; local
104 if ((sym = (Sym *)SYMTAB(lmp) + ELF_M_SYM(mv->m_info)) == 0)
108 addr = sym->st_value;
119 elf_move_bad(lml, lmp, sym, num, taddr)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdhcputil/common/
dhcp_symbol.c 632 dsym_close_parser(char **fields, dhcp_symbol_t *sym)
635 dsym_free_classes(&sym->ds_classes);
653 dhcp_symbol_t *sym)
666 sym->ds_category = 0;
667 sym->ds_code = 0;
668 (void) strlcpy(sym->ds_name, name, DSYM_MAX_SYM_LEN);
669 sym->ds_type = 0;
670 sym->ds_gran = 0;
671 sym->ds_max = 0;
672 sym->ds_classes.dc_names = NULL
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/demo/
dispsyms.c 139 GElf_Sym sym; local
155 &sym, &shndx) == NULL) {
170 if ((sym.st_shndx == SHN_XINDEX) &&
202 &sym, &shndx) == NULL)) {
224 type = GELF_ST_TYPE(sym.st_info);
225 bind = GELF_ST_BIND(sym.st_info);
245 if (sym.st_shndx < SHN_LORESERVE)
246 shndx = sym.st_shndx;
247 else if ((sym.st_shndx != SHN_XINDEX) ||
249 shndx = sym.st_shndx
    [all...]
  /onnv/onnv-gate/usr/src/tools/scripts/
interface_cmp.pl 159 ## ExSym(SymList, sym, ver, obj)
166 # sym, ver, obj - Combination to be compared against exception list
172 my ($SymList, $sym, $ver, $obj) = @_;
176 ($sym =~ /$$ex[0]/);
252 foreach my $sym (keys %$i_symhash) {
253 if (!defined($cur_version->[3]{$sym})) {
255 $cur_version->[3]{$sym} = 'INHERIT';
340 my $sym = $1;
347 $cur_version->[3]{$sym} = 'NEW';
441 foreach my $sym (sort keys %$symhash)
    [all...]

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>