Symbol: symbol_type
scripts/genksyms/genksyms.c
138
static enum symbol_type map_to_ns(enum symbol_type t)
scripts/genksyms/genksyms.c
153
struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact)
scripts/genksyms/genksyms.c
184
static struct string_list *process_enum(const char *name, enum symbol_type type,
scripts/genksyms/genksyms.c
227
static struct symbol *__add_symbol(const char *name, enum symbol_type type,
scripts/genksyms/genksyms.c
313
struct symbol *add_symbol(const char *name, enum symbol_type type,
scripts/genksyms/genksyms.c
319
static struct symbol *add_reference_symbol(const char *name, enum symbol_type type,
scripts/genksyms/genksyms.c
60
static void print_type_name(enum symbol_type type, const char *name);
scripts/genksyms/genksyms.c
699
static void print_type_name(enum symbol_type type, const char *name)
scripts/genksyms/genksyms.h
31
enum symbol_type tag;
scripts/genksyms/genksyms.h
39
enum symbol_type type;
scripts/genksyms/genksyms.h
56
struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact);
scripts/genksyms/genksyms.h
57
struct symbol *add_symbol(const char *name, enum symbol_type type,
scripts/genksyms/parse.y
47
enum symbol_type type)
scripts/kconfig/expr.c
860
enum symbol_type type,
scripts/kconfig/expr.h
97
enum symbol_type type;
scripts/kconfig/lkc_proto.h
25
const char * sym_type_name(enum symbol_type type);
scripts/kconfig/lkc_proto.h
28
enum symbol_type sym_get_type(const struct symbol *sym);
scripts/kconfig/parser.y
41
enum symbol_type type;
scripts/kconfig/qconf.cc
229
enum symbol_type type = menu->sym->type;
scripts/kconfig/symbol.c
45
enum symbol_type sym_get_type(const struct symbol *sym)
scripts/kconfig/symbol.c
47
enum symbol_type type = sym->type;
scripts/kconfig/symbol.c
54
const char *sym_type_name(enum symbol_type type)
sound/pci/cs46xx/cs46xx_dsp_spos.h
56
int symbol_type;
sound/pci/cs46xx/cs46xx_lib.c
428
entry->symbol_type = le32_to_cpu(fwdat[fwlen++]);
sound/pci/cs46xx/cs46xx_lib.h
82
int symbol_type);
sound/pci/cs46xx/dsp_spos.c
146
module->symbol_table.symbols[0].symbol_type == SYMBOL_CONSTANT ) {
sound/pci/cs46xx/dsp_spos.c
161
module->symbol_table.symbols[i].symbol_type) == NULL) {
sound/pci/cs46xx/dsp_spos.c
208
ins->symbol_table.symbols[index].symbol_type = type;
sound/pci/cs46xx/dsp_spos.c
442
cs46xx_dsp_lookup_symbol (struct snd_cs46xx * chip, char * symbol_name, int symbol_type)
sound/pci/cs46xx/dsp_spos.c
453
ins->symbol_table.symbols[i].symbol_type == symbol_type) {
sound/pci/cs46xx/dsp_spos.c
460
symbol_name,symbol_type);
sound/pci/cs46xx/dsp_spos.c
469
cs46xx_dsp_lookup_symbol_addr (struct snd_cs46xx * chip, u32 address, int symbol_type)
sound/pci/cs46xx/dsp_spos.c
480
ins->symbol_table.symbols[i].symbol_type == symbol_type) {
sound/pci/cs46xx/dsp_spos.c
511
ins->symbol_table.symbols[i].symbol_type,
tools/lib/symbol/kallsyms.c
14
bool kallsyms__is_function(char symbol_type)
tools/lib/symbol/kallsyms.c
16
symbol_type = toupper(symbol_type);
tools/lib/symbol/kallsyms.c
17
return symbol_type == 'T' || symbol_type == 'W';
tools/lib/symbol/kallsyms.c
51
char symbol_type;
tools/lib/symbol/kallsyms.c
58
symbol_type = io__get_char(&io);
tools/lib/symbol/kallsyms.c
71
err = process_symbol(arg, symbol_name, symbol_type, start);
tools/lib/symbol/kallsyms.h
23
bool kallsyms__is_function(char symbol_type);
tools/perf/util/symbol.c
107
static bool symbol_type__filter(char symbol_type)
tools/perf/util/symbol.c
109
symbol_type = toupper(symbol_type);
tools/perf/util/symbol.c
110
return symbol_type == 'T' || symbol_type == 'W' || symbol_type == 'D' || symbol_type == 'B';