/Linux-v4.19/tools/lib/subcmd/ |
D | parse-options.h | 102 int short_name; member 123 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… 124 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … 125 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… 127 { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \ 130 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… 131 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… 132 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … 133 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … 134 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… [all …]
|
D | parse-options.c | 23 fprintf(stderr, " Error: switch `%c' %s", opt->short_name, reason); in opterror() 41 fprintf(stderr, " Warning: switch `%c' %s", opt->short_name, reason); in optwarning() 87 if (((flags & OPT_SHORT) && p->excl_opt->short_name) || in get_value() 90 p->excl_opt->short_name); in get_value() 328 if (options->short_name == *p->opt) { in parse_short_opt() 594 if ((excl_short_opt && ctx->excl_opt->short_name) || in parse_options_step() 596 char opt = ctx->excl_opt->short_name; in parse_options_step() 692 if (opts->short_name) in print_option_help() 693 pos += fprintf(stderr, "-%c", opts->short_name); in print_option_help() 697 if (opts->long_name && opts->short_name) in print_option_help() [all …]
|
/Linux-v4.19/drivers/hid/ |
D | hid-led.c | 76 const char *short_name; member 258 .short_name = "thingm", 361 .short_name = "riso_kagaku", 371 .short_name = "dream_cheeky", 382 .short_name = "thingm", 393 .short_name = "delcom", 404 .short_name = "luxafor", 420 config->short_name, minor, color_name, rgb->num); in hidled_init_led() 423 config->short_name, minor, color_name); in hidled_init_led()
|
/Linux-v4.19/tools/perf/util/ |
D | vdso.c | 124 static struct dso *__machine__addnew_vdso(struct machine *machine, const char *short_name, in __machine__addnew_vdso() argument 129 dso = dso__new(short_name); in __machine__addnew_vdso() 355 return !strcmp(dso->short_name, DSO__NAME_VDSO) || in dso__is_vdso() 356 !strcmp(dso->short_name, DSO__NAME_VDSO32) || in dso__is_vdso() 357 !strcmp(dso->short_name, DSO__NAME_VDSOX32); in dso__is_vdso()
|
D | dso.c | 1019 const char *short_name, int dso_type) in machine__findnew_kernel() argument 1031 dso__set_short_name(dso, short_name, false); in machine__findnew_kernel() 1072 rc = strcmp(dso->short_name, this->short_name); in __dso__findlink_by_longname() 1132 free((char *)dso->short_name); in dso__set_short_name() 1134 dso->short_name = name; in dso__set_short_name() 1239 zfree((char **)&dso->short_name); in dso__delete() 1302 const char *name = dso->short_name + 1; in dso__kernel_module_get_build_id() 1380 if (strcmp(pos->short_name, name) == 0) in __dsos__find() 1463 size_t ret = fprintf(fp, "dso: %s (", dso->short_name); in dso__fprintf() 1465 if (dso->short_name != dso->long_name) in dso__fprintf()
|
D | dso.h | 172 const char *short_name; member 335 const char *short_name, int dso_type);
|
D | unwind-libdw.c | 53 mod = dwfl_report_elf(ui->dwfl, dso->short_name, in __report_module()
|
D | symbol.c | 761 if (strcmp(curr_map->dso->short_name, module)) { in map_groups__split_kallsyms() 1054 mi = find_module(old_map->dso->short_name, &modules); in do_validate_kcore_modules() 1687 if (map->dso && strcmp(map->dso->short_name, name) == 0) in map_groups__find_by_name()
|
D | srcline.c | 546 } else if (asprintf(&srcline, "%s[%" PRIx64 "]", dso->short_name, addr) < 0) in __get_srcline()
|
/Linux-v4.19/drivers/firmware/efi/ |
D | efivars.c | 546 char *short_name; in efivar_create_sysfs_entry() local 558 short_name = kmalloc(short_name_size, GFP_KERNEL); in efivar_create_sysfs_entry() 559 if (!short_name) in efivar_create_sysfs_entry() 562 ucs2_as_utf8(short_name, variable_name, short_name_size); in efivar_create_sysfs_entry() 566 short_name[utf8_name_size] = '-'; in efivar_create_sysfs_entry() 568 short_name + utf8_name_size + 1); in efivar_create_sysfs_entry() 573 NULL, "%s", short_name); in efivar_create_sysfs_entry() 574 kfree(short_name); in efivar_create_sysfs_entry()
|
/Linux-v4.19/tools/perf/tests/ |
D | hists_common.c | 182 he->ms.map->dso->short_name, in print_hists_in() 209 he->ms.map->dso->short_name, in print_hists_out()
|
D | hists_cumulate.c | 152 #define DSO(he) (he->ms.map->dso->short_name) 157 #define CDSO(cl) (cl->ms.map->dso->short_name)
|
D | vmlinux-kallsyms.c | 186 map->dso->short_name : in test__vmlinux_matches_kallsyms()
|
D | hists_output.c | 118 #define DSO(he) (he->ms.map->dso->short_name)
|
/Linux-v4.19/tools/perf/ |
D | builtin-probe.c | 259 params.command = opt->short_name; in opt_show_lines() 279 params.command = opt->short_name; in opt_show_vars() 291 params.command = opt->short_name; in opt_add_probe_event() 302 params.command = opt->short_name; in opt_set_filter_with_command()
|
D | builtin-kallsyms.c | 38 symbol->name, map->dso->short_name, map->dso->long_name, in __cmd_kallsyms()
|
/Linux-v4.19/tools/perf/scripts/python/ |
D | export-to-postgresql.py | 699 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x): argument 700 n1 = len(short_name) 704 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
|
/Linux-v4.19/include/net/bluetooth/ |
D | mgmt.h | 116 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member 157 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member 689 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member
|
/Linux-v4.19/scripts/dtc/ |
D | dt_to_config | 456 if ($short_name) { 1001 "short-name" => \$short_name,
|
/Linux-v4.19/include/linux/ |
D | fscache-cache.h | 342 char short_name[8]; member
|
/Linux-v4.19/fs/fscache/ |
D | object-list.c | 240 obj->state->short_name, in fscache_objlist_show()
|
D | object.c | 48 .short_name = sn, \ 69 .short_name = sn, \
|
/Linux-v4.19/net/bluetooth/ |
D | mgmt.c | 988 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name)); in read_controller_info() 1013 name_len = strlen(hdev->short_name); in append_eir_data_to_buf() 1015 hdev->short_name, name_len); in append_eir_data_to_buf() 3232 !memcmp(hdev->short_name, cp->short_name, in set_local_name() 3233 sizeof(hdev->short_name))) { in set_local_name() 3239 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name)); in set_local_name() 7683 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH); in mgmt_set_local_name_complete()
|
/Linux-v4.19/include/trace/events/ |
D | fscache.h | 354 memcpy(__entry->state, state->short_name, 8);
|
/Linux-v4.19/drivers/net/ethernet/qlogic/netxen/ |
D | netxen_nic.h | 1821 char short_name[NETXEN_MAX_SHORT_NAME]; member 1860 strcpy(name, netxen_boards[i].short_name); in netxen_nic_get_brd_name_by_type()
|