| /scripts/ |
| D | rust_is_available_test.py | 128 result = subprocess.run("scripts/rust_is_available.sh", env=env, capture_output=True) 131 self.assertEqual(result.stdout, b"") 136 self.assertEqual(result.returncode, 0) 137 self.assertEqual(result.stderr, b"") 143 self.assertEqual(result.returncode, 0) 144 self.assertNotEqual(result.stderr, b"") 148 self.assertEqual(result.returncode, 0) 149 … self.assertIn(b"Please see Documentation/rust/quick-start.rst for details", result.stderr) 153 self.assertNotEqual(result.returncode, 0) 154 … self.assertIn(b"Please see Documentation/rust/quick-start.rst for details", result.stderr) [all …]
|
| D | checktransupdate.py | 47 result = pipe.read() 48 result = result.split("\n") 49 if len(result) <= 1: 52 logging.debug("Result: %s", result[0]) 55 "hash": result[0], 56 "author_date": datetime.strptime(result[1], "%a, %d %b %Y %H:%M:%S %z"), 57 "commit_date": datetime.strptime(result[2], "%a, %d %b %Y %H:%M:%S %z"), 58 "message": result[4:], 77 result = pipe.read().split("\n") 79 result = list(filter(lambda x: x != "", result)) [all …]
|
| D | generate_initcall_order.pl | 232 foreach my $result (@{$results->{$index}}) { 233 my $level = $result->{'level'}; 239 push(@{$sections->{$level}}, $result->{'secname'});
|
| D | generate_rust_target.rs | 135 let mut result = HashMap::new(); in from_stdin() localVariable 153 result.insert(key.to_string(), value.trim_end_matches('\n').to_string()); in from_stdin() 156 KernelConfig(result) in from_stdin()
|
| D | recordmcount.h | 634 int result = 0; in do_func() local 658 result = 0; in do_func() 667 result = find_secsym_ndx(w(relhdr->sh_info), txtname, in do_func() 672 if (result) in do_func() 685 result = -1; in do_func() 690 if (!result && mloc0 != mlocp) in do_func() 691 result = append_func(ehdr, shstr, mloc0, mlocp, mrel0, mrelp, in do_func() 696 return result; in do_func()
|
| D | kallsyms.c | 297 static int expand_symbol(const unsigned char *data, int len, char *result) in expand_symbol() argument 306 *result++ = c; in expand_symbol() 310 rlen = expand_symbol(best_table[c], best_table_len[c], result); in expand_symbol() 312 result += rlen; in expand_symbol() 317 *result=0; in expand_symbol()
|
| D | kernel-doc | 2401 my $result = $highlights[$k][1]; 2403 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
|
| /scripts/gdb/linux/ |
| D | rbtree.py | 122 result = rb_first(root) 123 if result is None: 126 return result 142 result = rb_last(root) 143 if result is None: 146 return result 162 result = rb_next(node) 163 if result is None: 166 return result 182 result = rb_prev(node) [all …]
|
| D | clk.py | 68 result = self.lookup_hlist(child['children'], name) 69 if result: 70 return result
|
| D | radixtree.py | 84 result = lookup(root, index) 85 if result is None: 88 return result
|
| D | slab.py | 89 result = (((x & 0x00000000000000ff) << 56) | \ 97 return result
|
| D | mapletree.py | 159 result = tp < maple_range_64
|
| /scripts/mod/ |
| D | symsearch.c | 52 unsigned int result = 0; in symbol_count() local 56 result++; in symbol_count() 58 return result; in symbol_count() 184 Elf_Sym *result = NULL; in symsearch_find_nearest() local 191 result = &elf->symtab_start[table[hi].symbol_index]; in symsearch_find_nearest() 196 result = &elf->symtab_start[table[hi - 1].symbol_index]; in symsearch_find_nearest() 198 return result; in symsearch_find_nearest()
|
| /scripts/kconfig/ |
| D | nconf.gui.c | 323 char *result = *resultp; in dialog_inputbox() local 329 *resultp = result = xrealloc(result, *result_len); in dialog_inputbox() 352 strncpy(result, init, *result_len); in dialog_inputbox() 353 result[*result_len - 1] = '\0'; in dialog_inputbox() 376 result + cursor_position-cursor_form_win); in dialog_inputbox() 387 int len = strlen(result); in dialog_inputbox() 399 memmove(&result[cursor_position-1], in dialog_inputbox() 400 &result[cursor_position], in dialog_inputbox() 409 memmove(&result[cursor_position], in dialog_inputbox() 410 &result[cursor_position+1], in dialog_inputbox() [all …]
|
| D | qconf.cc | 47 QList<int> result; in readSizes() local 55 result.push_back((*it).toInt()); in readSizes() 62 return result; in readSizes() 1170 struct symbol **result; in clicked() local 1184 result = sym_re_search(data); in clicked() 1185 if (!result) { in clicked() 1190 sym = *result; in clicked() 1208 free(result); in clicked() 1219 : Parent(parent), result(NULL) in ConfigSearchWindow() 1294 free(result); in search() [all …]
|
| D | qconf.h | 234 struct symbol **result; variable
|
| D | gconf.c | 383 gint result; in on_window1_delete_event() local 406 result = gtk_dialog_run(GTK_DIALOG(dialog)); in on_window1_delete_event() 407 switch (result) { in on_window1_delete_event()
|
| /scripts/clang-tools/ |
| D | gen_compile_commands.py | 213 result = line_matcher.match(f.readline()) 214 if result: 216 entry = process_line(directory, result.group('command_prefix'), 217 result.group('file_path'))
|
| /scripts/gendwarfksyms/ |
| D | kabi.c | 302 unsigned long result = 0; in get_ulong_value() local 306 result = strtoul(value, &endptr, 10); in get_ulong_value() 311 return result; in get_ulong_value()
|
| /scripts/coccinelle/misc/ |
| D | badty.cocci | 8 //# sizeof argument is not used in constructing the return value. The result
|
| /scripts/coccinelle/tests/ |
| D | unsigned_lesser_than_zero.cocci | 12 /// result is used to avoid false positives difficult to detect by other ways
|
| /scripts/coccinelle/api/alloc/ |
| D | alloc_cast.cocci | 8 //# the casting as it is not required. The result in the patch case may
|