| /scripts/mod/ |
| D | modpost.c | 325 static void *sym_get_data_by_offset(const struct elf_info *info, in sym_get_data_by_offset() argument 328 Elf_Shdr *sechdr = &info->sechdrs[secindex]; in sym_get_data_by_offset() 330 return (void *)info->hdr + sechdr->sh_offset + offset; in sym_get_data_by_offset() 333 void *sym_get_data(const struct elf_info *info, const Elf_Sym *sym) in sym_get_data() argument 335 return sym_get_data_by_offset(info, get_secindex(info, sym), in sym_get_data() 339 static const char *sech_name(const struct elf_info *info, Elf_Shdr *sechdr) in sech_name() argument 341 return sym_get_data_by_offset(info, info->secindex_strings, in sech_name() 345 static const char *sec_name(const struct elf_info *info, unsigned int secindex) in sec_name() argument 352 if (secindex >= info->num_sections) in sec_name() 355 return sech_name(info, &info->sechdrs[secindex]); in sec_name() [all …]
|
| D | modpost.h | 126 static inline unsigned int get_secindex(const struct elf_info *info, in get_secindex() argument 136 return info->symtab_shndx_start[sym - info->symtab_start]; in get_secindex() 172 void handle_moddevtable(struct module *mod, struct elf_info *info, 184 void *sym_get_data(const struct elf_info *info, const Elf_Sym *sym);
|
| D | file2alias.c | 1601 void handle_moddevtable(struct module *mod, struct elf_info *info, in handle_moddevtable() argument 1610 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections) in handle_moddevtable() 1632 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) { in handle_moddevtable() 1636 symval = sym_get_data(info, sym); in handle_moddevtable()
|
| /scripts/ |
| D | link-vmlinux.sh | 41 info() function 57 info LD ${output} 118 info BTF "${btf_data}" 153 info KSYMS "${2}.S" 156 info AS "${2}.o" 176 info NM ${2} 282 info BTFIDS vmlinux 289 info SORTTAB vmlinux
|
| D | Kconfig.include | 44 cc-info := $(shell,$(srctree)/scripts/cc-version.sh $(CC)) 45 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.) 46 cc-name := $(shell,set -- $(cc-info) && echo $1) 47 cc-version := $(shell,set -- $(cc-info) && echo $2) 50 as-info := $(shell,$(srctree)/scripts/as-version.sh $(CC) $(CLANG_FLAGS)) 51 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.) 52 as-name := $(shell,set -- $(as-info) && echo $1) 53 as-version := $(shell,set -- $(as-info) && echo $2) 56 ld-info := $(shell,$(srctree)/scripts/ld-version.sh $(LD)) 57 $(error-if,$(success,test -z "$(ld-info)"),Sorry$(comma) this linker is not supported.) [all …]
|
| D | extract-module-sig.pl | 58 my @info = unpack("CCCCCxxxN", $raw_info); 59 my ($algo, $hash, $id_type, $name_len, $kid_len, $sig_len) = @info; 121 print join(" ", @info), "\n";
|
| D | insert-sys-cert.c | 33 #define info(format, args...) fprintf(stderr, "INFO: " format, ## args) macro 262 info("sym: %s\n", s->name); in print_sym() 263 info("addr: 0x%lx\n", s->address); in print_sym() 264 info("size: %d\n", s->size); in print_sym() 265 info("offset: 0x%lx\n", (unsigned long)s->offset); in print_sym() 365 info("Symbol table found.\n"); in main() 405 info("Inserted the contents of %s into %lx.\n", cert_file, in main() 407 info("Used %d bytes out of %d bytes reserved.\n", *used, in main()
|
| D | checktransupdate.py | 120 logging.info(file_path) 127 logging.info("commit %s", pretty_output(commit)) 129 logging.info("%d commits needs resolving in total\n", count) 258 logging.info(os.path.relpath(os.path.abspath(file), linux_path)) 259 logging.info("No translation in the locale of %s\n", args.locale)
|
| D | sign-file.c | 125 OSSL_STORE_INFO *info = OSSL_STORE_load(store); in read_private_key_pkcs11() local 127 if (!info) { in read_private_key_pkcs11() 131 if (OSSL_STORE_INFO_get_type(info) == OSSL_STORE_INFO_PKEY) { in read_private_key_pkcs11() 132 private_key = OSSL_STORE_INFO_get1_PKEY(info); in read_private_key_pkcs11() 135 OSSL_STORE_INFO_free(info); in read_private_key_pkcs11()
|
| D | Makefile.autofdo | 5 CFLAGS_AUTOFDO_CLANG := -fdebug-info-for-profiling -mllvm -enable-fs-discriminator=true -mllvm -imp…
|
| D | generate_rust_analyzer.py | 138 logging.info("Checking %s", path) 146 logging.info("Adding %s", name)
|
| D | Makefile.host | 93 hostrust_flags = --out-dir $(dir $@) --emit=dep-info=$(depfile) \
|
| D | Makefile.build | 277 --out-dir $(dir $@) --emit=dep-info=$(depfile)
|
| D | Kbuild.include | 161 # See Documentation/kbuild/makefiles.rst for more info
|
| /scripts/kconfig/tests/preprocess/circular_expansion/ |
| D | Kconfig | 5 $(info $(X))
|
| /scripts/kconfig/tests/preprocess/builtin_func/ |
| D | Kconfig | 3 # 'info' prints the argument to stdout. 4 $(info,hello world 0)
|
| /scripts/gdb/linux/ |
| D | dmesg.py | 112 info = utils.read_memoryview(inf, info_addr + info_off, info_sz).tobytes() 125 text_len = utils.read_u16(info, len_off) 135 time_stamp = utils.read_u64(info, ts_off)
|
| /scripts/clang-tools/ |
| D | gen_compile_commands.py | 220 logging.info('Could not add line from %s: %s',
|
| /scripts/kconfig/ |
| D | qconf.cc | 1013 QString info; in menuInfo() local 1014 QTextStream stream(&info); in menuInfo() 1067 setText(info); in menuInfo() 1247 info = new ConfigInfoView(split, "search"); in ConfigSearchWindow() 1249 info, &ConfigInfoView::setInfo); in ConfigSearchWindow() 1296 info->clear(); in search()
|
| D | qconf.h | 232 ConfigInfoView* info; variable
|