Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 39) sorted by relevance

12

/tools/perf/
DMANIFEST6 tools/lib/symbol/kallsyms.h
7 tools/include/asm/bug.h
8 tools/include/linux/compiler.h
9 tools/include/linux/hash.h
10 tools/include/linux/export.h
11 tools/include/linux/types.h
12 include/linux/const.h
13 include/linux/perf_event.h
14 include/linux/rbtree.h
15 include/linux/list.h
[all …]
DMakefile.perf196 …$(QUIET_FLEX)$(FLEX) -o $@ --header-file=$(OUTPUT)util/parse-events-flex.h $(PARSER_DEBUG_FLEX) ut…
202 $(QUIET_FLEX)$(FLEX) -o $@ --header-file=$(OUTPUT)util/pmu-flex.h util/pmu.l
212 LIB_H += ../lib/symbol/kallsyms.h
213 LIB_H += ../../include/uapi/linux/perf_event.h
214 LIB_H += ../../include/linux/rbtree.h
215 LIB_H += ../../include/linux/list.h
216 LIB_H += ../../include/uapi/linux/const.h
217 LIB_H += ../include/linux/hash.h
218 LIB_H += ../../include/linux/stringify.h
219 LIB_H += util/include/linux/bitmap.h
[all …]
D.gitignore13 common-cmds.h
/tools/perf/util/
Dparse-options.h107 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
108 #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } argument
109 …ne OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value =… argument
110 …PT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value =… argument
111 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
113 .value = check_vtype(v, bool *), .help = (h), \
115 …e OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value =… argument
116 …_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = che… argument
117 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
118 …PT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value =… argument
[all …]
Dhist.c55 void hists__calc_col_len(struct hists *hists, struct hist_entry *h) in hists__calc_col_len() argument
66 if (h->ms.sym) { in hists__calc_col_len()
67 symlen = h->ms.sym->namelen + 4; in hists__calc_col_len()
77 len = thread__comm_len(h->thread); in hists__calc_col_len()
81 if (h->ms.map) { in hists__calc_col_len()
82 len = dso__name_len(h->ms.map->dso); in hists__calc_col_len()
86 if (h->parent) in hists__calc_col_len()
87 hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen); in hists__calc_col_len()
89 if (h->branch_info) { in hists__calc_col_len()
90 if (h->branch_info->from.sym) { in hists__calc_col_len()
[all …]
Dannotate.c477 struct sym_hist *h; in __symbol__inc_addr_samples() local
485 h = annotation__histogram(notes, evidx); in __symbol__inc_addr_samples()
486 h->sum++; in __symbol__inc_addr_samples()
487 h->addr[offset]++; in __symbol__inc_addr_samples()
491 addr, addr - sym->start, evidx, h->addr[offset]); in __symbol__inc_addr_samples()
654 struct sym_hist *h = annotation__histogram(notes, evidx); in disasm__calc_percent() local
658 hits += h->addr[offset++]; in disasm__calc_percent()
660 if (h->sum) in disasm__calc_percent()
661 percent = 100.0 * hits / h->sum; in disasm__calc_percent()
1131 struct sym_hist *h = annotation__histogram(notes, evidx); in symbol__get_source_line() local
[all …]
Dheader.c508 static int write_tracing_data(int fd, struct perf_header *h __maybe_unused, in write_tracing_data()
515 static int write_build_id(int fd, struct perf_header *h, in write_build_id() argument
521 session = container_of(h, struct perf_session, header); in write_build_id()
526 err = dsos__write_buildid_table(h, fd); in write_build_id()
537 static int write_hostname(int fd, struct perf_header *h __maybe_unused, in write_hostname()
550 static int write_osrelease(int fd, struct perf_header *h __maybe_unused, in write_osrelease()
563 static int write_arch(int fd, struct perf_header *h __maybe_unused, in write_arch()
576 static int write_version(int fd, struct perf_header *h __maybe_unused, in write_version()
637 static int write_cpudesc(int fd, struct perf_header *h __maybe_unused, in write_cpudesc()
656 static int write_nrcpus(int fd, struct perf_header *h __maybe_unused, in write_nrcpus()
[all …]
/tools/usb/usbip/libsrc/
DMakefile.am6 libusbip_la_SOURCES := names.c names.h usbip_host_driver.c usbip_host_driver.h \
7 usbip_common.c usbip_common.h vhci_driver.c vhci_driver.h \
8 sysfs_utils.c sysfs_utils.h
Dnames.c209 unsigned int h = hashnum(vendorid); in new_vendor() local
211 v = vendors[h]; in new_vendor()
220 v->next = vendors[h]; in new_vendor()
221 vendors[h] = v; in new_vendor()
229 unsigned int h = hashnum((vendorid << 16) | productid); in new_product() local
231 p = products[h]; in new_product()
241 p->next = products[h]; in new_product()
242 products[h] = p; in new_product()
249 unsigned int h = hashnum(classid); in new_class() local
251 c = classes[h]; in new_class()
[all …]
/tools/usb/usbip/
Dconfigure.ac13 AC_CONFIG_HEADERS([config.h])
31 AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdint.h stdlib.h dnl
32 string.h sys/socket.h syslog.h unistd.h])
47 AC_CHECK_HEADER([libudev.h],
51 [AC_MSG_ERROR([Missing /usr/include/libudev.h])])
DMakefile.am4 usbip_common.h vhci_driver.h usbip_host_driver.h)
D.gitignore6 config.h
7 config.h.in
/tools/usb/usbip/src/
DMakefile.am7 usbip_SOURCES := usbip.h utils.h usbip.c utils.c usbip_network.c \
11 usbipd_SOURCES := usbip_network.h usbipd.c usbip_network.c
/tools/lib/api/
DMakefile11 LIB_H += fs/debugfs.h
12 LIB_H += fs/fs.h
14 LIB_H += fd/array.h
/tools/perf/ui/gtk/
Dhists.c233 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in perf_gtk__show_hists() local
235 u64 total = hists__total_period(h->hists); in perf_gtk__show_hists()
238 if (h->filtered) in perf_gtk__show_hists()
241 percent = hist_entry__get_percent_limit(h); in perf_gtk__show_hists()
254 fmt->color(fmt, &hpp, h); in perf_gtk__show_hists()
256 fmt->entry(fmt, &hpp, h); in perf_gtk__show_hists()
264 h->stat_acc->period : h->stat.period; in perf_gtk__show_hists()
266 perf_gtk__add_callchain(&h->sorted_chain, store, &iter, in perf_gtk__show_hists()
/tools/perf/ui/browsers/
Dhists.c429 struct hist_entry *h = rb_entry(browser->b.top, in hist_browser__run() local
438 h->row_offset, h->nr_rows); in hist_browser__run()
894 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hist_browser__refresh() local
897 if (h->filtered) in hist_browser__refresh()
900 percent = hist_entry__get_percent_limit(h); in hist_browser__refresh()
904 row += hist_browser__show_entry(hb, h, row); in hist_browser__refresh()
916 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__filter_entries() local
917 float percent = hist_entry__get_percent_limit(h); in hists__filter_entries()
919 if (!h->filtered && percent >= min_pcnt) in hists__filter_entries()
932 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__filter_prev_entries() local
[all …]
/tools/lib/traceevent/
DMakefile223 define make_version.h
233 define update_version.h
234 ($(call make_version.h, $@.tmp); \
243 ep_version.h: force
244 $(Q)$(N)$(call update_version.h)
246 VERSION_FILES = ep_version.h
/tools/perf/ui/stdio/
Dhist.c467 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__fprintf() local
470 if (h->filtered) in hists__fprintf()
473 percent = hist_entry__get_percent_limit(h); in hists__fprintf()
477 ret += hist_entry__fprintf(h, max_cols, hists, line, linesz, fp); in hists__fprintf()
482 if (h->ms.map == NULL && verbose > 1) { in hists__fprintf()
483 __map_groups__fprintf_maps(h->thread->mg, in hists__fprintf()
/tools/power/cpupower/
DREADME7 For compilation pciutils-devel (pci/pci.h) and a gcc version
8 providing cpuid.h is needed.
/tools/thermal/tmon/
DREADME39 $ sudo ./tmon -h
44 -h, --help show this help message
/tools/perf/arch/x86/
DMakefile17 LIB_H += arch/$(ARCH)/util/tsc.h
/tools/perf/config/
DMakefile334 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
345 …msg := $(warning No libdw.h found or old libdw.h found or elfutils is older than 0.138, disables d…
434 …msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or li…
532 $(call disable-python,Python.h (for Python 2.x))
592 …msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demang…
613 …msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl…
/tools/perf/ui/
Dbrowser.c283 int height = browser->height, h = 0, pct = 0, in ui_browser__scrollbar_set() local
294 while (h < height) { in ui_browser__scrollbar_set()
296 SLsmg_write_char(h == pct ? SLSMG_DIAMOND_CHAR : SLSMG_CKBRD_CHAR); in ui_browser__scrollbar_set()
297 ++h; in ui_browser__scrollbar_set()
/tools/testing/fault-injection/
Dfailcmd.sh96 TEMP=`getopt -o p:i:t:s:v:h --long $LONGOPTS -n 'failcmd.sh' -- "$@"`
/tools/power/cpupower/po/
Dde.po75 "cpupower monitor: [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i "
82 "cpupower monitor: [-v] [-h] [ [-t] | [-l] | [-m <mon1>,[<mon2>] ] ] [-i "
93 msgid "\t -h: print this help\n"
493 msgid " -h, --help Prints out this screen\n"
494 msgstr " -h, --help Gibt diese Kurz�bersicht aus\n"
594 msgid " -h, --help Prints out this screen\n"
595 msgstr " -h, --help Gibt diese Kurz�bersicht aus\n"

12