Searched refs:args (Results 151 - 175 of 1440) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/boot/userboot/userboot/
H A Dlibuserboot.h34 #define CALLBACK(fn, args...) (callbacks->fn(callbacks_arg , ##args))
65 int bi_load32(char *args, int *howtop, int *bootdevp, vm_offset_t *bip,
67 int bi_load64(char *args, vm_offset_t *modulep, vm_offset_t *kernend);
/freebsd-10.0-release/sys/ia64/include/
H A Dproc.h49 register_t *args; member in struct:syscall_args
/freebsd-10.0-release/usr.bin/indent/
H A DMakefile5 SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c
/freebsd-10.0-release/usr.bin/truss/
H A Dmips-fbsd.c86 unsigned long *args; member in struct:freebsd_syscall
104 free(fsc->args);
165 fsc->args = malloc((1 + nargs) * sizeof(unsigned long));
169 iorequest.piod_addr = fsc->args;
201 iorequest.piod_addr = &fsc->args[4];
202 iorequest.piod_len = (nargs - 4) * sizeof(fsc->args[0]);
206 case 4: fsc->args[3] = regs.r_regs[A3];
207 case 3: fsc->args[2] = regs.r_regs[A2];
208 case 2: fsc->args[1] = regs.r_regs[A1];
209 case 1: fsc->args[
[all...]
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dmsg.c43 va_list args; local
47 va_start(args, msg);
58 vfprintf(stderr, msg, args);
74 va_end(args);
/freebsd-10.0-release/lib/libc/ia64/gen/
H A Dsignalcontext.c56 ctx_wrapper(ucontext_t *ucp, handler_t func, uint64_t *args) argument
59 (*func)(args[0], args[1], args[2]);
73 uint64_t *args, *bsp; local
95 args = (uint64_t*)sp;
96 args[0] = sig;
97 args[1] = (intptr_t)sig_si;
98 args[2] = (intptr_t)sig_uc;
107 bsp = spill(bsp, (intptr_t)args);
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/mib/
H A Dtst.udp.ksh30 # with a valid args[0].
37 out = args[0];
42 in = args[0];
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/include/
H A Dibdiag_common.h51 #define IBERROR(fmt, args...) iberror(__FUNCTION__, fmt, ## args)
/freebsd-10.0-release/crypto/openssl/apps/
H A Dpkcs12.c101 char **args; local
146 args = argv + 1;
149 while (*args) {
150 if (*args[0] == '-') {
151 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
152 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
153 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
154 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
155 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
156 else if (!strcmp (*args, "
[all...]
/freebsd-10.0-release/crypto/openssl/util/
H A Ddomd18 args=""
20 if [ "$1" != "--" ]; then args="$args $1"; fi
25 ${MAKEDEPEND} -Werror -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp || exit 1
/freebsd-10.0-release/sys/arm/arm/
H A Dsys_machdep.c63 arm32_sync_icache(struct thread *td, void *args) argument
68 if ((error = copyin(args, &ua, sizeof(ua))) != 0)
78 arm32_drain_writebuf(struct thread *td, void *args) argument
80 /* No args. */
88 arm32_set_tp(struct thread *td, void *args) argument
92 td->td_md.md_tp = (register_t)args;
95 set_tls(args);
97 *(register_t *)ARM_TP_ADDRESS = (register_t)args;
103 arm32_get_tp(struct thread *td, void *args) argument
/freebsd-10.0-release/sys/kgssapi/
H A Dgss_acquire_cred.c56 struct acquire_cred_args args; local
67 args.uid = curthread->td_ucred->cr_uid;
69 args.desired_name = desired_name->handle;
71 args.desired_name = 0;
72 args.time_req = time_req;
73 args.desired_mechs = desired_mechs;
74 args.cred_usage = cred_usage;
77 stat = gssd_acquire_cred_1(&args, &res, cl);
H A Dgss_display_status.c52 struct display_status_args args; local
61 args.status_value = status_value;
62 args.status_type = status_type;
63 args.mech_type = mech_type;
64 args.message_context = *message_context;
67 stat = gssd_display_status_1(&args, &res, cl);
H A Dgss_set_cred_option.c50 struct set_cred_option_args args; local
61 args.cred = (*cred)->handle;
63 args.cred = 0;
64 args.option_name = option_name;
65 args.option_value = *option_value;
68 stat = gssd_set_cred_option_1(&args, &res, cl);
/freebsd-10.0-release/usr.sbin/apm/
H A Dapm.c195 struct apm_bios_arg args; local
246 bzero(&args, sizeof(args));
247 args.eax = (APM_BIOS) << 8 | APM_RESUMETIMER;
248 args.ebx = PMDV_APMBIOS;
249 args.ecx = 0x0001;
250 if (ioctl(fd, APMIO_BIOS, &args)) {
253 apmerr = APMERR(args.eax);
273 tm.tm_sec = bcd2int(xh(args.ecx));
274 tm.tm_min = bcd2int(xl(args
357 struct apm_bios_arg args; local
[all...]
/freebsd-10.0-release/contrib/libstdc++/scripts/
H A Dgen_includers.pl11 $args = "__a1";
32 $args_shifted = $args;
38 $args .= ", __a$num_args";
63 print "#define _GLIBCXX_ARGS $args\n";
/freebsd-10.0-release/crypto/heimdal/lib/hdb/
H A Dtest_dbinfo.c40 struct getargs args[] = { variable in typeref:struct:getargs
45 static int num_args = sizeof(args) / sizeof(args[0]);
56 if(getarg(args, num_args, argc, argv, &o))
57 krb5_std_usage(1, args, num_args);
60 krb5_std_usage(0, args, num_args);
/freebsd-10.0-release/sys/dev/etherswitch/arswitch/
H A Darswitchvar.h80 #define DPRINTF(dev, args...) device_printf(dev, args)
81 #define DEVERR(dev, err, fmt, args...) do { \
82 if (err != 0) device_printf(dev, fmt, err, args); \
88 #define DPRINTF(dev, args...)
89 #define DEVERR(dev, err, fmt, args...)
/freebsd-10.0-release/sys/i386/ibcs2/
H A Dibcs2_sysi86.c57 ibcs2_sysi86(struct thread *td, struct ibcs2_sysi86_args *args) argument
59 switch (args->cmd) {
67 if ((error = copyout(&val, args->arg, sizeof(val))) != 0)
73 /* gettimeofday; time.tv_sec = *args->arg; settimeofday */
82 args->arg, 7, 0, 0));
92 "not implemented yet\n", args->cmd, args->cmd);
/freebsd-10.0-release/sys/powerpc/wii/
H A Dwii_ipcreg.h91 } args; member in struct:wiiipc_ipc_msg
96 #define ipc_open args._ipc_open
97 #define ipc_read args._ipc_read
98 #define ipc_write args._ipc_write
99 #define ipc_ioctl args._ipc_ioctl
100 #define ipc_ioctlv args._ipc_ioctlv
/freebsd-10.0-release/sys/tools/
H A Dvnode_if.awk107 name "_args,a_" args[jj] ")";
262 args[numargs] = substr($0, argp);
275 ctrstr = ctrstr "\"" args[0] ":0x%jX\", (uintptr_t)a->a_" args[0];
277 ctrstr = ctrstr ", \"" args[i] ":0x%jX\", a->a_" args[i];
292 printh("\t" t_spc(types[i]) "a_" args[i] ";");
306 printh("\t" t_spc(types[i]) args[i] \
314 printh("\ta.a_" args[i] " = " args[
[all...]
/freebsd-10.0-release/tools/tools/kernxref/
H A Dkernxref.sh21 args=`getopt h?k:s: $*`;
24 args="-h";
26 set -- $args;
/freebsd-10.0-release/sys/dev/drm2/radeon/
H A Datombios_crtc.c45 SET_CRTC_OVERSCAN_PS_ALLOCATION args; local
49 memset(&args, 0, sizeof(args));
51 args.ucCRTC = radeon_crtc->crtc_id;
55 args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
56 args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
57 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
58 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
65 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
66 args
88 ENABLE_SCALER_PS_ALLOCATION args; local
174 ENABLE_CRTC_PS_ALLOCATION args; local
190 ENABLE_CRTC_PS_ALLOCATION args; local
206 ENABLE_CRTC_PS_ALLOCATION args; local
222 BLANK_CRTC_PS_ALLOCATION args; local
238 ENABLE_DISP_POWER_GATING_PARAMETERS_V2_1 args; local
293 SET_CRTC_USING_DTD_TIMING_PARAMETERS args; local
338 SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args; local
432 union atom_enable_ss args; local
622 union adjust_pixel_clock args; local
726 union set_pixel_clock args; local
788 union set_pixel_clock args; local
[all...]
/freebsd-10.0-release/sys/netpfil/ipfw/
H A Dip_fw_pfil.c123 struct ip_fw_args args; local
130 bzero(&args, sizeof(args));
139 args.rule = *((struct ipfw_rule_ref *)(tag+1));
141 if (args.rule.info & IPFW_ONEPASS)
145 args.m = *m0;
146 args.oif = dir == DIR_OUT ? ifp : NULL;
147 args.inp = inp;
149 ipfw = ipfw_chk(&args);
150 *m0 = args
303 struct ip_fw_args args; local
[all...]
/freebsd-10.0-release/sys/netsmb/
H A Dsmb_subr.h39 #define SMBERROR(format, args...) printf("%s: "format, __func__ ,## args)
40 #define SMBPANIC(format, args...) printf("%s: "format, __func__ ,## args)
43 #define SMBSDEBUG(format, args...) printf("%s: "format, __func__ ,## args)
45 #define SMBSDEBUG(format, args...)
49 #define SMBIODEBUG(format, args...) printf("%s: "format, __func__ ,## args)
51 #define SMBIODEBUG(format, args
[all...]

Completed in 203 milliseconds

1234567891011>>