Home
last modified time | relevance | path

Searched refs:info (Results 1 – 15 of 15) sorted by relevance

/scripts/
Dlink-vmlinux.sh39 info() function
49 info GEN .tmp_initcalls.lds
61 info GEN .tmp_symversions.lds
96 info LTO ${1}
98 info LD ${1}
150 info OBJTOOL ${1}
165 info LD ${output}
236 info "BTF" ${2}
273 info KSYMS ${2}
297 info AS ${kallsyms_S}
[all …]
Dadjust_autoksyms.sh22 info() { function
28 info "CHK" "$cur_ksyms_file"
66 info "KSYMS" "symbols: before=$old, after=$new, changed=$changed"
67 info "UPD" "$cur_ksyms_file"
Dextract-module-sig.pl58 my @info = unpack("CCCCCxxxN", $raw_info);
59 my ($algo, $hash, $id_type, $name_len, $kid_len, $sig_len) = @info;
121 print join(" ", @info), "\n";
Dinsert-sys-cert.c33 #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()
DKconfig.include46 as-info := $(shell,$(srctree)/scripts/as-version.sh $(CC) $(CLANG_FLAGS))
47 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.)
48 as-name := $(shell,set -- $(as-info) && echo $1)
49 as-version := $(shell,set -- $(as-info) && echo $2)
Dsetlocalversion152 if rev=$(LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'); then
DKbuild.include212 # See Documentation/kbuild/makefiles.rst for more info
/scripts/mod/
Dmodpost.c323 static void *sym_get_data_by_offset(const struct elf_info *info, in sym_get_data_by_offset() argument
326 Elf_Shdr *sechdr = &info->sechdrs[secindex]; in sym_get_data_by_offset()
328 if (info->hdr->e_type != ET_REL) in sym_get_data_by_offset()
331 return (void *)info->hdr + sechdr->sh_offset + offset; in sym_get_data_by_offset()
334 static void *sym_get_data(const struct elf_info *info, const Elf_Sym *sym) in sym_get_data() argument
336 return sym_get_data_by_offset(info, get_secindex(info, sym), in sym_get_data()
340 static const char *sech_name(const struct elf_info *info, Elf_Shdr *sechdr) in sech_name() argument
342 return sym_get_data_by_offset(info, info->secindex_strings, in sech_name()
346 static const char *sec_name(const struct elf_info *info, int secindex) in sec_name() argument
348 return sech_name(info, &info->sechdrs[secindex]); in sec_name()
[all …]
Dmodpost.h174 static inline unsigned int get_secindex(const struct elf_info *info, in get_secindex() argument
181 return info->symtab_shndx_start[sym - info->symtab_start]; in get_secindex()
194 void handle_moddevtable(struct module *mod, struct elf_info *info,
Dfile2alias.c1450 void handle_moddevtable(struct module *mod, struct elf_info *info, in handle_moddevtable() argument
1459 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections) in handle_moddevtable()
1481 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) { in handle_moddevtable()
1485 symval = (void *)info->hdr in handle_moddevtable()
1486 + info->sechdrs[get_secindex(info, sym)].sh_offset in handle_moddevtable()
/scripts/kconfig/tests/preprocess/circular_expansion/
DKconfig5 $(info $(X))
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig3 # 'info' prints the argument to stdout.
4 $(info,hello world 0)
/scripts/clang-tools/
Dgen_compile_commands.py229 logging.info('Could not add line from %s: %s',
/scripts/kconfig/
Dqconf.cc1005 QString info; in menuInfo() local
1006 QTextStream stream(&info); in menuInfo()
1059 setText(info); in menuInfo()
1246 info = new ConfigInfoView(split, "search"); in ConfigSearchWindow()
1248 info, SLOT(setInfo(struct menu *))); in ConfigSearchWindow()
1294 info->clear(); in search()
Dqconf.h232 ConfigInfoView* info; variable