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 …]
Dchecksyscalls.sh263 while read nr abi name entry ; do
270 (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
Dget_maintainer.pl1425 while (my $entry = shift(@address_list)) {
1426 push_email_address($entry, $role);
1441 foreach my $entry (@email_to) {
1443 my ($entry_name, $entry_address) = parse_email($entry->[0]);
1445 && ($role eq "" || !($entry->[1] =~ m/$role/))
1447 if ($entry->[1] eq "") {
1448 $entry->[1] = "$role";
1450 $entry->[1] = "$entry->[1],$role";
1454 if ($email eq $entry->[0]
1455 && ($role eq "" || !($entry->[1] =~ m/$role/))
[all …]
DMakefile.kcsan23 kcsan-cflags += $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0))
Dhead-object-list.txt4 # is an object that contains the entry point. This is kept for compatibility
12 # the entry from this file.
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/mod/
Dlist.h115 static inline void __list_del_entry(struct list_head *entry) in __list_del_entry() argument
117 __list_del(entry->prev, entry->next); in __list_del_entry()
126 static inline void list_del(struct list_head *entry) in list_del() argument
128 __list_del_entry(entry); in list_del()
129 entry->next = LIST_POISON1; in list_del()
130 entry->prev = LIST_POISON2; in list_del()
/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.cc1819 QString entry; in saveSettings() local
1822 entry = "single"; in saveSettings()
1826 entry = "split"; in saveSettings()
1830 entry = "full"; in saveSettings()
1836 configSettings->setValue("/listMode", entry); in saveSettings()
/scripts/clang-tools/
Drun-clang-tools.py46 def run_analysis(entry): argument
55 p = subprocess.run(["clang-tidy", "-p", args.path, ",".join(checks), entry["file"]],
58 cwd=entry["directory"])
Dgen_compile_commands.py216 entry = process_line(directory, result.group(1),
218 compile_commands.append(entry)
/scripts/gdb/linux/
Dcpus.py81 entry = -1
86 entry += 1
87 if entry == num_entries:
89 bits = mask[entry]
98 cpu = entry * bits_per_entry + bit
/scripts/gcc-plugins/
Dgcc-common.h266 static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_function_insertion_hook() argument
268 symtab->remove_cgraph_insertion_hook(entry); in cgraph_remove_function_insertion_hook()
276 static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_node_removal_hook() argument
278 symtab->remove_cgraph_removal_hook(entry); in cgraph_remove_node_removal_hook()
286 static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry) in cgraph_remove_node_duplication_hook() argument
288 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()