Home
last modified time | relevance | path

Searched refs:symbols (Results 1 – 122 of 122) sorted by relevance

/linux-4.4.14/scripts/
Dextract-sys-certs.pl59 my %symbols = ();
71 $symbols{$name} = $addr;
93 unless (exists($symbols{"__cert_list_start"}) &&
94 exists($symbols{"__cert_list_end"}));
96 my $start = Math::BigInt->new($symbols{"__cert_list_start"});
97 my $end = Math::BigInt->new($symbols{"__cert_list_end"});
Dconfig36 --keep-case|-k Keep next symbols' case (dont' upper-case it)
Ddocproc.c139 struct symbols struct
147 struct symbols *symbollist; argument
DKbuild.include224 # including used config symbols
/linux-4.4.14/arch/avr32/kernel/
Dmodule.c29 char *strings, Elf32_Sym *symbols) in check_rela() argument
44 strings + symbols[ELF32_R_SYM(rela->r_info)].st_name, in check_rela()
53 strings + symbols[ELF32_R_SYM(rela->r_info)].st_name); in check_rela()
64 Elf32_Sym *symbols; in module_frob_arch_sections() local
90 symbols = (void *)hdr + symtab->sh_offset; in module_frob_arch_sections()
93 if (symbols[i].st_shndx == SHN_UNDEF && in module_frob_arch_sections()
94 strcmp(strings + symbols[i].st_name, in module_frob_arch_sections()
97 symbols[i].st_shndx = SHN_ABS; in module_frob_arch_sections()
111 strings, symbols); in module_frob_arch_sections()
/linux-4.4.14/Documentation/kbuild/
Dkconfig.txt13 New kernel releases often introduce new config symbols. Often more
14 important, new kernel releases may rename config symbols. When
18 symbols have been introduced.
20 To see a list of new config symbols when using "make oldconfig", use
25 and the config program will list any new symbols, one per line.
44 If you set CONFIG_ in the environment, Kconfig will prefix all symbols
57 that contains config symbols that the user requires to be set to a
66 config files containing just the config symbols that you are interested
68 including symbols of your miniconfig file.
71 (usually a subset of all) preset config symbols. These variable
[all …]
Dkconfig-language.txt16 | +- Set version information on all module symbols
31 bool "Set version information on all module symbols"
105 symbols.
111 In general use select only for non-visible symbols
112 (no prompts anywhere) and for symbols with no dependencies.
118 false, the menu block is not displayed to the user (the symbols
119 contained there can still be selected by other symbols, though). It is
125 and hex symbols. The user can only input a value which is larger than
149 enables the third modular state for all config symbols.
162 using "allnoconfig". Used for symbols that hide other symbols.
[all …]
DKconfig.select-break10 # Kconfig currently does not check the list of symbols listed on a symbol's
12 # symbols. Because of this use of select should be used with caution. An
Dmodules.txt435 Module.symvers contains a list of all exported symbols from a kernel
441 generated. Module.symvers contains all exported symbols from
454 1) It lists all exported symbols from vmlinux and all modules.
460 to the symbols from the kernel to check if all external symbols
462 the symbols by reading Module.symvers from the kernel source
466 will be written containing all exported symbols that were not
471 Sometimes, an external module uses exported symbols from
473 all symbols to avoid spitting out warnings about undefined
474 symbols. Three solutions exist for this situation.
481 foo.ko needs symbols from bar.ko, you can use a
[all …]
DKconfig.recursion-issue-0234 # under 'select' for a symbol, when such symbols are selected kconfig them
35 # as mandatory required symbols. For more details on the heavy handed nature
Dkbuild.txt185 symbols in the final module linking stage. It changes such errors
195 For modules that use symbols from other modules.
Dmakefiles.txt13 --- 3.4 Objects which export symbols
226 --- 3.4 Objects which export symbols
229 modules exporting symbols.
740 when no CONFIG symbols are involved.
/linux-4.4.14/tools/perf/util/
Dsymbol.c149 void symbols__fixup_duplicate(struct rb_root *symbols) in symbols__fixup_duplicate() argument
154 nd = rb_first(symbols); in symbols__fixup_duplicate()
169 rb_erase(&next->rb_node, symbols); in symbols__fixup_duplicate()
174 rb_erase(&curr->rb_node, symbols); in symbols__fixup_duplicate()
180 void symbols__fixup_end(struct rb_root *symbols) in symbols__fixup_end() argument
182 struct rb_node *nd, *prevnd = rb_first(symbols); in symbols__fixup_end()
291 void symbols__delete(struct rb_root *symbols) in symbols__delete() argument
294 struct rb_node *next = rb_first(symbols); in symbols__delete()
299 rb_erase(&pos->rb_node, symbols); in symbols__delete()
304 void symbols__insert(struct rb_root *symbols, struct symbol *sym) in symbols__insert() argument
[all …]
Dsymbol.h62 void symbols__delete(struct rb_root *symbols);
70 #define symbols__for_each_entry(symbols, pos, nd) \ argument
71 for (nd = rb_first(symbols); \
277 void symbols__insert(struct rb_root *symbols, struct symbol *sym);
278 void symbols__fixup_duplicate(struct rb_root *symbols);
279 void symbols__fixup_end(struct rb_root *symbols);
Dkvm-stat.h126 #define define_exit_reasons_table(name, symbols) \ argument
128 symbols, { -1, NULL } \
Dmap.c261 struct rb_root *symbols = &map->dso->symbols[map->type]; in map__fixup_start() local
262 struct rb_node *nd = rb_first(symbols); in map__fixup_start()
271 struct rb_root *symbols = &map->dso->symbols[map->type]; in map__fixup_end() local
272 struct rb_node *nd = rb_last(symbols); in map__fixup_end()
Ddso.h139 struct rb_root symbols[MAP__NR_TYPES]; member
200 symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
Dsymbol-elf.c307 symbols__insert(&dso->symbols[map->type], f); in dso__synthesize_plt_symbols()
329 symbols__insert(&dso->symbols[map->type], f); in dso__synthesize_plt_symbols()
814 symbols__delete(&dso->symbols[map->type]); in dso__load_sym()
1085 symbols__insert(&curr_dso->symbols[curr_map->type], f); in dso__load_sym()
1095 symbols__fixup_duplicate(&dso->symbols[map->type]); in dso__load_sym()
1096 symbols__fixup_end(&dso->symbols[map->type]); in dso__load_sym()
Ddso.c1049 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT; in dso__new()
1083 symbols__delete(&dso->symbols[i]); in dso__delete()
1314 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) { in dso__fprintf()
Ddb-export.c261 symbols__insert(&dso->symbols[al->map->type], in db_ids_from_al()
/linux-4.4.14/sound/pci/cs46xx/
Ddsp_spos.c142 if (ins->symbol_table.symbols[i].deleted) { in find_free_symbol_index()
157 if (!strcmp(module->symbol_table.symbols[0].symbol_name, "OVERLAYBEGINADDRESS") && in add_symbols()
158 module->symbol_table.symbols[0].symbol_type == SYMBOL_CONSTANT ) { in add_symbols()
159 module->overlay_begin_address = module->symbol_table.symbols[0].address; in add_symbols()
172 module->symbol_table.symbols[i].symbol_name, in add_symbols()
173 module->symbol_table.symbols[i].symbol_type) == NULL) { in add_symbols()
175 ins->symbol_table.symbols[ins->symbol_table.nsymbols] = module->symbol_table.symbols[i]; in add_symbols()
176 …ins->symbol_table.symbols[ins->symbol_table.nsymbols].address += ((ins->code.offset / 2) - module-… in add_symbols()
177 ins->symbol_table.symbols[ins->symbol_table.nsymbols].module = module; in add_symbols()
178 ins->symbol_table.symbols[ins->symbol_table.nsymbols].deleted = 0; in add_symbols()
[all …]
Dcs46xx_dsp_spos.h81 struct dsp_symbol_entry *symbols; member
Ddsp_spos_scb_lib.c47 int symbol_index = (int)(symbol - ins->symbol_table.symbols); in remove_symbol()
55 ins->symbol_table.symbols[symbol_index].deleted = 1; in remove_symbol()
Dcs46xx_lib.c370 kfree(module->symbol_table.symbols); in free_module_desc()
430 module->symbol_table.symbols = in load_firmware()
432 if (!module->symbol_table.symbols) in load_firmware()
436 &module->symbol_table.symbols[i]; in load_firmware()
/linux-4.4.14/tools/perf/Documentation/
Dperf-annotate.txt16 code. If the object file has debug symbols then the source code will be
29 Only consider symbols in these dsos.
52 Load module symbols. WARNING: use only with -k and LIVE kernel.
85 Look for files with symbols relative to this directory.
94 Skip symbols that cannot be annotated.
Dperf-diff.txt24 As the perf.data files could come from different binaries, the symbols addresses
26 symbols name.
39 Load module symbols. WARNING: use only with -k and LIVE kernel
43 Only consider symbols in these dsos. CSV that understands
49 Only consider symbols in these comms. CSV that understands
54 --symbols=::
55 Only consider these symbols. CSV that understands
81 Look for files with symbols relative to this directory.
106 Filters can be applied by --comms, --dsos and/or --symbols options.
Dperf-top.txt95 Hide kernel symbols.
99 Hide user symbols.
102 Demangle kernel symbols.
139 Only consider symbols in these dsos. This option will affect the
143 Only consider symbols in these comms. This option will affect the
146 --symbols::
147 Only consider these symbols. This option will affect the
193 Filters can be applied by --comms, --dsos and/or --symbols options and
Dperf-report.txt41 Only consider symbols in these comms. CSV that understands
51 Only consider symbols in these dsos. CSV that understands
55 --symbols=::
56 Only consider these symbols. CSV that understands
61 Only show symbols that match (partially) with this filter.
253 Load module symbols. WARNING: This should only be used with -k and
261 Look for files with symbols relative to this directory.
328 Filters can be applied by --comms, --dsos and/or --symbols options and
Djit-interface.txt1 perf supports a simple JIT interface to resolve symbols for dynamic code generated
Dperf-trace.txt137 fault); if no debug symbols available, perf trace will print raw IP;
142 For symbols resolution you may need to install debugging symbols.
Dperf-timechart.txt55 Look for files with symbols relative to this directory.
Dperf-probe.txt121 Demangle application symbols. --no-demangle is also available
125 Demangle kernel symbols. --no-demangle-kernel is also available
Dperf-script.txt196 Look for files with symbols relative to this directory.
200 When printing symbols do not display call chain.
Dperf-kvm.txt90 kernel symbols. Users copy it out from guest os.
Dintel-pt.txt35 environments, or with self-modified code, a challenge. Also symbols need to be
/linux-4.4.14/samples/bpf/
Dbpf_load.c193 static int parse_relo_and_apply(Elf_Data *data, Elf_Data *symbols, in parse_relo_and_apply() argument
209 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &sym); in parse_relo_and_apply()
229 Elf_Data *data, *data_prog, *symbols = NULL; in load_bpf_file() local
277 symbols = data; in load_bpf_file()
298 if (parse_relo_and_apply(data, symbols, &shdr, insns)) in load_bpf_file()
/linux-4.4.14/arch/s390/kernel/
Dmodule.c111 Elf_Sym *symbols; in module_frob_arch_sections() local
135 symbols = (void *) hdr + symtab->sh_offset; in module_frob_arch_sections()
138 if (symbols[i].st_shndx == SHN_UNDEF && in module_frob_arch_sections()
139 strcmp(strings + symbols[i].st_name, in module_frob_arch_sections()
142 symbols[i].st_shndx = SHN_ABS; in module_frob_arch_sections()
/linux-4.4.14/Documentation/
Dgdb-kernel-debugging.txt63 o Load module (and main kernel) symbols:
64 (gdb) lx-symbols
84 o Load the module on the target and watch the symbols being loaded as well as
157 lx-symbols -- (Re-)load symbols of Linux kernel and currently loaded modules
DSubmitChecklist102 APIs or features that are related to the following kconfig symbols,
103 then test multiple builds with the related kconfig symbols disabled
Dunicode.txt73 keyboard symbols that are unlikely to ever be added to Unicode proper
98 of the dingbats/symbols/forms type and this is a language, I have
111 However, since the set of symbols appear to be consistent throughout,
DBUG-HUNTING153 output to find the valid line of code/assembler. Without debug symbols, you
155 debug symbols the C code will also be available. (Debug symbols can be enabled
Dkernel-doc-nano-HOWTO.txt134 files. When a file is referenced it is searched for symbols
357 all DOC: sections and documented functions, symbols, etc. are used.
Ddebugging-via-ohci1394.txt71 data which can be referenced from symbols found by gdb in vmlinux:
Dprintk-formats.txt44 For printing symbols and function pointers. The 'S' and 's' specifiers
Doops-tracing.txt168 the start of the module or for functions and symbols in the module.
Dkernel-docs.txt306 symbols, return conventions.
DCodingStyle915 block references symbols that will not exist if the condition is not met.
/linux-4.4.14/Documentation/ABI/stable/
Dvdso21 Unless otherwise noted, the set of symbols with any given version and the
22 ABI of those symbols is considered stable. It may vary across architectures,
/linux-4.4.14/scripts/gdb/
Dvmlinux-gdb.py26 import linux.symbols
/linux-4.4.14/arch/cris/include/asm/
Deshlibld.h72 unsigned char *symbols, unsigned long symlength,
/linux-4.4.14/tools/lib/bpf/
Dlibbpf.c190 Elf_Data *symbols; member
346 obj->efile.symbols = NULL; in bpf_object__elf_finish()
549 if (obj->efile.symbols) { in bpf_object__elf_collect()
554 obj->efile.symbols = data; in bpf_object__elf_collect()
610 Elf_Data *data, Elf_Data *symbols) in bpf_program__collect_reloc() argument
640 if (!gelf_getsym(symbols, in bpf_program__collect_reloc()
804 obj->efile.symbols); in bpf_object__collect_reloc()
/linux-4.4.14/drivers/base/regmap/
DKconfig3 # subsystems should select the appropriate symbols.
/linux-4.4.14/arch/cris/boot/compressed/
Dhead_v32.S15 ;; Exported symbols
Dhead_v10.S17 ;; Exported symbols
/linux-4.4.14/include/trace/
Dtrace_events.h275 static const struct trace_print_flags symbols[] = \
277 trace_print_symbols_seq(p, value, symbols); \
284 static const struct trace_print_flags_u64 symbols[] = \
286 trace_print_symbols_seq_u64(p, value, symbols); \
/linux-4.4.14/drivers/firmware/efi/libstub/
DMakefile59 --prefix-symbols=__efistub_
/linux-4.4.14/drivers/net/wireless/ath/ath5k/
Dpcu.c117 int bitrate, bits, symbols, symbol_bits; in ath5k_hw_get_frame_duration() local
163 symbols = DIV_ROUND_UP(bits * 10, symbol_bits); in ath5k_hw_get_frame_duration()
165 dur = sifs + preamble + (sym_time * symbols); in ath5k_hw_get_frame_duration()
/linux-4.4.14/Documentation/devicetree/bindings/hsi/
Dclient-devices.txt2 symbols the remote device connected to the HSI port. The
/linux-4.4.14/arch/m68k/
DKconfig.debug33 Enable debugging symbols on kernel build.
/linux-4.4.14/arch/arm64/kernel/
DMakefile24 OBJCOPYFLAGS := --prefix-symbols=__efistub_
/linux-4.4.14/tools/perf/ui/browsers/
Dmap.c104 .entries = &map->dso->symbols[map->type], in map__browse()
/linux-4.4.14/tools/perf/tests/
Dvmlinux-kallsyms.c111 for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) { in test__vmlinux_matches_kallsyms()
Dhists_common.c142 symbols__insert(&dso->symbols[MAP__FUNCTION], sym); in setup_fake_machine()
/linux-4.4.14/scripts/package/
Dbuilddeb400 Description: Linux kernel debugging symbols for $version
402 all the necessary debug symbols for the kernel and its modules.
/linux-4.4.14/arch/openrisc/
DREADME.openrisc64 In the code, the following particles are used on symbols to limit the scope
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-platform-dell-laptop53 days, for which the symbols are 's', 'm', 'h' and 'd'
/linux-4.4.14/Documentation/video4linux/
Dcpia2_overview.txt14 mappings for the two chips. In these cases, the symbols defined in the
/linux-4.4.14/arch/powerpc/platforms/40x/
DKconfig144 # 40x errata/workaround config symbols, selected by the CPU models above
/linux-4.4.14/scripts/genksyms/
Dparse.tab.c_shipped36 /* All symbols defined below should begin with yy or YY, to avoid
40 define necessary library symbols; they are noted "INFRINGES ON
310 /* The parser invokes alloca or malloc; define the necessary symbols. */
646 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
1084 /* The symbols being reduced. */
1489 /* The number of symbols on the RHS of the reduced rule.
2280 /* Do not reclaim the symbols of the rule which action triggered
2366 /* Do not reclaim the symbols of the rule which action triggered
/linux-4.4.14/Documentation/i2c/
Di2c-protocol3 Key to symbols
Dwriting-clients13 do this is to use a unique prefix for all global symbols. This is
14 especially important for exported symbols, but it is a good idea to do
15 it for non-exported symbols too. We will use the prefix `foo_' in this
Dfault-codes26 numbers associated with these symbols differ between architectures,
Dsmbus-protocol33 Key to symbols
/linux-4.4.14/include/linux/
Dpe.h107 uint32_t symbols; /* number of symbols */ member
/linux-4.4.14/tools/perf/
Dbuiltin-annotate.c68 &al->map->dso->symbols[al->map->type]); in perf_evsel__add_sample()
Dbuiltin-top.c747 al.map && !RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION]) ? in perf_event__process_sample()
769 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) { in perf_event__process_sample()
Dbuiltin-report.c403 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) { in report__warn_kptr_restrict()
/linux-4.4.14/drivers/net/slip/
DKconfig75 "slip6". In this mode, SLIP will only send normal ASCII symbols over
/linux-4.4.14/Documentation/arm/nwfpe/
DREADME12 the problems is with leading underscores on kernel symbols. Elf
/linux-4.4.14/drivers/xen/
DKconfig284 bool "Xen symbols"
288 Exports hypervisor symbols (along with their types and addresses) via
/linux-4.4.14/scripts/dtc/
Ddtc-parser.tab.c_shipped36 /* All symbols defined below should begin with yy or YY, to avoid
40 define necessary library symbols; they are noted "INFRINGES ON
308 /* The parser invokes alloca or malloc; define the necessary symbols. */
685 /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
904 /* The symbols being reduced. */
1265 /* The number of symbols on the RHS of the reduced rule.
2140 /* Do not reclaim the symbols of the rule whose action triggered
2231 /* Do not reclaim the symbols of the rule whose action triggered
/linux-4.4.14/scripts/kconfig/
Dzconf.tab.c_shipped36 /* All symbols defined below should begin with yy or YY, to avoid
40 define necessary library symbols; they are noted "INFRINGES ON
301 /* The parser invokes alloca or malloc; define the necessary symbols. */
622 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
1046 /* The symbols being reduced. */
1483 /* The number of symbols on the RHS of the reduced rule.
2223 /* Do not reclaim the symbols of the rule which action triggered
2307 /* Do not reclaim the symbols of the rule which action triggered
/linux-4.4.14/Documentation/ABI/
DREADME85 - Kernel-internal symbols. Do not rely on the presence, absence, location, or
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dhead.S20 ;; exported symbols
143 ;; arch/etrax100/etrax100.ld sets some symbols that define the start
/linux-4.4.14/arch/x86/crypto/
Dsha256-ssse3-asm.S124 # Rotate values of symbols X0...X3
134 # Rotate values of symbols a...h
Dsha256-avx-asm.S131 # Rotate values of symbols X0...X3
141 # Rotate values of symbols a...h
Dsha256-avx2-asm.S134 # Rotate values of symbols X0...X3
144 # Rotate values of symbols a...h
Dsha512-avx2-asm.S135 # Rotate values of symbols Y0...Y3
146 # Rotate symbols a..h right
Dsha512-ssse3-asm.S106 # Rotate symbols a..h right
Dsha512-avx-asm.S109 # Rotate symbols a..h right
/linux-4.4.14/init/
DKconfig1424 bool "Load all symbols for debugging/ksymoops" if EXPERT
1429 somewhat, as all symbols have to be loaded into the kernel image.
1432 bool "Include all symbols in kallsyms"
1435 Normally kallsyms only contains the symbols of functions for nicer
1436 OOPS messages and backtraces (i.e., symbols from the text and inittext
1438 cases (e.g., when a debugger is used) all symbols are required (e.g.,
1441 This option makes sure that all symbols are loaded into the kernel
1442 image (i.e., symbols from all sections) in cost of increased kernel
1446 Say N unless you really need all symbols.
/linux-4.4.14/lib/
DKconfig.debug126 This adds debug symbols to the kernel and modules (gcc -g), and
210 bool "Strip assembler-generated symbols during link"
213 Strip internal assembler-generated symbols during a link (symbols
227 bool "Enable unused/obsolete exported symbols"
230 Unused but exported symbols make the kernel needlessly bigger. For
233 some external kernel module needs one of these symbols anyway. If you
354 1. percpu symbols must be unique whether static or not
DKconfig306 be set by declaring default values for symbols BCH_CONST_M
/linux-4.4.14/arch/cris/arch-v32/kernel/
Dhead.S31 ;; Exported symbols.
/linux-4.4.14/drivers/tty/vt/
Dcp437.uni253 # Greek letters and mathematical symbols
/linux-4.4.14/tools/perf/util/scripting-engines/
Dtrace-event-perl.c210 define_symbolic_values(args->symbol.symbols, ev_name, in define_event_symbols()
Dtrace-event-python.c227 define_values(PRINT_SYMBOL, args->symbol.symbols, ev_name, in define_event_symbols()
/linux-4.4.14/Documentation/devicetree/
Dof_unittest.txt104 via the following kernel symbols:
Dbooting-without-of.txt1093 assembly file exports some symbols that can be used.
/linux-4.4.14/drivers/net/
DKconfig24 # All the following symbols are dependent on NETDEVICES - do not repeat
25 # that for each of the symbols.
/linux-4.4.14/net/wireless/
DKconfig201 wext compatibility symbols to be exported.
/linux-4.4.14/drivers/net/ppp/
DKconfig30 If you said Y to "Version information on all symbols" above, then
/linux-4.4.14/tools/lib/traceevent/
Devent-parse.h247 struct print_flag_sym *symbols; member
Devent-parse.c828 free_flag_sym(arg->symbol.symbols); in free_arg()
2605 type = process_fields(event, &arg->symbol.symbols, &token); in process_symbols()
3940 for (flag = arg->symbol.symbols; flag; flag = flag->next) { in print_str_arg()
5594 print_fields(&s, args->symbol.symbols); in print_args()
/linux-4.4.14/arch/powerpc/platforms/44x/
DKconfig366 # 44x errata/workaround config symbols, selected by the CPU models above
/linux-4.4.14/Documentation/kdump/
Dkdump.txt149 This causes the kernel to be built with debug symbols. The dump
150 analysis tools require a vmlinux with debug symbols in order to read
/linux-4.4.14/
DREADME168 new config symbols.
176 Like above, but sets new symbols to their default
/linux-4.4.14/fs/affs/
DChanges274 - Removed all unnecessary external symbols.
/linux-4.4.14/Documentation/devicetree/bindings/
Dxilinx.txt13 into an 'xparameters.h' in the form of #define symbols. This tells the
/linux-4.4.14/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt382 so most symbols which need to be exported probably already are.
383 However, if you do find symbols that need exporting, let us
2619 it can read the symbol table, and figure out where all the symbols are
2622 tell gdb to forget about all its symbols, including the main UML ones
2715 Reading symbols from ./linux...
2724 Reading symbols from /home/jdike/linux/2.4/um/arch/um/fs/hostfs/hostfs.o...
2737 >> Finished loading symbols for hostfs ...
2804 is to tell gdb to forget about all symbols that it knows about:
2812 Then reload the symbols from the kernel binary:
2821 points. They were disabled when you dumped all the symbols because
[all …]
/linux-4.4.14/drivers/staging/panel/
DKconfig142 where many symbols are at unusual places. The driver knows how to map
/linux-4.4.14/Documentation/s390/
DDebugging390.txt895 you can do the following trick for several symbols.
1802 symbols in the disassemble command with
1832 symbols compiled in and the source base of this build is available.
1864 Reading symbols from /usr/lib/libncurses.so.4...done.
1865 Reading symbols from /lib/libm.so.6...done.
1866 Reading symbols from /lib/libc.so.6...done.
1867 Reading symbols from /lib/ld-linux.so.2...done.
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
Dxmit.c1053 int symbols, bits; in ath_max_framelen() local
1057 symbols = sgi ? TIME_SYMBOLS_HALFGI(usec) : TIME_SYMBOLS(usec); in ath_max_framelen()
1058 bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams; in ath_max_framelen()
/linux-4.4.14/arch/
DKconfig489 Some architectures generate an _ in front of C symbols; things like
/linux-4.4.14/Documentation/filesystems/
Dhpfs.txt262 1.97.1 Changed names of global symbols
/linux-4.4.14/Documentation/scsi/
DChangeLog.megaraid428 iii. Module compilation reorder in Makefile so that unresolved symbols do
DChangeLog.ncr53c8xx177 - Declare static all symbols that do not need to be visible from
DChangeLog.1992-19971760 * scsi_debug.c: Change some constants to use symbols like INT_MAX.
/linux-4.4.14/Documentation/powerpc/
Dhvcs.txt103 symbols it expects.
/linux-4.4.14/Documentation/gpio/
Dgpio-legacy.txt97 Platforms define how they use those integers, and usually #define symbols
/linux-4.4.14/drivers/mfd/
DKconfig890 and expose a number of symbols needed for dependent devices
/linux-4.4.14/arch/arm/
DKconfig1579 locally-defined, preemptible global symbols as short-range "b.n"