Searched refs:option (Results 1 - 25 of 610) sorted by relevance

1234567891011>>

/linux-master/tools/perf/util/
H A Dparse-regs-options.h4 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);
H A Dclockid.h6 struct option;
7 int parse_clockid(const struct option *opt, const char *str, int unset);
H A Dparse-branch-options.h5 int parse_branch_stack(const struct option *opt, const char *str, int unset);
H A Dpfm.h14 int parse_libpfm_events_option(const struct option *opt, const char *str,
23 const struct option *opt __maybe_unused,
H A Dpmu.l1 %option prefix="perf_pmu_"
2 %option reentrant
3 %option bison-bridge
/linux-master/arch/x86/include/asm/
H A Dcmdline.h5 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
6 int cmdline_find_option(const char *cmdline_ptr, const char *option,
H A Dproto.h18 long do_arch_prctl_64(struct task_struct *task, int option, unsigned long arg2);
44 long do_arch_prctl_common(int option, unsigned long arg2);
/linux-master/scripts/
H A Dconfig19 --enable|-e option Enable option
20 --disable|-d option Disable option
21 --module|-m option Turn option into a module
22 --set-str option string
23 Set option to "string"
24 --set-val option value
25 Set option t
[all...]
H A DMakefile.compiler19 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
20 # Exit code chooses option. "$$TMP" serves as a temporary file and is
31 # as-option
32 # Usage: aflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
34 as-option = $(call try-run,\
43 # __cc-option
44 # Usage: MY_CFLAGS += $(call __cc-option,$(CC),$(MY_CFLAGS),-march=winchip-c6,-march=i586)
45 __cc-option = $(call try-run,\
48 # cc-option
[all...]
/linux-master/arch/x86/um/
H A Dsyscalls_32.c5 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2)
/linux-master/arch/x86/boot/compressed/
H A Dcmdline.c25 int cmdline_find_option(const char *option, char *buffer, int bufsize) argument
27 return __cmdline_find_option(get_cmd_line_ptr(), option, buffer, bufsize);
29 int cmdline_find_option_bool(const char *option) argument
31 return __cmdline_find_option_bool(get_cmd_line_ptr(), option);
/linux-master/include/linux/
H A Dkconfig.h50 #define IS_BUILTIN(option) __is_defined(option)
57 #define IS_MODULE(option) __is_defined(option##_MODULE)
65 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \
66 __and(IS_MODULE(option), __is_defined(MODULE)))
73 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option))
[all...]
/linux-master/tools/include/linux/
H A Dkconfig.h44 #define IS_BUILTIN(option) __is_defined(option)
50 #define IS_MODULE(option) __is_defined(option##_MODULE)
58 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \
59 __and(IS_MODULE(option), __is_defined(MODULE)))
65 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option))
[all...]
/linux-master/tools/perf/trace/beauty/
H A Dprctl.c16 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) argument
18 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", show_prefix, option);
21 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) argument
24 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", show_prefix, option);
29 int option = syscall_arg__val(arg, 0); local
31 if (option == PR_SET_MM)
37 if (option == PR_SET_NAME)
45 int option = syscall_arg__val(arg, 0); local
47 if (option == PR_SET_MM)
55 unsigned long option local
[all...]
/linux-master/drivers/video/fbdev/core/
H A Dfb_cmdline.c29 * @option: the option will be stored here
31 * The caller owns the string returned in @option and is
36 int fb_get_options(const char *name, char **option) argument
52 if (option) {
54 *option = kstrdup(options, GFP_KERNEL);
56 *option = NULL;
/linux-master/arch/m68k/
H A DMakefile28 # 680x0 type is specified - and no option is specified for 68030 or
41 cpuflags-$(CONFIG_M5441x) = $(call cc-option,-mcpu=54455,-mcfv4e)
42 cpuflags-$(CONFIG_M54xx) = $(call cc-option,-mcpu=5475,-m5200)
43 cpuflags-$(CONFIG_M5407) = $(call cc-option,-mcpu=5407,-m5200)
44 cpuflags-$(CONFIG_M532x) = $(call cc-option,-mcpu=532x,-m5307)
45 cpuflags-$(CONFIG_M537x) = $(call cc-option,-mcpu=537x,-m5307)
46 cpuflags-$(CONFIG_M5307) = $(call cc-option,-mcpu=5307,-m5200)
47 cpuflags-$(CONFIG_M528x) = $(call cc-option,-mcpu=528x,-m5307)
48 cpuflags-$(CONFIG_M5275) = $(call cc-option,-mcpu=5275,-m5307)
49 cpuflags-$(CONFIG_M5272) = $(call cc-option,
[all...]
/linux-master/tools/include/tools/
H A Dconfig.h32 #define IS_BUILTIN(option) __is_defined(option)
/linux-master/arch/openrisc/
H A DMakefile31 KBUILD_CFLAGS += $(call cc-option,-mhard-mul)
33 KBUILD_CFLAGS += $(call cc-option,-msoft-mul)
37 KBUILD_CFLAGS += $(call cc-option,-mhard-div)
39 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
43 KBUILD_CFLAGS += $(call cc-option,-mcmov)
47 KBUILD_CFLAGS += $(call cc-option,-mror)
51 KBUILD_CFLAGS += $(call cc-option,-mrori)
55 KBUILD_CFLAGS += $(call cc-option,-msext)
/linux-master/include/video/
H A Dcmdline.h13 bool __video_get_options(const char *name, const char **option, bool is_of);
/linux-master/arch/x86/lib/
H A Dcmdline.c18 * Find a boolean option (like quiet,noapic,nosmp....)
22 * @option: option string to look for
24 * Returns the position of that @option (starts counting with 1)
25 * or 0 on not found. @option will only be found if it is found
26 * as an entire word in @cmdline. For instance, if @option="car"
31 const char *option)
61 opptr = option;
69 * option we were looking for. If the
76 * We hit the end of the option, bu
30 __cmdline_find_option_bool(const char *cmdline, int max_cmdline_size, const char *option) argument
123 __cmdline_find_option(const char *cmdline, int max_cmdline_size, const char *option, char *buffer, int bufsize) argument
206 cmdline_find_option_bool(const char *cmdline, const char *option) argument
211 cmdline_find_option(const char *cmdline, const char *option, char *buffer, int bufsize) argument
[all...]
/linux-master/tools/perf/ui/
H A Dui.h30 struct option;
32 int stdio__config_color(const struct option *opt, const char *mode, int unset);
/linux-master/drivers/pnp/
H A Dquirks.c27 struct pnp_option *option,
34 dev_err(&dev->dev, "couldn't add ioport region to option set "
35 "%d\n", pnp_option_set(option));
39 *new_option = *option;
42 list_add(&new_option->list, &option->list);
47 pnp_option_set(option));
52 struct pnp_option *option; local
57 * one given) to every dependent option set.
59 list_for_each_entry(option, &dev->options, list) {
60 if (pnp_option_is_dependent(option)
26 quirk_awe32_add_ports(struct pnp_dev *dev, struct pnp_option *option, unsigned int offset) argument
71 struct pnp_option *option; local
105 struct pnp_option *option; local
142 struct pnp_option *option, *new_option; local
210 struct pnp_option *option; local
[all...]
/linux-master/drivers/firmware/efi/libstub/
H A Dgop.c27 enum efi_cmdline_option option; member in struct:__anon278
36 } cmdline = { .option = EFI_CMDLINE_NONE };
38 static bool parse_modenum(char *option, char **next) argument
42 if (!strstarts(option, "mode="))
44 option += strlen("mode=");
45 m = simple_strtoull(option, &option, 0);
46 if (*option && *option++ != ',')
48 cmdline.option
55 parse_res(char *option, char **next) argument
91 parse_auto(char *option, char **next) argument
104 parse_list(char *option, char **next) argument
117 efi_parse_option_graphics(char *option) argument
[all...]
/linux-master/arch/hexagon/
H A DMakefile22 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
23 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
24 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
/linux-master/arch/arm/include/asm/
H A Dbarrier.h19 #define isb(option) __asm__ __volatile__ ("isb " #option : : : "memory")
20 #define dsb(option) __asm__ __volatile__ ("dsb " #option : : : "memory")
21 #define dmb(option) __asm__ __volatile__ ("dmb " #option : : : "memory")

Completed in 467 milliseconds

1234567891011>>