/tools/perf/trace/beauty/ |
D | prctl.c | 14 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_option() argument 17 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_option() 20 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_set_mm() argument 23 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_set_mm() 28 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local 30 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2() 36 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2() 44 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local 46 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3() 54 unsigned long option = arg->val; in syscall_arg__scnprintf_prctl_option() local [all …]
|
D | arch_prctl.c | 23 static size_t x86_arch_prctl__scnprintf_code(int option, char *bf, size_t size, bool show_prefix) in x86_arch_prctl__scnprintf_code() argument 25 …return strarrays__scnprintf(&strarrays__x86_arch_prctl_codes, bf, size, "%#x", show_prefix, option… in x86_arch_prctl__scnprintf_code()
|
/tools/bpf/ |
D | bpf_exp.l | 36 %option align 37 %option ecs 39 %option nounput 40 %option noreject 41 %option noinput 42 %option noyywrap 44 %option 8bit 45 %option caseless 46 %option yylineno
|
/tools/perf/Documentation/ |
D | intel-bts.txt | 17 recording must also be stipulated i.e. the --per-thread option for 28 option is: 32 Currently Intel BTS is limited to per-thread tracing so the --per-thread option 36 snapshot option 39 The snapshot option is the same as Intel PT (refer Intel PT documentation). 42 auxtrace mmap size option 45 The mmap size option is the same as Intel PT (refer Intel PT documentation). 52 This can be further controlled by option --itrace. The --itrace option is 57 To disable trace decoding entirely, use the option --no-itrace. 60 dump option [all …]
|
D | perf-config.txt | 11 'perf config' [<file-option>] [section.name[=value] ...] 13 'perf config' [<file-option>] -l | --list 213 Can be overridden by the --proc-map-timeout option on supported 248 this option lets 'annotate' print a list of assembly code with the source code. 250 If this option is 'true', they can be printed 258 But if this option is 'false', source code of the part 286 Default is true. This option is only applied to TUI. 310 When showing source code if this option is 'true', 319 However if this option is 'false', they aren't printed as below. 339 To compare two records on an instruction base, with this option [all …]
|
D | perf-help.txt | 19 If the option '--all' or '-a' is given, then all available commands are 34 option supersedes any other option.
|
D | perf-kmem.txt | 47 migtype, gfp' for page. This option should be preceded by one of the 65 default, but this option shows live (currently allocated) pages 66 instead. (This option works with --page option only)
|
D | perf-ftrace.txt | 41 normally don't - this option allows the latter to be run in 54 can be given by using this option more than once. The function 60 Do not trace functions given by the argument. Like -T option, 76 Like -G option, this is useful for the function_graph tracer only
|
/tools/perf/util/ |
D | parse-regs-options.h | 4 struct option; 5 int parse_user_regs(const struct option *opt, const char *str, int unset); 6 int parse_intr_regs(const struct option *opt, const char *str, int unset);
|
D | record.h | 12 struct option; 70 extern struct option *record_options; 72 int record__parse_freq(const struct option *opt, const char *str, int unset);
|
D | cgroup.h | 7 struct option; 27 int parse_cgroups(const struct option *opt, const char *str, int unset);
|
D | parse-regs-options.c | 13 __parse_regs(const struct option *opt, const char *str, int unset, bool intr) in __parse_regs() 86 parse_user_regs(const struct option *opt, const char *str, int unset) in parse_user_regs() 92 parse_intr_regs(const struct option *opt, const char *str, int unset) in parse_intr_regs()
|
D | metricgroup.h | 10 struct option; 30 int metricgroup__parse_groups(const struct option *opt,
|
D | parse-events.h | 19 struct option; 33 int parse_events_option(const struct option *opt, const char *str, int unset); 37 int parse_filter(const struct option *opt, const char *str, int unset); 38 int exclude_perf(const struct option *opt, const char *arg, int unset);
|
D | parse-branch-options.h | 5 int parse_branch_stack(const struct option *opt, const char *str, int unset);
|
/tools/lib/subcmd/ |
D | parse-options.h | 55 struct option; 56 typedef int parse_opt_cb(const struct option *, const char *arg, int unset); 101 struct option { struct 115 const struct option *parent; argument 175 const struct option *options, 179 const struct option *options, 184 const struct option *options); 187 const struct option *options, 210 const struct option *excl_opt; 215 const struct option *opts, [all …]
|
D | parse-options.c | 20 static int opterror(const struct option *opt, const char *reason, int flags) in opterror() 38 static void optwarning(const struct option *opt, const char *reason, int flags) in optwarning() 48 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, in get_arg() 70 const struct option *opt, int flags) in get_value() 342 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) in parse_short_opt() 361 const struct option *options) in parse_long_opt() 364 const struct option *abbrev_option = NULL, *ambiguous_option = NULL; in parse_long_opt() 473 static void check_typos(const char *arg, const struct option *options) in check_typos() 508 const struct option *, int, 512 const struct option *options, in parse_options_step() [all …]
|
/tools/lib/traceevent/ |
D | event-plugin.c | 31 char *option; member 154 update_option(const char *file, struct tep_plugin_option *option) in update_option() argument 160 if (option->plugin_alias) { in update_option() 161 plugin = strdup(option->plugin_alias); in update_option() 180 if (strcmp(op->option, option->name) != 0) in update_option() 183 ret = update_option_value(option, op->value); in update_option() 193 if (strcmp(op->option, option->name) != 0) in update_option() 196 ret = update_option_value(option, op->value); in update_option()
|
/tools/include/tools/ |
D | config.h | 32 #define IS_BUILTIN(option) __is_defined(option) argument
|
/tools/perf/ui/ |
D | ui.h | 30 struct option; 32 int stdio__config_color(const struct option *opt, const char *mode, int unset);
|
/tools/thermal/tmon/ |
D | Makefile | 9 override CFLAGS+= $(call cc-option,-O3,-O1) ${WARNFLAGS} 11 override CFLAGS+= $(call cc-option,-fstack-protector-strong)
|
/tools/testing/ktest/ |
D | ktest.pl | 1219 foreach my $option (keys %opt) { 1220 my $op = $option; 1234 foreach my $option (keys %not_used) { 1235 print "$option\n"; 1245 my ($name, $option, $i) = @_; 1248 $option = " $option"; 1263 while ($option =~ /(.*?[^\\])\$\{(.*?)\}(.*)/) { 1298 $option = $end; 1301 $retval = "$retval$option"; 1309 my ($name, $option, $i) = @_; [all …]
|
/tools/testing/selftests/kvm/ |
D | Makefile | 51 no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \ 55 pgste-option = $(call try-run, echo 'int main() { return 0; }' | \ 59 LDFLAGS += -pthread $(no-pie-option) $(pgste-option)
|
/tools/testing/selftests/mqueue/ |
D | mq_perf_tests.c | 541 char *option, *next_option; in main() local 570 option = cpu_option_string; in main() 572 next_option = strchr(option, ','); in main() 575 cpu = atoi(option); in main() 583 option = ++next_option; in main() 605 option = queue_path; in main() 606 if (*option != '/') { in main() 607 queue_path = malloc(strlen(option) + 2); in main() 614 strcat(queue_path, option); in main() 615 free(option); in main()
|
/tools/perf/ |
D | builtin-data.c | 25 static const struct option data_options[] = { 63 const struct option options[] = { in cmd_data_convert()
|