Searched refs:symbol_type (Results 1 – 17 of 17) sorted by relevance
/Linux-v4.19/tools/lib/symbol/ |
D | kallsyms.c | 13 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()
|
D | kallsyms.h | 23 bool kallsyms__is_function(char symbol_type);
|
/Linux-v4.19/scripts/genksyms/ |
D | genksyms.h | 28 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,
|
D | genksyms.c | 72 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()
|
D | parse.y | 58 enum symbol_type type) in record_compound()
|
/Linux-v4.19/scripts/kconfig/ |
D | lkc_proto.h | 36 const char * sym_type_name(enum symbol_type type); 38 enum symbol_type sym_get_type(struct symbol *sym);
|
D | expr.h | 64 enum symbol_type { enum 91 enum symbol_type type;
|
D | lkc.h | 53 enum symbol_type stype;
|
D | symbol.c | 36 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()
|
D | conf.c | 85 enum symbol_type type = sym_get_type(sym); in conf_askvalue()
|
D | expr.c | 992 enum symbol_type type, in expr_parse_string()
|
/Linux-v4.19/sound/pci/cs46xx/ |
D | dsp_spos.c | 159 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()
|
D | cs46xx_dsp_spos.h | 71 int symbol_type; member
|
D | cs46xx_lib.h | 97 int symbol_type);
|
D | cs46xx_lib.c | 442 entry->symbol_type = le32_to_cpu(fwdat[fwlen++]); in load_firmware()
|
/Linux-v4.19/tools/lib/traceevent/ |
D | Makefile | 261 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/ |
D | symbol.c | 73 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()
|