| /tools/testing/selftests/bpf/progs/ |
| A D | test_assign_reuse.c | 22 } headers; variable 39 if (ctx->data + sizeof(headers.tcp) > ctx->data_end) in reuse_accept() 42 if (__builtin_memcmp(&headers.tcp, ctx->data, sizeof(headers.tcp)) != 0) in reuse_accept() 45 if (ctx->data + sizeof(headers.udp) > ctx->data_end) in reuse_accept() 48 if (__builtin_memcmp(&headers.udp, ctx->data, sizeof(headers.udp)) != 0) in reuse_accept() 89 __builtin_memcpy(&headers.tcp, th, sizeof(headers.tcp)); in maybe_assign_tcp() 102 __builtin_memcpy(&headers.udp, uh, sizeof(headers.udp)); in maybe_assign_udp()
|
| /tools/include/uapi/ |
| A D | README | 1 Why we want a copy of kernel headers in tools? 4 There used to be no copies, with tools/ code using kernel headers 9 The way these headers are used in perf are not restricted to just 36 The tools/perf/check-headers.sh script, part of the tools/ build 40 the original kernel headers, that will be done later, when 41 check-headers.sh inform about the change to the perf tools hackers. 48 headers and broke them accidentally for kernel builds. 50 - Duplicate self-defined ABI headers like glibc: double the maintenance 56 - A software-enforced copy-on-write mechanism of kernel headers to 58 kernel headers get modified: [all …]
|
| /tools/perf/scripts/python/ |
| A D | sched-migration.py | 338 on_cpu_task = self.current_tsk[headers.cpu] 342 headers.ts_format(), headers.cpu, prev_comm, prev_pid, next_comm, next_pid) 346 self.current_tsk[headers.cpu] = next_pid 348 ts = self.timeslices.get_time_slice(headers.ts()) 351 def migrate(self, headers, pid, prio, orig_cpu, dest_cpu): argument 352 ts = self.timeslices.get_time_slice(headers.ts()) 358 ts = self.timeslices.get_time_slice(headers.ts()) 416 headers = EventHeaders(common_cpu, common_secs, common_nsecs, 418 parser.migrate(headers, pid, prio, orig_cpu, dest_cpu) 436 parser.wake_up(headers, comm, pid, success, target_cpu, 1) [all …]
|
| A D | exported-sql-viewer.py | 764 …headers = ["Call Path", "Object", "Count ", "Time (ns) ", "Time (%) ", "Insn Cnt", "Insn Cnt (%)",… 766 …headers = ["Call Path", "Object", "Count ", "Time (ns) ", "Time (%) ", "Branch Count ", "Branch Co… 767 return headers[column] 960 …headers = ["Call Path", "Object", "Call Time", "Time (ns) ", "Time (%) ", "Insn Cnt", "Insn Cnt (%… 962 …headers = ["Call Path", "Object", "Call Time", "Time (ns) ", "Time (%) ", "Branch Count ", "Branch… 963 return headers[column]
|
| /tools/include/nolibc/ |
| A D | Makefile | 74 all: headers 93 headers: target 106 headers_standalone: headers 107 $(Q)$(MAKE) -C $(srctree) headers
|
| /tools/net/ynl/generated/ |
| A D | Makefile | 67 install-headers: $(HDRS) 84 install: install-headers install-rsts install-specs 86 .PHONY: all clean distclean regen install install-headers install-rsts install-specs
|
| /tools/perf/scripts/python/Perf-Trace-Util/ |
| A D | Build | 3 # -Wno-declaration-after-statement: The python headers have mixed code with declarations (decls aft…
|
| /tools/testing/selftests/nolibc/ |
| A D | Makefile | 20 $(OUTPUT)/nolibc-test: nolibc-test.c nolibc-test-linkage.c | headers
|
| /tools/testing/selftests/ |
| A D | lib.mk | 231 headers: 232 $(Q)$(MAKE) -C $(top_srcdir) headers 234 .PHONY: run_tests all clean install emit_tests gen_mods_dir clean_mods_dir headers
|
| /tools/perf/util/scripting-engines/ |
| A D | Build | 8 # -Wno-declaration-after-statement: The python headers have mixed code with declarations (decls aft…
|
| /tools/perf/ |
| A D | MANIFEST | 31 scripts/Makefile.asm-headers
|
| A D | Makefile.config | 682 …$(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is d…
|
| A D | Makefile.perf | 288 @./check-headers.sh
|
| /tools/testing/selftests/vDSO/ |
| A D | Makefile | 34 $(OUTPUT)/vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c | headers
|
| /tools/thermal/lib/ |
| A D | Makefile | 130 $(call QUIET_INSTALL, headers) \
|
| /tools/lib/thermal/ |
| A D | Makefile | 140 $(call QUIET_INSTALL, headers) \
|
| /tools/testing/selftests/hid/ |
| A D | vmtest.sh | 83 ${make_command} headers
|
| /tools/scripts/ |
| A D | Makefile.include | 31 EXTRA_WARNINGS += -Wno-system-headers
|
| /tools/perf/Documentation/ |
| A D | perf-config.txt | 65 respectively). Section headers can't span multiple lines. 110 show-headers = true 135 % perf config ui.show-headers=false kmem.default=slab 205 Colors for headers in the output of a sub-commands (top, report). 438 ui.show-headers:: 439 This option controls display of column headers (like 'Overhead' and 'Symbol')
|
| A D | perf.data-file-format.txt | 51 Some headers consist of strings, which are defined like this: 58 Some headers consist of a sequence of strings, which start with a
|
| /tools/lib/perf/ |
| A D | Makefile | 109 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-headers obj=$(uapi-asm) \
|
| /tools/perf/ui/browsers/ |
| A D | hists.c | 1806 char headers[1024]; in hists_browser__hierarchy_headers() local 1810 hists_browser__scnprintf_hierarchy_headers(browser, headers, in hists_browser__hierarchy_headers() 1811 sizeof(headers), line); in hists_browser__hierarchy_headers() 1815 ui_browser__write_nstring(&browser->b, headers, browser->b.width + 1); in hists_browser__hierarchy_headers() 1827 char headers[1024]; in hists_browser__headers() local 1829 hists_browser__scnprintf_headers(browser, headers, in hists_browser__headers() 1830 sizeof(headers), line); in hists_browser__headers() 1834 ui_browser__write_nstring(&browser->b, headers, browser->b.width + 1); in hists_browser__headers()
|
| /tools/net/ynl/pyynl/ |
| A D | ynl_gen_c.py | 3432 headers = ['uapi/' + parsed.uapi_header] 3433 headers += parsed.kernel_family.get('headers', []) 3444 headers = [] 3447 headers.append(definition['header']) 3449 headers.append(parsed.uapi_header) 3451 for one in headers:
|
| /tools/memory-model/Documentation/ |
| A D | ordering.txt | 120 sections, as documented in their comment headers. But of course if you 402 information, please see the docbook headers in that file, the most
|