| /tools/perf/trace/beauty/ |
| A D | prctl.c | 16 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_option() argument 21 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_set_mm() argument 29 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local 31 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2() 37 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2() 45 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local 47 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3() 55 unsigned long option = arg->val; in syscall_arg__scnprintf_prctl_option() local 78 if (option < ARRAY_SIZE(masks)) in syscall_arg__scnprintf_prctl_option() 79 arg->mask |= masks[option]; in syscall_arg__scnprintf_prctl_option() [all …]
|
| A D | arch_prctl.c | 25 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 27 …return strarrays__scnprintf(&strarrays__x86_arch_prctl_codes, bf, size, "%#x", show_prefix, option… in x86_arch_prctl__scnprintf_code()
|
| /tools/include/linux/ |
| A D | kconfig.h | 44 #define IS_BUILTIN(option) __is_defined(option) argument 50 #define IS_MODULE(option) __is_defined(option##_MODULE) argument 58 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument 59 __and(IS_MODULE(option), __is_defined(MODULE))) 65 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
|
| /tools/bpf/ |
| A 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/ |
| A D | intel-bts.txt | 17 recording must also be stipulated i.e. the --per-thread option for 28 option is: 36 snapshot option 39 The snapshot option is the same as Intel PT (refer Intel PT documentation). 42 auxtrace mmap size option 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 68 To disable the display of Intel BTS packets, combine the -D option with 76 This can be further controlled by new option --itrace exactly the same as [all …]
|
| A D | perf-config.txt | 11 'perf config' [<file-option>] [section.name[=value] ...] 13 'perf config' [<file-option>] -l | --list 279 If this option is 'true', they can be printed 301 This option works with tui, stdio2 browsers. 321 This option works with tui, stdio2 browsers. 342 This option works with tui browser. 363 This option works with tui, stdio2 browsers. 375 This option works with tui, stdio2 browsers. 412 This option works with tui, stdio2 browsers. 441 This option is only applied to TUI. [all …]
|
| /tools/testing/selftests/powerpc/dexcr/ |
| A D | chdexcr.c | 54 static int apply_option(const char *option) in apply_option() argument 63 if (!strcmp(option, "-h") || !strcmp(option, "--help")) { in apply_option() 69 if (!strncmp(option, clear_prefix, strlen(clear_prefix))) { in apply_option() 70 opt = &option[strlen(clear_prefix)]; in apply_option() 72 } else if (!strncmp(option, set_prefix, strlen(set_prefix))) { in apply_option() 73 opt = &option[strlen(set_prefix)]; in apply_option()
|
| /tools/testing/selftests/nolibc/ |
| A D | Makefile.include | 3 __CFLAGS_STACKPROTECTOR = $(call cc-option,-fstack-protector-all) $(call cc-option,-mstack-protecto… 7 _CFLAGS_SANITIZER ?= $(call cc-option,-fsanitize=undefined -fsanitize-trap=all) 9 $(call cc-option,-fno-stack-protector) $(call cc-option,-Wmissing-prototypes) \
|
| A D | Makefile | 8 cc-option = $(call __cc-option, $(CC),,$(1),$(2))
|
| /tools/include/nolibc/sys/ |
| A D | prctl.h | 23 int sys_prctl(int option, unsigned long arg2, unsigned long arg3, in sys_prctl() argument 26 return my_syscall5(__NR_prctl, option, arg2, arg3, arg4, arg5); in sys_prctl() 30 int prctl(int option, unsigned long arg2, unsigned long arg3, in prctl() argument 33 return __sysret(sys_prctl(option, arg2, arg3, arg4, arg5)); in prctl()
|
| /tools/perf/util/ |
| A 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);
|
| A D | pmu.l | 1 %option prefix="perf_pmu_" 2 %option reentrant 3 %option bison-bridge
|
| A D | clockid.h | 6 struct option; 7 int parse_clockid(const struct option *opt, const char *str, int unset);
|
| A D | pfm.h | 14 int parse_libpfm_events_option(const struct option *opt, const char *str, 23 const struct option *opt __maybe_unused, in parse_libpfm_events_option()
|
| A D | record.h | 12 struct option; 87 extern struct option *record_options; 89 int record__parse_freq(const struct option *opt, const char *str, int unset);
|
| A 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()
|
| /tools/virtio/ |
| A D | Makefile | 14 __cc-option = $(call try-run,\ 16 cc-option = $(call __cc-option, $(CC),$(1)) 18 …nclude/linux/kconfig.h $(call cc-option,-mfunction-return=thunk) $(call cc-option,-fcf-protection=…
|
| /tools/lib/subcmd/ |
| A D | parse-options.h | 51 struct option; 52 typedef int parse_opt_cb(const struct option *, const char *arg, int unset); 97 struct option { struct 111 const struct option *parent; argument 174 const struct option *options, 178 const struct option *options, 183 const struct option *options); 186 const struct option *options, 209 const struct option *excl_opt; 214 const struct option *opts, [all …]
|
| A D | parse-options.c | 70 const struct option *opt, int flags) in get_value() 511 const struct option *, int, 515 const struct option *options, in parse_options_step() 788 const struct option *a = va, *b = vb; in option__cmp() 807 static struct option *options__order(const struct option *opts) in options__order() 810 const struct option *o = NULL, *p = opts; in options__order() 811 struct option *opt, *ordered = NULL, *group; in options__order() 885 struct option *ordered; in usage_with_options_internal() 928 const struct option *opts) in usage_with_options() 952 const struct option *opts, in parse_options_usage() [all …]
|
| /tools/include/tools/ |
| A D | config.h | 32 #define IS_BUILTIN(option) __is_defined(option) argument
|
| /tools/perf/ui/ |
| A D | ui.h | 30 struct option; 32 int stdio__config_color(const struct option *opt, const char *mode, int unset);
|
| /tools/testing/selftests/bpf/ |
| A D | test_tcp_hdr_options.h | 25 #define TEST_OPTION_FLAGS(flags, option) (1 & ((flags) >> (option))) argument 26 #define SET_OPTION_FLAGS(flags, option) ((flags) |= (1 << (option))) argument
|
| /tools/tracing/rtla/tests/ |
| A D | engine.sh | 96 option=$(echo $1 | cut -d '=' -f 1) 98 echo "option: $option, value: $value" 99 echo "$value" > "/sys/kernel/tracing/osnoise/$option" || return 1
|
| A D | timerlat.t | 18 for option in $no_bpf_options 20 export RTLA_NO_BPF=$option
|
| /tools/thermal/tmon/ |
| A D | Makefile | 9 override CFLAGS+= $(call cc-option,-O3,-O1) ${WARNFLAGS} 11 override CFLAGS+= $(call cc-option,-fstack-protector-strong)
|