| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | builtin-inject.c | 38 struct perf_tool tool; member 61 static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool, 76 static int perf_event__repipe_synth(struct perf_tool *tool, in perf_event__repipe_synth() argument 79 struct perf_inject *inject = container_of(tool, struct perf_inject, in perf_event__repipe_synth() 80 tool); in perf_event__repipe_synth() 85 static int perf_event__repipe_oe_synth(struct perf_tool *tool, in perf_event__repipe_oe_synth() argument 89 return perf_event__repipe_synth(tool, event); in perf_event__repipe_oe_synth() 93 static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused, in perf_event__drop_oe() 104 return perf_event__repipe_synth(session->tool, event); in perf_event__repipe_op2_synth() 111 return perf_event__repipe_synth(session->tool, event); in perf_event__repipe_op4_synth() [all …]
|
| H A D | builtin-script.c | 121 struct perf_tool tool; member 2103 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 2109 struct perf_script *scr = container_of(tool, struct perf_script, tool); in process_sample_event() 2150 static int process_attr(struct perf_tool *tool, union perf_event *event, in process_attr() argument 2153 struct perf_script *scr = container_of(tool, struct perf_script, tool); in process_attr() 2160 err = perf_event__process_attr(tool, event, pevlist); in process_attr() 2219 static int print_event_with_time(struct perf_tool *tool, in print_event_with_time() argument 2225 struct perf_script *script = container_of(tool, struct perf_script, tool); in print_event_with_time() 2255 static int print_event(struct perf_tool *tool, union perf_event *event, in print_event() argument 2259 return print_event_with_time(tool, event, sample, machine, pid, tid, 0); in print_event() [all …]
|
| H A D | builtin-record.c | 89 struct perf_tool tool; member 509 static int process_synthesized_event(struct perf_tool *tool, in process_synthesized_event() argument 514 struct record *rec = container_of(tool, struct record, tool); in process_synthesized_event() 518 static int process_locked_synthesized_event(struct perf_tool *tool, in process_locked_synthesized_event() argument 527 ret = process_synthesized_event(tool, event, sample, machine); in process_locked_synthesized_event() 593 static int record__process_auxtrace(struct perf_tool *tool, in record__process_auxtrace() argument 598 struct record *rec = container_of(tool, struct record, tool); in record__process_auxtrace() 636 ret = auxtrace_mmap__read(map, rec->itr, &rec->tool, in record__auxtrace_mmap_read() 652 ret = auxtrace_mmap__read_snapshot(map, rec->itr, &rec->tool, in record__auxtrace_mmap_read_snapshot() 967 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument [all …]
|
| H A D | builtin-report.c | 71 struct perf_tool tool; member 220 struct report *rep = container_of(session->tool, struct report, tool); in process_feature_event() 240 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 246 struct report *rep = container_of(tool, struct report, tool); in process_sample_event() 314 static int process_read_event(struct perf_tool *tool, in process_read_event() argument 320 struct report *rep = container_of(tool, struct report, tool); in process_read_event() 732 memset(&rep->tool, 0, sizeof(rep->tool)); in stats_setup() 733 rep->tool.no_warn = true; in stats_setup() 746 memset(&rep->tool, 0, sizeof(rep->tool)); in tasks_setup() 747 rep->tool.ordered_events = true; in tasks_setup() [all …]
|
| /OK3568_Linux_fs/buildroot/package/linux-tools/ |
| H A D | linux-tools.mk | 29 LINUX_TOOLS_DEPENDENCIES += $(foreach tool,$(LINUX_TOOLS),\ 30 $(if $(BR2_PACKAGE_LINUX_TOOLS_$(call UPPERCASE,$(tool))),\ 31 $($(call UPPERCASE,$(tool))_DEPENDENCIES))) 33 LINUX_TOOLS_POST_BUILD_HOOKS += $(foreach tool,$(LINUX_TOOLS),\ 34 $(if $(BR2_PACKAGE_LINUX_TOOLS_$(call UPPERCASE,$(tool))),\ 35 $(call UPPERCASE,$(tool))_BUILD_CMDS)) 37 LINUX_TOOLS_POST_INSTALL_STAGING_HOOKS += $(foreach tool,$(LINUX_TOOLS),\ 38 $(if $(BR2_PACKAGE_LINUX_TOOLS_$(call UPPERCASE,$(tool))),\ 39 $(call UPPERCASE,$(tool))_INSTALL_STAGING_CMDS)) 41 LINUX_TOOLS_POST_INSTALL_TARGET_HOOKS += $(foreach tool,$(LINUX_TOOLS),\ [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | synthetic-events.h | 29 typedef int (*perf_event__handler_t)(struct perf_tool *tool, union perf_event *event, 32 int perf_event__synthesize_attrs(struct perf_tool *tool, struct evlist *evlist, perf_event__handler… 33 int perf_event__synthesize_attr(struct perf_tool *tool, struct perf_event_attr *attr, u32 ids, u64 … 34 int perf_event__synthesize_build_id(struct perf_tool *tool, struct dso *pos, u16 misc, perf_event__… 35 int perf_event__synthesize_cpu_map(struct perf_tool *tool, struct perf_cpu_map *cpus, perf_event__h… 36 int perf_event__synthesize_event_update_cpus(struct perf_tool *tool, struct evsel *evsel, perf_even… 37 int perf_event__synthesize_event_update_name(struct perf_tool *tool, struct evsel *evsel, perf_even… 38 int perf_event__synthesize_event_update_scale(struct perf_tool *tool, struct evsel *evsel, perf_eve… 39 int perf_event__synthesize_event_update_unit(struct perf_tool *tool, struct evsel *evsel, perf_even… 40 int perf_event__synthesize_extra_attr(struct perf_tool *tool, struct evlist *evsel_list, perf_event… [all …]
|
| H A D | session.c | 100 struct perf_tool *tool, 183 session->tool, event->file_offset); in ordered_events__deliver_event() 187 bool repipe, struct perf_tool *tool) in perf_session__new() argument 196 session->tool = tool; in perf_session__new() 257 if ((!data || !data->is_pipe) && tool && tool->ordering_requires_timestamps && in perf_session__new() 258 tool->ordered_events && !evlist__sample_id_all(session->evlist)) { in perf_session__new() 260 tool->ordered_events = false; in perf_session__new() 316 static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused, in process_event_synth_attr_stub() 325 static int process_event_synth_event_update_stub(struct perf_tool *tool __maybe_unused, in process_event_synth_event_update_stub() 337 static int process_event_sample_stub(struct perf_tool *tool __maybe_unused, in process_event_sample_stub() [all …]
|
| H A D | synthetic-events.c | 50 int perf_tool__process_synth_event(struct perf_tool *tool, in perf_tool__process_synth_event() argument 65 return process(tool, event, &synth_sample, machine); in perf_tool__process_synth_event() 176 pid_t perf_event__synthesize_comm(struct perf_tool *tool, in perf_event__synthesize_comm() argument 186 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_comm() 205 int perf_event__synthesize_namespaces(struct perf_tool *tool, in perf_event__synthesize_namespaces() argument 214 if (!tool || !tool->namespace_events) in perf_event__synthesize_namespaces() 238 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_namespaces() 244 static int perf_event__synthesize_fork(struct perf_tool *tool, in perf_event__synthesize_fork() argument 271 if (perf_tool__process_synth_event(tool, event, machine, process) != 0) in perf_event__synthesize_fork() 350 int perf_event__synthesize_mmap_events(struct perf_tool *tool, in perf_event__synthesize_mmap_events() argument [all …]
|
| H A D | event.h | 298 int perf_event__process_comm(struct perf_tool *tool, 302 int perf_event__process_lost(struct perf_tool *tool, 306 int perf_event__process_lost_samples(struct perf_tool *tool, 310 int perf_event__process_aux(struct perf_tool *tool, 314 int perf_event__process_itrace_start(struct perf_tool *tool, 318 int perf_event__process_switch(struct perf_tool *tool, 322 int perf_event__process_namespaces(struct perf_tool *tool, 326 int perf_event__process_cgroup(struct perf_tool *tool, 330 int perf_event__process_mmap(struct perf_tool *tool, 334 int perf_event__process_mmap2(struct perf_tool *tool, [all …]
|
| /OK3568_Linux_fs/buildroot/package/valgrind/ |
| H A D | Config.in | 29 This option allows to install the Memcheck tool 35 This option allows to install the Cachegrind tool 41 This option allows to install the Callgrind tool 47 This option allows to install the Helgrind tool 53 This option allows to install the DRD tool 59 This option allows to install the Massif tool 62 bool "DHAT: a dynamic heap analysis tool" 65 This option allows to install the DHAT tool 70 This option allows to install the SGCheck tool 73 bool "BBV: an experimental basic block vector generation tool" [all …]
|
| /OK3568_Linux_fs/buildroot/package/meson/ |
| H A D | 0002-mesonbuild-dependencies-base.py-add-pkg_config_stati.patch | 11 …tool.c.o' 'gio/6ae6c9e@@gio@exe/gio-tool-cat.c.o' 'gio/6ae6c9e@@gio@exe/gio-tool-copy.c.o' 'gio/6a…
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/ |
| H A D | event_update.c | 15 static int process_event_unit(struct perf_tool *tool __maybe_unused, in process_event_unit() 28 static int process_event_scale(struct perf_tool *tool __maybe_unused, in process_event_scale() 45 struct perf_tool tool; member 49 static int process_event_name(struct perf_tool *tool, in process_event_name() argument 54 struct event_name *tmp = container_of(tool, struct event_name, tool); in process_event_name() 63 static int process_event_cpus(struct perf_tool *tool __maybe_unused, in process_event_cpus() 115 !perf_event__synthesize_event_update_name(&tmp.tool, evsel, process_event_name)); in test__event_update() 120 !perf_event__synthesize_event_update_cpus(&tmp.tool, evsel, process_event_cpus)); in test__event_update()
|
| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/ |
| H A D | 0018-clang-Use-python3-in-python-scripts.patch | 12 .../find-all-symbols/tool/run-find-all-symbols.py | 2 +- 15 clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py | 2 +- 16 clang-tools-extra/clang-tidy/tool/run-clang-tidy.py | 2 +- 21 …include-fixer/find-all-symbols/tool/run-find-all-symbols.py b/clang-tools-extra/clang-include-fixe… 23 --- a/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py 24 +++ b/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py 51 diff --git a/clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py b/clang-tools-extra/clang-tidy/to… 53 --- a/clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py 54 +++ b/clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py 61 diff --git a/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py b/clang-tools-extra/clang-tidy/too… [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/net-tools/ |
| H A D | net-tools_2.10.bb | 84 base_sbindir_progs = "ipmaddr iptunnel mii-tool nameif \ 107 NETTOOLS_PACKAGES = "${PN}-mii-tool" 113 FILES:${PN}-mii-tool = "${base_sbindir}/mii-tool" 115 ALTERNATIVE:${PN}:remove = "mii-tool" 117 ALTERNATIVE:${PN}-mii-tool = "mii-tool" 118 ALTERNATIVE_TARGET[mii-tool] = "${base_sbindir}/mii-tool" 119 ALTERNATIVE_LINK_NAME[mii-tool] = "${base_sbindir}/mii-tool"
|
| /OK3568_Linux_fs/buildroot/package/iucode-tool/ |
| H A D | iucode-tool.mk | 9 IUCODE_TOOL_SITE = https://gitlab.com/iucode-tool/releases/raw/master 16 $(INSTALL) -D -m 0755 package/iucode-tool/S00iucode-tool \ 17 $(TARGET_DIR)/etc/init.d/S00iucode-tool 21 $(INSTALL) -D -m 644 package/iucode-tool/iucode.service \
|
| /OK3568_Linux_fs/buildroot/docs/manual/ |
| H A D | adding-packages-linux-kernel-spec-infra.txt | 19 Let's look at an example of a Linux tool. For a new Linux tool named 22 descriptions related to each kernel tool that will be used and 23 displayed in the configuration tool. It would basically look like: 30 05: This is a comment that explains what foo kernel tool is. 36 followed by the uppercase name of the tool (like is done for packages). 43 Then for each linux tool, add a new +.mk.in+ file named 44 +package/linux-tools/linux-tool-foo.mk.in+. It would basically look like: 74 On line 7, we register the Linux tool +foo+ to the list of available 77 On line 9, we specify the list of dependencies this tool relies on. These 79 +foo+ tool is selected. [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-gnome/gobject-introspection/gobject-introspection/ |
| H A D | 0001-g-ir-tool-template.in-fix-girdir-path.patch | 4 Subject: [PATCH] g-ir-tool-template.in: fix girdir path 15 tools/g-ir-tool-template.in | 2 +- 18 diff --git a/tools/g-ir-tool-template.in b/tools/g-ir-tool-template.in 20 --- a/tools/g-ir-tool-template.in 21 +++ b/tools/g-ir-tool-template.in
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-xfce/recipes-xfce/xfce4-panel/files/ |
| H A D | 0002-use-lxdm-to-replace-dm-tool.patch | 4 Subject: [PATCH] use lxdm to replace dm-tool 7 so use lxdm to replace dm-tool 24 - path = g_find_program_in_path ("dm-tool"); 30 - /* check for gdmflexiserver if dm-tool is not present */ 39 - path = g_find_program_in_path ("dm-tool"); 42 - succeed = g_spawn_command_line_async ("dm-tool switch-to-greeter", &error);
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.menu | 97 char *tool = NULL; 109 if (menu_get_choice(m, (void **)&tool) != 1) 110 printf("Problem picking tool!\n"); 114 return tool; 119 char *tool = pick_a_tool(); 121 if (tool) { 122 printf("picked a tool: %s\n", tool); 123 use_tool(tool);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-wheel/ |
| H A D | 0001-Backport-pyproject.toml-from-flit-backend-branch.patch | 69 +[tool.flit.sdist] 78 +[tool.black] 84 +[tool.isort] 89 +[tool.flake8] 92 +[tool.pytest.ini_options] 95 +[tool.coverage.run] 99 +[tool.coverage.report]
|
| /OK3568_Linux_fs/buildroot/package/checksec/ |
| H A D | Config.in.host | 4 This tool provides a shell script to check the 10 NOTE: when using this tool as a host tool, the tool 13 are other features of this tool, like the kernel test
|
| /OK3568_Linux_fs/kernel/drivers/input/tablet/ |
| H A D | wacom_serial4.c | 173 unsigned int tool; member 312 unsigned int tool; in wacom_handle_packet() local 333 tool = (button & wacom->eraser_mask) ? ERASER : STYLUS; in wacom_handle_packet() 335 tool = CURSOR; in wacom_handle_packet() 337 if (tool != wacom->tool && wacom->tool != 0) { in wacom_handle_packet() 338 input_report_key(wacom->dev, tools[wacom->tool].input_id, 0); in wacom_handle_packet() 341 wacom->tool = tool; in wacom_handle_packet() 343 input_report_key(wacom->dev, tools[tool].input_id, in_proximity_p); in wacom_handle_packet() 345 in_proximity_p ? tools[tool].device_id : 0); in wacom_handle_packet() 532 wacom->tool = wacom->idx = 0; in wacom_connect()
|
| /OK3568_Linux_fs/buildroot/package/uboot-tools/ |
| H A D | Config.in | 54 Install the fit_check_sign tool on the target system 56 The fit_check_sign tool from Das U-Boot bootloader, which 64 Install the mkimage tool on the target system 66 The mkimage tool from Das U-Boot bootloader, which allows 72 Install the mkenvimage tool on the target system 74 The mkenvimage tool from Das U-Boot bootloader, which allows 91 Install the dumpimage tool on the target system 93 The dumpimage tool from Das U-Boot bootloader, which allows
|
| /OK3568_Linux_fs/buildroot/package/cc-tool/ |
| H A D | Config.in | 2 bool "cc-tool" 15 cc-tool provides support for Texas Instruments CC Debugger 19 https://github.com/dashesy/cc-tool/ 21 comment "cc-tool needs a toolchain w/ C++, threads, wchar, gcc >= 4.9 "
|
| /OK3568_Linux_fs/u-boot/cmd/ddr_tool/ |
| H A D | Kconfig | 6 This enable ddr tool such as ddr dq eye, ddr test tool, memtester and stressapptest. 15 bool "Enable ddr test tool" 18 This enable ddr test tool code.
|