Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 16 of 16) sorted by relevance

/scripts/
Dcheck-sysctl-docs48 function printentry(entry) {
49 seen[entry]++
50 printf "* %s from %s", entry, file[entry]
51 if (documented[entry]) {
153 for (entry in entries[children[tables[1]][table]]) {
154 printentry(entry)
163 for (entry in entries[tables[2]]) {
164 printentry(entry)
176 for (entry in documented) {
177 if (!seen[entry]) {
[all …]
Dgcc-goto.sh18 entry:
19 asm goto ("" :::: entry);
Dchecksyscalls.sh257 while read nr abi name entry ; do
264 (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
Dget_maintainer.pl1424 while (my $entry = shift(@address_list)) {
1425 push_email_address($entry, $role);
1440 foreach my $entry (@email_to) {
1442 my ($entry_name, $entry_address) = parse_email($entry->[0]);
1444 && ($role eq "" || !($entry->[1] =~ m/$role/))
1446 if ($entry->[1] eq "") {
1447 $entry->[1] = "$role";
1449 $entry->[1] = "$entry->[1],$role";
1453 if ($email eq $entry->[0]
1454 && ($role eq "" || !($entry->[1] =~ m/$role/))
[all …]
DMakefile.kcsan13 $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0) -fno-optimize-sibling-calls) \
Dasn1_compiler.c1396 int entry; in render_out_of_line_list() local
1404 e->entry_index = entry = nr_entries; in render_out_of_line_list()
1417 render_opcode(out, "_jump_target(%u),\n", entry); in render_out_of_line_list()
1424 render_opcode(out, "_jump_target(%u),\n", entry); in render_out_of_line_list()
1443 int entry, skippable = 0, outofline = 0; in render_element() local
1574 entry = nr_entries; in render_element()
1582 render_opcode(out, "_jump_target(%u),\n", entry); in render_element()
Ddev-needs.sh16 chain, so the last entry in the output is close to the root of the
Dcheckpatch.pl630 foreach my $entry (@link_tags) {
635 $entry .= ':';
636 $link_tags_search .= $entry;
637 $link_tags_print .= "'$entry'";
826 foreach my $entry (@mode_permission_funcs) {
828 $mode_perms_search .= $entry->[0];
851 foreach my $entry (keys %deprecated_apis) {
853 $deprecated_apis_search .= $entry;
886 foreach my $entry (keys %mode_permission_string_types) {
888 $mode_perms_string_search .= $entry;
[all …]
/scripts/kconfig/
Dlist.h126 static inline void list_del(struct list_head *entry) in list_del() argument
128 __list_del(entry->prev, entry->next); in list_del()
129 entry->next = (struct list_head*)LIST_POISON1; in list_del()
130 entry->prev = (struct list_head*)LIST_POISON2; in list_del()
Dqconf.cc1795 QString entry; in saveSettings() local
1798 entry = "single"; in saveSettings()
1802 entry = "split"; in saveSettings()
1806 entry = "full"; in saveSettings()
1812 configSettings->setValue("/listMode", entry); in saveSettings()
/scripts/gdb/linux/
Dcpus.py78 entry = -1
83 entry += 1
84 if entry == num_entries:
86 bits = mask[entry]
95 cpu = entry * bits_per_entry + bit
/scripts/clang-tools/
Drun-clang-tools.py47 def run_analysis(entry): argument
54 p = subprocess.run(["clang-tidy", "-p", args.path, checks, entry["file"]],
57 cwd=entry["directory"])
Dgen_compile_commands.py225 entry = process_line(directory, result.group(1),
227 compile_commands.append(entry)
/scripts/gcc-plugins/
Drandomize_layout_plugin.c794 const struct whitelist_entry *entry; in whitelisted_cast() local
797 for (entry = whitelist; entry->pathname; entry++) { in whitelisted_cast()
798 if (!strstr(xloc.file, entry->pathname)) in whitelisted_cast()
801 if (type_name_eq(stmt, lhs_tree, entry->lhs) && type_name_eq(stmt, rhs_tree, entry->rhs)) in whitelisted_cast()
Dgcc-common.h805 static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_function_insertion_hook() argument
807 symtab->remove_cgraph_insertion_hook(entry); in cgraph_remove_function_insertion_hook()
815 static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_node_removal_hook() argument
817 symtab->remove_cgraph_removal_hook(entry); in cgraph_remove_node_removal_hook()
825 static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry) in cgraph_remove_node_duplication_hook() argument
827 symtab->remove_cgraph_duplication_hook(entry); in cgraph_remove_node_duplication_hook()
/scripts/dtc/
Dlivetree.c890 char *entry; in add_fixup_entry() local
899 xasprintf(&entry, "%s:%s:%u", in add_fixup_entry()
901 append_to_property(fn, m->ref, entry, strlen(entry) + 1, TYPE_STRING); in add_fixup_entry()
903 free(entry); in add_fixup_entry()