/scripts/ |
D | parse-maintainers.pl | 115 foreach my $key (sort by_category keys %$hashref) { 116 if ($key eq " ") { 117 print $file $$hashref{$key}; 124 print $file $key . "\n"; 126 foreach my $pattern (sort by_pattern split('\n', %$hashref{$key})) { 130 foreach my $pattern (split('\n', %$hashref{$key})) { 183 foreach my $key (keys %hash) { 184 if ($key =~ /$type/ || $hash{$key} =~ /$type/) { 185 $new_hash{$key} = $hash{$key}; 186 delete $hash{$key};
|
D | bootgraph.pl | 173 foreach my $key (@initcalls) { 174 my $duration = $end{$key} - $start{$key}; 178 my $pid = $pids{$key}; 184 $s = ($start{$key} - $firsttime) * $mult; 187 $e = ($end{$key} - $firsttime) * $mult; 199 if ($type{$key} == 1) { 205 print "<text transform=\"translate($s2,$y2) rotate(90)\">$key</text>\n"; 207 print "<text transform=\"translate($s3,$y2) rotate(90)\" font-size=\"3pt\">$key</text>\n";
|
D | leaking_addresses.pl | 641 my ($cache, $key, $value) = @_; 643 if (!$cache->{$key}) { 644 $cache->{$key} = (); 646 push @{$cache->{$key}}, $value;
|
D | faddr2line | 181 …} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2)
|
D | checkpatch.pl | 432 for my $key (keys %debug) { 434 eval "\${dbg_$key} = '$debug{$key}';";
|
/scripts/kconfig/lxdialog/ |
D | menubox.c | 176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 269 while (key != KEY_ESC) { in dialog_menu() 270 key = wgetch(menu); in dialog_menu() 272 if (key < 256 && isalpha(key)) in dialog_menu() 273 key = tolower(key); in dialog_menu() 275 if (strchr("ynmh", key)) in dialog_menu() 281 if (key == tolower(item_str()[j])) in dialog_menu() 288 if (key == tolower(item_str()[j])) in dialog_menu() 295 key == KEY_UP || key == KEY_DOWN || in dialog_menu() 296 key == '-' || key == '+' || in dialog_menu() [all …]
|
D | yesno.c | 31 int i, x, y, key = 0, button = 0; in dialog_yesno() local 65 while (key != KEY_ESC) { in dialog_yesno() 66 key = wgetch(dialog); in dialog_yesno() 67 switch (key) { in dialog_yesno() 80 button = ((key == KEY_LEFT ? --button : ++button) < 0) ? 1 : (button > 1 ? 0 : button); in dialog_yesno() 90 key = on_key_esc(dialog); in dialog_yesno() 100 return key; /* ESC pressed */ in dialog_yesno()
|
D | checklist.c | 108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local 195 while (key != KEY_ESC) { in dialog_checklist() 196 key = wgetch(dialog); in dialog_checklist() 200 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist() 204 if (i < max_choice || key == KEY_UP || key == KEY_DOWN || in dialog_checklist() 205 key == '+' || key == '-') { in dialog_checklist() 206 if (key == KEY_UP || key == '-') { in dialog_checklist() 231 } else if (key == KEY_DOWN || key == '+') { in dialog_checklist() 273 switch (key) { in dialog_checklist() 293 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_checklist() [all …]
|
D | inputbox.c | 35 int input_x = 0, key = 0, button = -1; in dialog_inputbox() local 106 while (key != KEY_ESC) { in dialog_inputbox() 107 key = wgetch(dialog); in dialog_inputbox() 110 switch (key) { in dialog_inputbox() 185 if (key < 0x100 && isprint(key)) { in dialog_inputbox() 191 instr[pos] = key; in dialog_inputbox() 193 instr[len] = key; in dialog_inputbox() 221 switch (key) { in dialog_inputbox() 275 key = KEY_ESC; in dialog_inputbox() 278 key = on_key_esc(dialog); in dialog_inputbox()
|
D | textbox.c | 47 int i, x, y, cur_x, cur_y, key = 0; in dialog_textbox() local 129 key = wgetch(dialog); in dialog_textbox() 130 switch (key) { in dialog_textbox() 206 if (key == '0') in dialog_textbox() 238 if (key == keys[i]) { in dialog_textbox() 260 return key; in dialog_textbox()
|
D | util.c | 549 int key; in on_key_esc() local 555 key = wgetch(win); in on_key_esc() 562 if (key == KEY_ESC && key2 == ERR) in on_key_esc() 564 else if (key != ERR && key != KEY_ESC && key2 == ERR) in on_key_esc() 565 ungetch(key); in on_key_esc()
|
/scripts/kconfig/ |
D | nconf.c | 289 typedef void (*function_key_handler_t)(int *key, struct menu *menu); 290 static void handle_f1(int *key, struct menu *current_item); 291 static void handle_f2(int *key, struct menu *current_item); 292 static void handle_f3(int *key, struct menu *current_item); 293 static void handle_f4(int *key, struct menu *current_item); 294 static void handle_f5(int *key, struct menu *current_item); 295 static void handle_f6(int *key, struct menu *current_item); 296 static void handle_f7(int *key, struct menu *current_item); 297 static void handle_f8(int *key, struct menu *current_item); 298 static void handle_f9(int *key, struct menu *current_item); [all …]
|
D | qconf.h | 27 QList<int> readSizes(const QString& key, bool *ok); 28 bool writeSizes(const QString& key, const QList<int>& value);
|
D | mconf.c | 375 int key = '0' + (pos->index % JUMP_NB) + 1; in update_text() local 377 sprintf(header, "(%c)", key); in update_text() 378 data->keys[k] = key; in update_text()
|
D | qconf.cc | 42 QList<int> ConfigSettings::readSizes(const QString& key, bool *ok) in readSizes() argument 46 if (contains(key)) in readSizes() 48 QStringList entryList = value(key).toStringList(); in readSizes() 65 bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value) in writeSizes() argument 72 setValue(key, stringList); in writeSizes() 729 if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) { in keyPressEvent() 741 switch (ev->key()) { in keyPressEvent()
|
/scripts/gcc-plugins/ |
D | arm_ssp_per_task_plugin.c | 84 if (!strcmp(argv[i].key, "disable")) in plugin_init() 90 plugin_name, argv[i].key); in plugin_init() 94 if (!strcmp(argv[i].key, "tso")) { in plugin_init() 99 if (!strcmp(argv[i].key, "offset")) { in plugin_init() 104 plugin_name, argv[i].key); in plugin_init()
|
D | structleak_plugin.c | 237 if (!strcmp(argv[i].key, "disable")) { in plugin_init() 241 if (!strcmp(argv[i].key, "verbose")) { in plugin_init() 245 if (!strcmp(argv[i].key, "byref")) { in plugin_init() 249 if (!strcmp(argv[i].key, "byref-all")) { in plugin_init() 253 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
|
D | stackleak_plugin.c | 566 if (!strcmp(argv[i].key, "track-min-size")) { in plugin_init() 569 plugin_name, argv[i].key); in plugin_init() 576 plugin_name, argv[i].key, argv[i].value); in plugin_init() 579 } else if (!strcmp(argv[i].key, "arch")) { in plugin_init() 582 plugin_name, argv[i].key); in plugin_init() 588 } else if (!strcmp(argv[i].key, "disable")) { in plugin_init() 590 } else if (!strcmp(argv[i].key, "verbose")) { in plugin_init() 594 plugin_name, argv[i].key); in plugin_init()
|
D | sancov_plugin.c | 121 if (!strcmp(argv[i].key, "no-sancov")) { in plugin_init() 125 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
|
D | latent_entropy_plugin.c | 617 if (!(strcmp(argv[i].key, "disable"))) { in plugin_init() 621 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
|
D | randomize_layout_plugin.c | 965 if (!strcmp(argv[i].key, "disable")) { in plugin_init() 969 if (!strcmp(argv[i].key, "performance-mode")) { in plugin_init() 973 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
|
/scripts/gdb/linux/ |
D | proc.py | 115 for key, string in lst.items(): 116 if opt & key:
|