Home
last modified time | relevance | path

Searched refs:symbol_type (Results 1 – 17 of 17) sorted by relevance

/Linux-v4.19/tools/lib/symbol/
Dkallsyms.c13 bool kallsyms__is_function(char symbol_type) in kallsyms__is_function() argument
15 symbol_type = toupper(symbol_type); in kallsyms__is_function()
16 return symbol_type == 'T' || symbol_type == 'W'; in kallsyms__is_function()
36 char symbol_type; in kallsyms__parse() local
55 symbol_type = line[len]; in kallsyms__parse()
65 err = process_symbol(arg, symbol_name, symbol_type, start); in kallsyms__parse()
Dkallsyms.h23 bool kallsyms__is_function(char symbol_type);
/Linux-v4.19/scripts/genksyms/
Dgenksyms.h28 enum symbol_type { enum
39 enum symbol_type tag;
47 enum symbol_type type;
64 struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact);
65 struct symbol *add_symbol(const char *name, enum symbol_type type,
Dgenksyms.c72 static void print_type_name(enum symbol_type type, const char *name);
150 static enum symbol_type map_to_ns(enum symbol_type t) in map_to_ns()
165 struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact) in find_symbol()
196 static struct symbol *__add_symbol(const char *name, enum symbol_type type, in __add_symbol()
320 struct symbol *add_symbol(const char *name, enum symbol_type type, in add_symbol()
326 static struct symbol *add_reference_symbol(const char *name, enum symbol_type type, in add_reference_symbol()
709 static void print_type_name(enum symbol_type type, const char *name) in print_type_name()
Dparse.y58 enum symbol_type type) in record_compound()
/Linux-v4.19/scripts/kconfig/
Dlkc_proto.h36 const char * sym_type_name(enum symbol_type type);
38 enum symbol_type sym_get_type(struct symbol *sym);
Dexpr.h64 enum symbol_type { enum
91 enum symbol_type type;
Dlkc.h53 enum symbol_type stype;
Dsymbol.c36 enum symbol_type sym_get_type(struct symbol *sym) in sym_get_type()
38 enum symbol_type type = sym->type; in sym_get_type()
49 const char *sym_type_name(enum symbol_type type) in sym_type_name()
Dconf.c85 enum symbol_type type = sym_get_type(sym); in conf_askvalue()
Dexpr.c992 enum symbol_type type, in expr_parse_string()
/Linux-v4.19/sound/pci/cs46xx/
Ddsp_spos.c159 module->symbol_table.symbols[0].symbol_type == SYMBOL_CONSTANT ) { in add_symbols()
174 module->symbol_table.symbols[i].symbol_type) == NULL) { in add_symbols()
221 ins->symbol_table.symbols[index].symbol_type = type; in add_symbol()
458 cs46xx_dsp_lookup_symbol (struct snd_cs46xx * chip, char * symbol_name, int symbol_type) in cs46xx_dsp_lookup_symbol() argument
469 ins->symbol_table.symbols[i].symbol_type == symbol_type) { in cs46xx_dsp_lookup_symbol()
476 symbol_name,symbol_type); in cs46xx_dsp_lookup_symbol()
485 cs46xx_dsp_lookup_symbol_addr (struct snd_cs46xx * chip, u32 address, int symbol_type) in cs46xx_dsp_lookup_symbol_addr() argument
496 ins->symbol_table.symbols[i].symbol_type == symbol_type) { in cs46xx_dsp_lookup_symbol_addr()
527 ins->symbol_table.symbols[i].symbol_type, in cs46xx_dsp_proc_symbol_table_read()
Dcs46xx_dsp_spos.h71 int symbol_type; member
Dcs46xx_lib.h97 int symbol_type);
Dcs46xx_lib.c442 entry->symbol_type = le32_to_cpu(fwdat[fwlen++]); in load_firmware()
/Linux-v4.19/tools/lib/traceevent/
DMakefile261 symbol_type=`$(NM) -u -D $1 | awk 'NF>1 {print $$1}' | \
263 if [ "$$symbol_type" = "U W w" ];then \
/Linux-v4.19/tools/perf/util/
Dsymbol.c73 static bool symbol_type__filter(char symbol_type) in symbol_type__filter() argument
75 symbol_type = toupper(symbol_type); in symbol_type__filter()
76 return symbol_type == 'T' || symbol_type == 'W' || symbol_type == 'D' || symbol_type == 'B'; in symbol_type__filter()