Home
last modified time | relevance | path

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

/scripts/
Dlink-vmlinux.sh39 info() function
47 info GEN .tmp_initcalls.lds
59 info GEN .tmp_symversions.lds
94 info LTO ${1}
96 info LD ${1}
148 info OBJTOOL ${1}
165 info LD ${output}
228 info "BTF" ${2}
265 info KSYMS ${2}
281 info AS ${kallsyms_S}
[all …]
DKconfig.include43 cc-info := $(shell,$(srctree)/scripts/cc-version.sh $(CC))
44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this compiler is not supported.)
45 cc-name := $(shell,set -- $(cc-info) && echo $1)
46 cc-version := $(shell,set -- $(cc-info) && echo $2)
49 as-info := $(shell,$(srctree)/scripts/as-version.sh $(CC) $(CLANG_FLAGS))
50 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.)
51 as-name := $(shell,set -- $(as-info) && echo $1)
52 as-version := $(shell,set -- $(as-info) && echo $2)
55 ld-info := $(shell,$(srctree)/scripts/ld-version.sh $(LD))
56 $(error-if,$(success,test -z "$(ld-info)"),Sorry$(comma) this linker is not supported.)
[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()
DKbuild.include129 # See Documentation/kbuild/makefiles.rst for more info
/scripts/mod/
Dmodpost.c332 static void *sym_get_data_by_offset(const struct elf_info *info, in sym_get_data_by_offset() argument
335 Elf_Shdr *sechdr = &info->sechdrs[secindex]; in sym_get_data_by_offset()
337 if (info->hdr->e_type != ET_REL) in sym_get_data_by_offset()
340 return (void *)info->hdr + sechdr->sh_offset + offset; in sym_get_data_by_offset()
343 static void *sym_get_data(const struct elf_info *info, const Elf_Sym *sym) in sym_get_data() argument
345 return sym_get_data_by_offset(info, get_secindex(info, sym), in sym_get_data()
349 static const char *sech_name(const struct elf_info *info, Elf_Shdr *sechdr) in sech_name() argument
351 return sym_get_data_by_offset(info, info->secindex_strings, in sech_name()
355 static const char *sec_name(const struct elf_info *info, int secindex) in sec_name() argument
357 return sech_name(info, &info->sechdrs[secindex]); in sec_name()
[all …]
Dmodpost.h170 static inline unsigned int get_secindex(const struct elf_info *info, in get_secindex() argument
177 return info->symtab_shndx_start[sym - info->symtab_start]; in get_secindex()
182 void handle_moddevtable(struct module *mod, struct elf_info *info,
Dfile2alias.c1507 void handle_moddevtable(struct module *mod, struct elf_info *info, in handle_moddevtable() argument
1516 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections) in handle_moddevtable()
1538 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) { in handle_moddevtable()
1542 symval = (void *)info->hdr in handle_moddevtable()
1543 + 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/gdb/linux/
Ddmesg.py112 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/
Dgen_compile_commands.py237 logging.info('Could not add line from %s: %s',
/scripts/kconfig/
Dqconf.cc1010 QString info; in menuInfo() local
1011 QTextStream stream(&info); in menuInfo()
1064 setText(info); in menuInfo()
1253 info = new ConfigInfoView(split, "search"); in ConfigSearchWindow()
1255 info, &ConfigInfoView::setInfo); in ConfigSearchWindow()
1302 info->clear(); in search()
Dqconf.h232 ConfigInfoView* info; variable