Searched defs:arg (Results 1 - 25 of 227) sorted by relevance

12345678910

/arch/ia64/kernel/
H A Dstacktrace.c12 ia64_do_save_stack(struct unw_frame_info *info, void *arg) argument
14 struct stack_trace *trace = arg;
/arch/mips/emma/common/
H A Dprom.c44 char **arg = (char **)fw_arg1; local
51 /* arg[0] is "g", the rest is boot parameters */
53 if (strlen(arcs_cmdline) + strlen(arg[i]) + 1
56 strcat(arcs_cmdline, arg[i]);
/arch/sparc/prom/
H A Dbootstr_32.c19 char *cp, *arg; local
31 arg = (*(romvec->pv_v0bootargs))->argv[iter];
32 if (arg == NULL)
34 while(*arg != 0) {
40 *cp++ = *arg++;
/arch/arm/kernel/
H A Dsuspend.c39 int cpu_suspend(unsigned long arg, int (*fn)(unsigned long)) argument
53 ret = __cpu_suspend(arg, fn);
/arch/mips/dec/prom/
H A Dcmdline.c19 char *arg; local
30 arg = (void *)(long)(argv[i]);
31 strcat(arcs_cmdline, arg);
/arch/parisc/hpux/
H A Dioctl.c43 static int hpux_ioctl_t(int fd, unsigned long cmd, unsigned long arg) argument
49 result = sys_ioctl(fd, TIOCSWINSZ, arg);
52 result = sys_ioctl(fd, TIOCGWINSZ, arg);
58 int hpux_ioctl(int fd, unsigned long cmd, unsigned long arg) argument
65 result = sys_ioctl(fd, cmd, arg);
68 result = hpux_ioctl_t(fd, cmd, arg);
/arch/um/os-Linux/
H A Dtty.c19 static void grantpt_cb(void *arg) argument
21 struct grantpt_info *info = arg;
/arch/x86/kernel/cpu/
H A Dmshyperv.c41 static cycle_t read_hv_clock(struct clocksource *arg) argument
/arch/arm/mach-s3c24xx/
H A Dpm-s3c2412.c40 static int s3c2412_cpu_suspend(unsigned long arg) argument
H A Dpm-s3c2416.c27 static int s3c2416_cpu_suspend(unsigned long arg) argument
/arch/arm/mach-s5pv210/
H A Dpm.c91 static int s5pv210_cpu_suspend(unsigned long arg) argument
/arch/blackfin/mach-bf561/
H A Dcoreb.c26 coreb_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
/arch/powerpc/kernel/
H A Didle.c45 static int __init powersave_off(char *arg) argument
/arch/x86/mm/
H A Dpgtable_32.c105 static int __init parse_vmalloc(char *arg) argument
107 if (!arg)
111 __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET;
121 static int __init parse_reservetop(char *arg) argument
125 if (!arg)
128 address = memparse(arg, &arg);
/arch/x86/xen/
H A Dplatform-pci-unplug.c111 static int __init parse_xen_emul_unplug(char *arg) argument
116 for (p = arg; p; p = q) {
/arch/ia64/oprofile/
H A Dperfmon.c20 perfmon_handler(struct task_struct *task, void *buf, pfm_ovfl_arg_t *arg, argument
23 int event = arg->pmd_eventid;
25 arg->ovfl_ctrl.bits.reset_ovfl_pmds = 1;
/arch/ia64/sn/kernel/
H A Dhuberror.c24 static irqreturn_t hub_eint_handler(int irq, void *arg) argument
32 hubdev_info = (struct hubdev_info *)arg;
/arch/m68k/atari/
H A Dstram.c51 static int __init atari_stram_setup(char *arg) argument
56 pool_size = memparse(arg, NULL);
/arch/mips/pmc-sierra/yosemite/
H A Dprom.c44 static void prom_cpu0_exit(void *arg) argument
89 char **arg = (char **) fw_arg1; local
104 if (strlen(arcs_cmdline) + strlen(arg[i]) + 1 >=
108 strcat(arcs_cmdline, arg[i]);
/arch/mips/rb532/
H A Dprom.c57 static inline int match_tag(char *arg, const char *tag) argument
59 return strncmp(arg, tag, strlen(tag)) == 0;
62 static inline unsigned long tag2ul(char *arg, const char *tag) argument
66 num = arg + strlen(tag);
92 /* parses out the "mem=xx" arg */
/arch/powerpc/mm/
H A Dicswx.h21 static inline void sync_cop(void *arg) argument
23 struct mm_struct *mm = arg;
/arch/powerpc/xmon/
H A Dspu-dis.c125 if (index->arg[0] != 0)
128 for (i = 1; i <= index->arg[0]; i++)
130 int arg = index->arg[i]; local
131 if (arg != A_P && !paren && i > 1)
134 switch (arg)
238 if (arg != A_P && paren)
/arch/sh/boards/mach-highlander/
H A Dpsw.c19 static irqreturn_t psw_irq_handler(int irq, void *arg) argument
21 struct platform_device *pdev = arg;
/arch/sh/boards/mach-landisk/
H A Dgio.c62 static long gio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
68 if (copy_from_user(&data, (int *)arg, sizeof(int))) {
119 if (copy_to_user((int *)arg, &data, sizeof(int))) {
H A Dpsw.c20 static irqreturn_t psw_irq_handler(int irq, void *arg) argument
22 struct platform_device *pdev = arg;

Completed in 472 milliseconds

12345678910