/linux-4.4.14/scripts/ |
D | extract-sys-certs.pl | 59 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"});
|
D | config | 36 --keep-case|-k Keep next symbols' case (dont' upper-case it)
|
D | docproc.c | 139 struct symbols struct 147 struct symbols *symbollist; argument
|
D | Kbuild.include | 224 # including used config symbols
|
/linux-4.4.14/arch/avr32/kernel/ |
D | module.c | 29 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/ |
D | kconfig.txt | 13 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 …]
|
D | kconfig-language.txt | 16 | +- 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 …]
|
D | Kconfig.select-break | 10 # 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
|
D | modules.txt | 435 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 …]
|
D | Kconfig.recursion-issue-02 | 34 # 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
|
D | kbuild.txt | 185 symbols in the final module linking stage. It changes such errors 195 For modules that use symbols from other modules.
|
D | makefiles.txt | 13 --- 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/ |
D | symbol.c | 149 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 …]
|
D | symbol.h | 62 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);
|
D | kvm-stat.h | 126 #define define_exit_reasons_table(name, symbols) \ argument 128 symbols, { -1, NULL } \
|
D | map.c | 261 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()
|
D | dso.h | 139 struct rb_root symbols[MAP__NR_TYPES]; member 200 symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
|
D | symbol-elf.c | 307 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()
|
D | dso.c | 1049 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()
|
D | db-export.c | 261 symbols__insert(&dso->symbols[al->map->type], in db_ids_from_al()
|
/linux-4.4.14/sound/pci/cs46xx/ |
D | dsp_spos.c | 142 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 …]
|
D | cs46xx_dsp_spos.h | 81 struct dsp_symbol_entry *symbols; member
|
D | dsp_spos_scb_lib.c | 47 int symbol_index = (int)(symbol - ins->symbol_table.symbols); in remove_symbol() 55 ins->symbol_table.symbols[symbol_index].deleted = 1; in remove_symbol()
|
D | cs46xx_lib.c | 370 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/ |
D | perf-annotate.txt | 16 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.
|
D | perf-diff.txt | 24 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.
|
D | perf-top.txt | 95 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
|
D | perf-report.txt | 41 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
|
D | jit-interface.txt | 1 perf supports a simple JIT interface to resolve symbols for dynamic code generated
|
D | perf-trace.txt | 137 fault); if no debug symbols available, perf trace will print raw IP; 142 For symbols resolution you may need to install debugging symbols.
|
D | perf-timechart.txt | 55 Look for files with symbols relative to this directory.
|
D | perf-probe.txt | 121 Demangle application symbols. --no-demangle is also available 125 Demangle kernel symbols. --no-demangle-kernel is also available
|
D | perf-script.txt | 196 Look for files with symbols relative to this directory. 200 When printing symbols do not display call chain.
|
D | perf-kvm.txt | 90 kernel symbols. Users copy it out from guest os.
|
D | intel-pt.txt | 35 environments, or with self-modified code, a challenge. Also symbols need to be
|
/linux-4.4.14/samples/bpf/ |
D | bpf_load.c | 193 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/ |
D | module.c | 111 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/ |
D | gdb-kernel-debugging.txt | 63 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
|
D | SubmitChecklist | 102 APIs or features that are related to the following kconfig symbols, 103 then test multiple builds with the related kconfig symbols disabled
|
D | unicode.txt | 73 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,
|
D | BUG-HUNTING | 153 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
|
D | kernel-doc-nano-HOWTO.txt | 134 files. When a file is referenced it is searched for symbols 357 all DOC: sections and documented functions, symbols, etc. are used.
|
D | debugging-via-ohci1394.txt | 71 data which can be referenced from symbols found by gdb in vmlinux:
|
D | printk-formats.txt | 44 For printing symbols and function pointers. The 'S' and 's' specifiers
|
D | oops-tracing.txt | 168 the start of the module or for functions and symbols in the module.
|
D | kernel-docs.txt | 306 symbols, return conventions.
|
D | CodingStyle | 915 block references symbols that will not exist if the condition is not met.
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | vdso | 21 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/ |
D | vmlinux-gdb.py | 26 import linux.symbols
|
/linux-4.4.14/arch/cris/include/asm/ |
D | eshlibld.h | 72 unsigned char *symbols, unsigned long symlength,
|
/linux-4.4.14/tools/lib/bpf/ |
D | libbpf.c | 190 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/ |
D | Kconfig | 3 # subsystems should select the appropriate symbols.
|
/linux-4.4.14/arch/cris/boot/compressed/ |
D | head_v32.S | 15 ;; Exported symbols
|
D | head_v10.S | 17 ;; Exported symbols
|
/linux-4.4.14/include/trace/ |
D | trace_events.h | 275 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/ |
D | Makefile | 59 --prefix-symbols=__efistub_
|
/linux-4.4.14/drivers/net/wireless/ath/ath5k/ |
D | pcu.c | 117 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/ |
D | client-devices.txt | 2 symbols the remote device connected to the HSI port. The
|
/linux-4.4.14/arch/m68k/ |
D | Kconfig.debug | 33 Enable debugging symbols on kernel build.
|
/linux-4.4.14/arch/arm64/kernel/ |
D | Makefile | 24 OBJCOPYFLAGS := --prefix-symbols=__efistub_
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | map.c | 104 .entries = &map->dso->symbols[map->type], in map__browse()
|
/linux-4.4.14/tools/perf/tests/ |
D | vmlinux-kallsyms.c | 111 for (nd = rb_first(&vmlinux_map->dso->symbols[type]); nd; nd = rb_next(nd)) { in test__vmlinux_matches_kallsyms()
|
D | hists_common.c | 142 symbols__insert(&dso->symbols[MAP__FUNCTION], sym); in setup_fake_machine()
|
/linux-4.4.14/scripts/package/ |
D | builddeb | 400 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/ |
D | README.openrisc | 64 In the code, the following particles are used on symbols to limit the scope
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-platform-dell-laptop | 53 days, for which the symbols are 's', 'm', 'h' and 'd'
|
/linux-4.4.14/Documentation/video4linux/ |
D | cpia2_overview.txt | 14 mappings for the two chips. In these cases, the symbols defined in the
|
/linux-4.4.14/arch/powerpc/platforms/40x/ |
D | Kconfig | 144 # 40x errata/workaround config symbols, selected by the CPU models above
|
/linux-4.4.14/scripts/genksyms/ |
D | parse.tab.c_shipped | 36 /* 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/ |
D | i2c-protocol | 3 Key to symbols
|
D | writing-clients | 13 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
|
D | fault-codes | 26 numbers associated with these symbols differ between architectures,
|
D | smbus-protocol | 33 Key to symbols
|
/linux-4.4.14/include/linux/ |
D | pe.h | 107 uint32_t symbols; /* number of symbols */ member
|
/linux-4.4.14/tools/perf/ |
D | builtin-annotate.c | 68 &al->map->dso->symbols[al->map->type]); in perf_evsel__add_sample()
|
D | builtin-top.c | 747 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()
|
D | builtin-report.c | 403 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) { in report__warn_kptr_restrict()
|
/linux-4.4.14/drivers/net/slip/ |
D | Kconfig | 75 "slip6". In this mode, SLIP will only send normal ASCII symbols over
|
/linux-4.4.14/Documentation/arm/nwfpe/ |
D | README | 12 the problems is with leading underscores on kernel symbols. Elf
|
/linux-4.4.14/drivers/xen/ |
D | Kconfig | 284 bool "Xen symbols" 288 Exports hypervisor symbols (along with their types and addresses) via
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-parser.tab.c_shipped | 36 /* 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/ |
D | zconf.tab.c_shipped | 36 /* 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/ |
D | README | 85 - Kernel-internal symbols. Do not rely on the presence, absence, location, or
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
D | head.S | 20 ;; exported symbols 143 ;; arch/etrax100/etrax100.ld sets some symbols that define the start
|
/linux-4.4.14/arch/x86/crypto/ |
D | sha256-ssse3-asm.S | 124 # Rotate values of symbols X0...X3 134 # Rotate values of symbols a...h
|
D | sha256-avx-asm.S | 131 # Rotate values of symbols X0...X3 141 # Rotate values of symbols a...h
|
D | sha256-avx2-asm.S | 134 # Rotate values of symbols X0...X3 144 # Rotate values of symbols a...h
|
D | sha512-avx2-asm.S | 135 # Rotate values of symbols Y0...Y3 146 # Rotate symbols a..h right
|
D | sha512-ssse3-asm.S | 106 # Rotate symbols a..h right
|
D | sha512-avx-asm.S | 109 # Rotate symbols a..h right
|
/linux-4.4.14/init/ |
D | Kconfig | 1424 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/ |
D | Kconfig.debug | 126 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
|
D | Kconfig | 306 be set by declaring default values for symbols BCH_CONST_M
|
/linux-4.4.14/arch/cris/arch-v32/kernel/ |
D | head.S | 31 ;; Exported symbols.
|
/linux-4.4.14/drivers/tty/vt/ |
D | cp437.uni | 253 # Greek letters and mathematical symbols
|
/linux-4.4.14/tools/perf/util/scripting-engines/ |
D | trace-event-perl.c | 210 define_symbolic_values(args->symbol.symbols, ev_name, in define_event_symbols()
|
D | trace-event-python.c | 227 define_values(PRINT_SYMBOL, args->symbol.symbols, ev_name, in define_event_symbols()
|
/linux-4.4.14/Documentation/devicetree/ |
D | of_unittest.txt | 104 via the following kernel symbols:
|
D | booting-without-of.txt | 1093 assembly file exports some symbols that can be used.
|
/linux-4.4.14/drivers/net/ |
D | Kconfig | 24 # All the following symbols are dependent on NETDEVICES - do not repeat 25 # that for each of the symbols.
|
/linux-4.4.14/net/wireless/ |
D | Kconfig | 201 wext compatibility symbols to be exported.
|
/linux-4.4.14/drivers/net/ppp/ |
D | Kconfig | 30 If you said Y to "Version information on all symbols" above, then
|
/linux-4.4.14/tools/lib/traceevent/ |
D | event-parse.h | 247 struct print_flag_sym *symbols; member
|
D | event-parse.c | 828 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/ |
D | Kconfig | 366 # 44x errata/workaround config symbols, selected by the CPU models above
|
/linux-4.4.14/Documentation/kdump/ |
D | kdump.txt | 149 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/ |
D | README | 168 new config symbols. 176 Like above, but sets new symbols to their default
|
/linux-4.4.14/fs/affs/ |
D | Changes | 274 - Removed all unnecessary external symbols.
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | xilinx.txt | 13 into an 'xparameters.h' in the form of #define symbols. This tells the
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 382 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/ |
D | Kconfig | 142 where many symbols are at unusual places. The driver knows how to map
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 895 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/ |
D | xmit.c | 1053 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/ |
D | Kconfig | 489 Some architectures generate an _ in front of C symbols; things like
|
/linux-4.4.14/Documentation/filesystems/ |
D | hpfs.txt | 262 1.97.1 Changed names of global symbols
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.megaraid | 428 iii. Module compilation reorder in Makefile so that unresolved symbols do
|
D | ChangeLog.ncr53c8xx | 177 - Declare static all symbols that do not need to be visible from
|
D | ChangeLog.1992-1997 | 1760 * scsi_debug.c: Change some constants to use symbols like INT_MAX.
|
/linux-4.4.14/Documentation/powerpc/ |
D | hvcs.txt | 103 symbols it expects.
|
/linux-4.4.14/Documentation/gpio/ |
D | gpio-legacy.txt | 97 Platforms define how they use those integers, and usually #define symbols
|
/linux-4.4.14/drivers/mfd/ |
D | Kconfig | 890 and expose a number of symbols needed for dependent devices
|
/linux-4.4.14/arch/arm/ |
D | Kconfig | 1579 locally-defined, preemptible global symbols as short-range "b.n"
|