Home
last modified time | relevance | path

Searched refs:short_name (Results 1 – 34 of 34) sorted by relevance

/linux-4.4.14/tools/perf/util/
Dparse-options.h94 int short_name; member
112 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val…
113 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), …
114 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name…
116 { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \
119 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va…
120 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)…
121 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), …
122 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), …
123 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),…
[all …]
Dparse-options.c15 return error("switch `%c' %s", opt->short_name, reason); in opterror()
56 if (((flags & OPT_SHORT) && p->excl_opt->short_name) || in get_value()
59 p->excl_opt->short_name); in get_value()
231 if (options->short_name == *p->opt) { in parse_short_opt()
482 if ((excl_short_opt && ctx->excl_opt->short_name) || in parse_options_step()
484 char opt = ctx->excl_opt->short_name; in parse_options_step()
584 if (opts->short_name) in print_option_help()
585 pos += fprintf(stderr, "-%c", opts->short_name); in print_option_help()
589 if (opts->long_name && opts->short_name) in print_option_help()
655 int sa = tolower(a->short_name), sb = tolower(b->short_name), ret; in option__cmp()
[all …]
Dvdso.c123 static struct dso *__machine__addnew_vdso(struct machine *machine, const char *short_name, in __machine__addnew_vdso() argument
128 dso = dso__new(short_name); in __machine__addnew_vdso()
322 return !strcmp(dso->short_name, DSO__NAME_VDSO) || in dso__is_vdso()
323 !strcmp(dso->short_name, DSO__NAME_VDSO32) || in dso__is_vdso()
324 !strcmp(dso->short_name, DSO__NAME_VDSOX32); in dso__is_vdso()
Ddso.c868 const char *short_name, int dso_type) in machine__findnew_kernel() argument
880 dso__set_short_name(dso, short_name, false); in machine__findnew_kernel()
921 rc = strcmp(dso->short_name, this->short_name); in __dso__findlink_by_longname()
981 free((char *)dso->short_name); in dso__set_short_name()
983 dso->short_name = name; in dso__set_short_name()
1086 zfree((char **)&dso->short_name); in dso__delete()
1148 const char *name = dso->short_name + 1; in dso__kernel_module_get_build_id()
1223 if (strcmp(pos->short_name, name) == 0) in __dsos__find()
1306 size_t ret = fprintf(fp, "dso: %s (", dso->short_name); in dso__fprintf()
1308 if (dso->short_name != dso->long_name) in dso__fprintf()
Ddso.h165 const char *short_name; member
317 const char *short_name, int dso_type);
Dunwind-libdw.c41 mod = dwfl_report_elf(ui->dwfl, dso->short_name, in __report_module()
Dsrcline.c316 } else if (asprintf(&srcline, "%s[%" PRIx64 "]", dso->short_name, addr) < 0) in __get_srcline()
Devent.c1038 dso->short_name) || in perf_event__preprocess_sample()
1039 (dso->short_name != dso->long_name && in perf_event__preprocess_sample()
Dbuild-id.c219 name = pos->short_name; in machine__write_buildid_table()
Dsymbol.c734 if (strcmp(curr_map->dso->short_name, module)) { in dso__split_kallsyms()
1014 mi = find_module(old_map->dso->short_name, &modules); in do_validate_kcore_modules()
1562 if (map->dso && strcmp(map->dso->short_name, name) == 0) in map_groups__find_by_name()
Dsort.c139 dso_name_l = dso_l->short_name; in _sort__dso_cmp()
140 dso_name_r = dso_r->short_name; in _sort__dso_cmp()
156 const char *dso_name = !verbose ? map->dso->short_name : in _hist_entry__dso_snprintf()
Dcallchain.c796 cl->ms.map->dso->short_name : in callchain_list__sym_name()
Dsymbol-elf.c966 (curr_dso->short_name + in dso__load_sym()
1012 "%s%s", dso->short_name, section_name); in dso__load_sym()
Dmachine.c2035 *modp = __map__is_kmodule(map) ? (char *)map->dso->short_name : NULL; in machine__resolve_kernel_addr()
Dprobe-event.c176 if (strncmp(pos->dso->short_name + 1, module, in kernel_get_module_map()
/linux-4.4.14/drivers/firmware/efi/
Defivars.c545 char *short_name; in efivar_create_sysfs_entry() local
557 short_name = kmalloc(short_name_size, GFP_KERNEL); in efivar_create_sysfs_entry()
558 if (!short_name) in efivar_create_sysfs_entry()
561 ucs2_as_utf8(short_name, variable_name, short_name_size); in efivar_create_sysfs_entry()
565 short_name[utf8_name_size] = '-'; in efivar_create_sysfs_entry()
567 short_name + utf8_name_size + 1); in efivar_create_sysfs_entry()
572 NULL, "%s", short_name); in efivar_create_sysfs_entry()
573 kfree(short_name); in efivar_create_sysfs_entry()
/linux-4.4.14/tools/perf/
Dbuiltin-probe.c228 params.command = opt->short_name; in opt_show_lines()
248 params.command = opt->short_name; in opt_show_vars()
257 params.command = opt->short_name; in opt_add_probe_event()
268 params.command = opt->short_name; in opt_set_filter_with_command()
/linux-4.4.14/tools/perf/tests/
Dhists_common.c178 he->ms.map->dso->short_name, in print_hists_in()
205 he->ms.map->dso->short_name, in print_hists_out()
Dhists_cumulate.c154 #define DSO(he) (he->ms.map->dso->short_name)
159 #define CDSO(cl) (cl->ms.map->dso->short_name)
Dvmlinux-kallsyms.c198 map->dso->short_name : in test__vmlinux_matches_kallsyms()
Dhists_output.c120 #define DSO(he) (he->ms.map->dso->short_name)
/linux-4.4.14/tools/perf/scripts/python/
Dexport-to-postgresql.py677 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x): argument
678 n1 = len(short_name)
682 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
/linux-4.4.14/include/net/bluetooth/
Dmgmt.h115 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member
156 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member
606 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; member
Dhci_core.h210 __u8 short_name[HCI_MAX_SHORT_NAME_LENGTH]; member
/linux-4.4.14/include/linux/
Dfscache-cache.h327 char short_name[8]; member
/linux-4.4.14/fs/fscache/
Dobject-list.c242 obj->state->short_name, in fscache_objlist_show()
Dobject.c47 .short_name = sn, \
68 .short_name = sn, \
Dpage.c802 _op->flags, _op->state, object->state->short_name, in fscache_write_op()
/linux-4.4.14/drivers/net/ethernet/qlogic/netxen/
Dnetxen_nic.h1821 char short_name[NETXEN_MAX_SHORT_NAME]; member
1860 strcpy(name, netxen_boards[i].short_name); in netxen_nic_get_brd_name_by_type()
/linux-4.4.14/net/bluetooth/
Dmgmt.c1393 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name)); in read_controller_info()
3860 !memcmp(hdev->short_name, cp->short_name, in set_local_name()
3861 sizeof(hdev->short_name))) { in set_local_name()
3867 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name)); in set_local_name()
8364 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH); in mgmt_set_local_name_complete()
/linux-4.4.14/tools/perf/ui/browsers/
Dhists.c1328 ", DSO: %s", dso->short_name); in hists__browser_title()
1551 __map__is_kernel(map) ? "the Kernel" : map->dso->short_name); in do_zoom_dso()
1571 __map__is_kernel(map) ? "the Kernel" : map->dso->short_name) < 0) in add_dso_opt()
/linux-4.4.14/tools/perf/util/scripting-engines/
Dtrace-event-python.c620 tuple_set_string(t, 2, dso->short_name); in python_export_dso()
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic.h1725 char short_name[QLCNIC_MAX_BOARD_NAME_LEN]; member
Dqlcnic_main.c1241 qlcnic_boards[i].short_name); in qlcnic_get_board_name()