Home
last modified time | relevance | path

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

/linux-4.1.27/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), …
115 { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \
118 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va…
119 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)…
120 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), …
121 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), …
122 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),…
123 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .va…
[all …]
Dparse-options.c12 return error("switch `%c' %s", opt->short_name, reason); in opterror()
53 if (((flags & OPT_SHORT) && p->excl_opt->short_name) || in get_value()
56 p->excl_opt->short_name); in get_value()
228 if (options->short_name == *p->opt) { in parse_short_opt()
477 if ((excl_short_opt && ctx->excl_opt->short_name) || in parse_options_step()
479 char opt = ctx->excl_opt->short_name; in parse_options_step()
577 if (opts->short_name) in print_option_help()
578 pos += fprintf(stderr, "-%c", opts->short_name); in print_option_help()
582 if (opts->long_name && opts->short_name) in print_option_help()
701 if (opts->short_name == *optstr) in parse_options_usage()
[all …]
Dvdso.c123 static struct dso *vdso__new(struct machine *machine, const char *short_name, in vdso__new() argument
128 dso = dso__new(short_name); in vdso__new()
318 return !strcmp(dso->short_name, DSO__NAME_VDSO) || in dso__is_vdso()
319 !strcmp(dso->short_name, DSO__NAME_VDSO32) || in dso__is_vdso()
320 !strcmp(dso->short_name, DSO__NAME_VDSOX32); in dso__is_vdso()
Ddso.c755 const char *short_name, int dso_type) in dso__kernel_findnew() argument
767 dso__set_short_name(dso, short_name, false); in dso__kernel_findnew()
808 rc = strcmp(dso->short_name, this->short_name); in dso__findlink_by_longname()
852 free((char *)dso->short_name); in dso__set_short_name()
854 dso->short_name = name; in dso__set_short_name()
954 zfree((char **)&dso->short_name); in dso__delete()
1001 const char *name = dso->short_name + 1; in dso__kernel_module_get_build_id()
1049 if (strcmp(pos->short_name, name) == 0) in dsos__find()
1114 size_t ret = fprintf(fp, "dso: %s (", dso->short_name); in dso__fprintf()
1116 if (dso->short_name != dso->long_name) in dso__fprintf()
Ddso.h154 const char *short_name; member
289 const char *short_name, int dso_type);
Dunwind-libdw.c41 mod = dwfl_report_elf(ui->dwfl, dso->short_name, in __report_module()
Dsrcline.c299 } else if (asprintf(&srcline, "%s[%" PRIx64 "]", dso->short_name, addr) < 0) in get_srcline()
Devent.c920 dso->short_name) || in perf_event__preprocess_sample()
921 (dso->short_name != dso->long_name && in perf_event__preprocess_sample()
Dsymbol.c715 if (strcmp(curr_map->dso->short_name, module)) { in dso__split_kallsyms()
995 mi = find_module(old_map->dso->short_name, &modules); in do_validate_kcore_modules()
1513 if (map->dso && strcmp(map->dso->short_name, name) == 0) in map_groups__find_by_name()
Dbuild-id.c178 name = pos->short_name; in __dsos__write_buildid_table()
Dsort.c138 dso_name_l = dso_l->short_name; in _sort__dso_cmp()
139 dso_name_r = dso_r->short_name; in _sort__dso_cmp()
155 const char *dso_name = !verbose ? map->dso->short_name : in _hist_entry__dso_snprintf()
Dsymbol-elf.c946 (curr_dso->short_name + in dso__load_sym()
990 "%s%s", dso->short_name, section_name); in dso__load_sym()
Dcallchain.c847 cl->ms.map->dso->short_name : in callchain_list__sym_name()
Dprobe-event.c176 if (strncmp(pos->dso->short_name + 1, module, in kernel_get_module_map()
212 if (strncmp(dso->short_name + 1, module, in kernel_get_module_dso()
/linux-4.1.27/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.1.27/tools/perf/tests/
Dhists_common.c174 he->ms.map->dso->short_name, in print_hists_in()
201 he->ms.map->dso->short_name, in print_hists_out()
Dhists_cumulate.c150 #define DSO(he) (he->ms.map->dso->short_name)
155 #define CDSO(cl) (cl->ms.map->dso->short_name)
Dvmlinux-kallsyms.c197 pos->dso->short_name : in test__vmlinux_matches_kallsyms()
Dhists_output.c116 #define DSO(he) (he->ms.map->dso->short_name)
/linux-4.1.27/tools/perf/scripts/python/
Dexport-to-postgresql.py409 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x): argument
410 n1 = len(short_name)
414 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
/linux-4.1.27/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.h204 __u8 short_name[HCI_MAX_SHORT_NAME_LENGTH]; member
/linux-4.1.27/include/linux/
Dfscache-cache.h339 char short_name[8]; member
/linux-4.1.27/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.1.27/tools/perf/ui/browsers/
Dhists.c1290 ", DSO: %s", dso->short_name); in hists__browser_title()
1664 (dso->kernel ? "the Kernel" : dso->short_name)) > 0) in perf_evsel__hists_browse()
1760 dso->kernel ? "the Kernel" : dso->short_name); in perf_evsel__hists_browse()
/linux-4.1.27/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.1.27/net/bluetooth/
Dmgmt.c1373 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name)); in read_controller_info()
3737 !memcmp(hdev->short_name, cp->short_name, in set_local_name()
3738 sizeof(hdev->short_name))) { in set_local_name()
3744 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name)); in set_local_name()
8135 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH); in mgmt_set_local_name_complete()
/linux-4.1.27/tools/perf/util/scripting-engines/
Dtrace-event-python.c619 tuple_set_string(t, 2, dso->short_name); in python_export_dso()
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic.h1727 char short_name[QLCNIC_MAX_BOARD_NAME_LEN]; member
Dqlcnic_main.c1231 qlcnic_boards[i].short_name); in qlcnic_get_board_name()