HomeSort by: relevance | last modified time | path
    Searched defs:arg (Results 1 - 25 of 319) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_328.c 15 union target arg = { 123 }; local in function:foo
17 arg = (union target)3;
18 arg.b++;
  /src/sys/arch/ews4800mips/stand/common/
cmd.h 38 char *arg[CMDARG_MAX - 1]; member in struct:cmd_batch_tab
  /src/tests/dev/scsipi/
t_cd.c 55 int part, fd, arg = 0; local in function:ATF_TC_BODY
67 RL(rump_sys_ioctl(fd, DIOCEJECT, &arg));
  /src/sys/arch/x86/acpi/
acpi_pdc.c 128 ACPI_OBJECT_LIST arg; local in function:acpi_md_pdc_set
132 arg.Count = 1;
133 arg.Pointer = &obj;
143 (void)AcpiEvaluateObject(hdl, "_PDC", &arg, NULL);
  /src/sys/arch/x86/pci/
ichlpcib_hpet.c 55 struct lpcib_hpet_attach_args *arg = aux; local in function:lpcib_hpet_match
59 bt = arg->hpet_mem_t;
61 if (bus_space_map(bt, arg->hpet_reg, HPET_WINDOW_SIZE, 0, &bh) != 0)
74 struct lpcib_hpet_attach_args *arg = aux; local in function:lpcib_hpet_attach
77 sc->sc_memt = arg->hpet_mem_t;
80 if (bus_space_map(sc->sc_memt, arg->hpet_reg,
88 arg->hpet_reg, arg->hpet_reg + HPET_WINDOW_SIZE);
  /src/sys/arch/xen/include/
evtchn.h 67 void *arg; member in struct:pintrhand
  /src/sys/compat/common/
sysv_sem_14.c 62 syscallarg(union __semun *) arg;
64 union __semun arg; local in function:compat_14_sys___semctl
72 pass_arg = get_semctl_arg(cmd, &sembuf, &arg);
75 error = copyin(SCARG(uap, arg), &arg, sizeof(arg));
79 error = copyin(arg.buf, &osembuf, sizeof(osembuf));
91 error = copyout(&osembuf, arg.buf, sizeof(osembuf));
sysv_sem_50.c 61 syscallarg(union __semun *) arg;
63 union __semun arg; local in function:compat_50_sys_____semctl13
71 pass_arg = get_semctl_arg(cmd, &sembuf, &arg);
74 error = copyin(SCARG(uap, arg), &arg, sizeof(arg));
78 error = copyin(arg.buf, &osembuf, sizeof(osembuf));
90 error = copyout(&osembuf, arg.buf, sizeof(osembuf));
  /src/sys/dev/isapnp/
wss_isapnp.c 170 struct audio_attach_args arg; local in function:wss_isapnp_attach
174 arg.type = AUDIODEV_TYPE_OPL;
175 arg.hwif = 0;
176 arg.hdl = 0;
177 config_found(self, &arg, audioprint, CFARGS(.iattr = "wss"));
  /src/sys/dev/raidframe/
rf_shutdown.h 54 void (*cleanup) (void *arg);
55 void *arg; member in struct:RF_ShutdownList_s
  /src/tests/lib/libpthread/dlopen/
t_main_pthread_create.c 45 routine(void *arg)
47 ATF_REQUIRE((intptr_t)arg == 0xcafe);
63 void *arg = (void *)0xcafe; local in function:ATF_TC_BODY
65 ret = pthread_create(&thread, NULL, routine, arg);
81 void *arg = (void *)0xcafe; local in function:ATF_TC_BODY
93 ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
  /src/tests/rump/rumpkern/h_server/
h_simpleserver.c 40 char *arg = NULL; local in function:main
43 arg = argv[3];
48 actions[i].dofun(arg);
  /src/usr.sbin/lpr/lpd/
extern.h 48 char *arg; /* argument */ member in struct:info
  /src/bin/stty/
cchar.c 102 char *arg, *ep, *name; local in function:csearch
115 arg = *++*argvp;
116 if (!arg) {
121 #define CHK(s) (*arg == s[0] && !strcmp(arg, s))
125 val = strtol(arg, &ep, 10);
141 } else if (arg[0] == '^')
142 ip->t.c_cc[cp->sub] = (arg[1] == '?') ? 0177 :
143 (arg[1] == '-') ? _POSIX_VDISABLE : arg[1] & 037
    [all...]
  /src/lib/libpthread/
thrd.c 45 void *arg; member in struct:__thrd_tramp_data
49 __thrd_create_tramp(void *arg)
54 _DIAGASSERT(arg != NULL);
56 cookie = (struct __thrd_tramp_data *)arg;
58 ret = (cookie->func)(cookie->arg);
66 thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
79 cookie->arg = arg;
  /src/lib/librefuse/
refuse_lowlevel.c 78 static int refuse_lowlevel_opt_proc(void* data, const char *arg, int key,
86 return fuse_opt_add_opt(&opts->mountpoint, arg);
89 (void)fprintf(stderr, "fuse: invalid argument: %s\n", arg);
106 char *arg; local in function:add_default_fsname
115 if (asprintf(&arg, "-ofsname=refuse:%s", slash) == -1)
118 rv = fuse_opt_add_arg(args, arg);
119 free(arg);
  /src/sbin/fsck_v7fs/
inode.c 121 struct ilistcheck_arg *arg = (struct ilistcheck_arg *)ctx; local in function:ilistcheck_subr
127 arg->total++;
129 arg->alloc++;
138 struct ilistcheck_arg arg = { .total = 0, .alloc = 0 }; local in function:ilist_check
141 if ((error = v7fs_ilist_foreach(fs, ilistcheck_subr, &arg)))
143 int nfree = arg.total - arg.alloc;
158 pwarn("\ninode usage: %d/%d (%d)\n", arg.alloc, arg.total, nfree);
  /src/sys/arch/amiga/dev/
drsupio.c 82 int arg; member in struct:drsupio_devs
115 supa.supio_arg = drsd->arg;
  /src/sys/arch/i386/pnpbios/
wss_pnpbios.c 106 struct audio_attach_args arg; local in function:wss_pnpbios_attach
168 arg.type = AUDIODEV_TYPE_OPL;
169 arg.hwif = 0;
170 arg.hdl = 0;
171 config_found(self, &arg, audioprint, CFARGS(.iattr = "wss"));
  /src/sys/arch/playstation2/playstation2/
interrupt.h 38 void *arg; member in struct:_ipl_dispatcher
  /src/sys/arch/sparc/stand/bootxx/
bootxx.c 74 void *arg; local in function:main
95 arg = (prom_version() == PROM_OLDMON) ? (void *)PROM_LOADADDR : romp;
96 (*entry)(arg);
  /src/sys/compat/linux/common/
linux_ipccall.c 100 union linux_semun arg; local in function:linux_sys_ipc
107 if ((error = copyin(SCARG(uap, ptr), &arg, sizeof arg)))
109 SCARG(&bsa, arg) = arg;
  /src/sys/dev/ic/
mpuvar.h 40 void *arg; /* arg for intr() */ member in struct:mpu_softc
  /src/sys/dev/isa/
sb.c 248 struct audio_attach_args arg; local in function:sbattach
263 arg.type = AUDIODEV_TYPE_MPU;
264 arg.hwif = 0;
265 arg.hdl = 0;
266 sc->sc_mpudev = config_found(sc->sc_dev, &arg, audioprint,
272 arg.type = AUDIODEV_TYPE_OPL;
273 arg.hwif = 0;
274 arg.hdl = 0;
275 config_found(sc->sc_dev, &arg, audioprint,
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_pthread_wrappers.h 33 void *arg; member in struct:PthreadHelperCreateThreadInfo
36 inline DWORD WINAPI PthreadHelperThreadProc(void *arg) {
38 reinterpret_cast<PthreadHelperCreateThreadInfo*>(arg);
39 void *ret = (start_data->start_routine)(start_data->arg);
45 void *(*start_routine)(void *), void *arg) {
49 data->arg = arg;

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>