Searched refs:args (Results 301 - 325 of 1668) sorted by relevance

<<11121314151617181920>>

/freebsd-11.0-release/lib/libnetgraph/
H A Dmsg.c58 const struct ng_mesg *hdr, const void *args, size_t arglen);
67 int cookie, int cmd, const void *args, size_t arglen)
83 if (NgDeliverMsg(cs, path, &msg, args, arglen) < 0)
96 char *buf, *cmd, *args; local
110 for (args = cmd; *args != '\0' && !isspace(*args); args++)
112 if (*args != '\0') {
113 while (isspace(*args))
66 NgSendMsg(int cs, const char *path, int cookie, int cmd, const void *args, size_t arglen) argument
165 NgSendReplyMsg(int cs, const char *path, const struct ng_mesg *msg, const void *args, size_t arglen) argument
183 NgDeliverMsg(int cs, const char *path, const struct ng_mesg *hdr, const void *args, size_t arglen) argument
[all...]
/freebsd-11.0-release/sys/i386/i386/
H A Dbios.c171 struct bios_regs args; local
176 args.eax = ent->ident.id; /* set up arguments */
177 args.ebx = args.ecx = args.edx = 0;
178 bios32(&args, bios32_SDCI, GSEL(GCODE_SEL, SEL_KPL));
179 if ((args.eax & 0xff) == 0) { /* success? */
180 ent->base = args.ebx;
181 ent->len = args.ecx;
182 ent->entry = args
323 bios16(struct bios_args *args, char *fmt, ...) argument
611 struct bios_args args; local
[all...]
/freebsd-11.0-release/contrib/ofed/management/libibcommon/include/infiniband/
H A Dcommon.h91 #define IBWARN(fmt, args...) ibwarn(__FUNCTION__, fmt, ## args)
94 #define LOG(fmt, args...) logmsg(__FUNCTION__, fmt, ## args)
97 #define IBPANIC(fmt, args...) ibpanic(__FUNCTION__, fmt, ## args)
/freebsd-11.0-release/contrib/netbsd-tests/fs/ffs/
H A Dt_fifos.c107 struct ufs_args args; local
113 memset(&args, 0, sizeof(args));
114 args.fspec = __UNCONST(FAKEBLK);
120 if (rump_sys_mount(MOUNT_FFS, "/animals", 0, &args, sizeof(args))==-1)
/freebsd-11.0-release/sys/dev/mrsas/
H A Dmrsas_linux.c106 mrsas_linux_ioctl(struct thread *p, struct linux_ioctl_args *args) argument
114 u_long cmd = args->cmd;
121 error = fget(p, args->fd, cap_rights_init(&rights, CAP_IOCTL), &fp);
123 error = fget(p, args->fd, &fp);
126 error = fget(p, args->fd, CAP_IOCTL, &fp);
131 error = fo_ioctl(fp, cmd, (caddr_t)args->arg, p->td_ucred, p);
/freebsd-11.0-release/sys/dev/etherswitch/arswitch/
H A Darswitchvar.h136 #define DPRINTF(dev, args...) device_printf(dev, args)
137 #define DEVERR(dev, err, fmt, args...) do { \
138 if (err != 0) device_printf(dev, fmt, err, args); \
144 #define DPRINTF(dev, args...)
145 #define DEVERR(dev, err, fmt, args...)
/freebsd-11.0-release/sys/dev/etherswitch/mtkswitch/
H A Dmtkswitchvar.h148 #define DPRINTF(dev, args...) device_printf(dev, args)
149 #define DEVERR(dev, err, fmt, args...) do { \
150 if (err != 0) device_printf(dev, fmt, err, args); \
156 #define DPRINTF(dev, args...)
157 #define DEVERR(dev, err, fmt, args...)
/freebsd-11.0-release/sys/netpfil/ipfw/test/
H A Ddn_test.h24 #define ND(fmt, args...) do {} while (0)
25 #define D1(fmt, args...) do {} while (0)
26 #define D(fmt, args...) fprintf(stderr, "%-10s %4d %-8s " fmt "\n", \
27 __FILE__, __LINE__, __FUNCTION__, ## args)
28 #define DX(lev, fmt, args...) do { \
29 if (debug > lev) D(fmt, ## args); } while (0)
139 //void *cfg; /* config args */
/freebsd-11.0-release/sbin/iscontrol/
H A Discontrol.h34 # define debug(level, fmt, args...) do {if (level <= vflag) printf("%s: " fmt "\n", __func__ , ##args);} while(0)
37 # define debug(level, fmt, args...)
40 #define xdebug(fmt, args...) printf("%s: " fmt "\n", __func__ , ##args)
153 void parseArgs(int nargs, char **args, isc_opt_t *op);
/freebsd-11.0-release/sys/sparc64/sparc64/
H A Dsys_machdep.c44 static int sparc_sigtramp_install(struct thread *td, char *args);
45 static int sparc_utrap_install(struct thread *td, char *args);
98 sparc_sigtramp_install(struct thread *td, char *args) argument
105 if ((error = copyin(args, &sia, sizeof(sia))) != 0)
116 sparc_utrap_install(struct thread *td, char *args) argument
125 if ((error = copyin(args, &uia, sizeof(uia))) != 0)
/freebsd-11.0-release/tools/regression/tmpfs/
H A Dh_funcs.subr77 # test_mount [args]
146 local args
150 args=$(getopt u:v:w: $*)
156 set -- ${args}
/freebsd-11.0-release/sys/fs/nfsclient/
H A Dnfs_clvfsops.c183 static void nfs_convert_oargs(struct nfs_args *args,
230 nfs_convert_oargs(struct nfs_args *args, struct onfs_args *oargs) argument
233 args->version = NFS_ARGSVERSION;
234 args->addr = oargs->addr;
235 args->addrlen = oargs->addrlen;
236 args->sotype = oargs->sotype;
237 args->proto = oargs->proto;
238 args->fh = oargs->fh;
239 args->fhsize = oargs->fhsize;
240 args
520 nfs_mountdiskless(char *path, struct sockaddr_in *sin, struct nfs_args *args, struct thread *td, struct vnode **vpp, struct mount *mp) argument
852 struct nfs_args args = { local
1344 struct nfs_args args; local
[all...]
/freebsd-11.0-release/sys/boot/efi/libefi/
H A Defi_console.c43 static int args[MAXARGS], argc; variable
193 sprintf(buf, "%d", args[i]);
227 * Absolute cursor move to args[0] rows and args[1] columns
233 if (args[0] > 0)
234 args[0]--;
235 if (args[1] > 0)
236 args[1]--;
237 curs_move(&curx, &cury, args[1], args[
[all...]
/freebsd-11.0-release/sys/boot/i386/libi386/
H A Dvidconsole.c68 static int args[MAXARGS], argc; variable
271 * args[] and argc variables.
304 /* Absolute cursor move to args[0] rows and args[1] columns
311 if (args[0] > 0)
312 args[0]--;
313 if (args[1] > 0)
314 args[1]--;
315 curs_move(&curx, &cury, args[1], args[
[all...]
/freebsd-11.0-release/contrib/gdb/gdb/mi/
H A Dmi-main.c94 const char *args);
95 static enum mi_cmd_result mi_execute_async_cli_command (char *mi, char *args, int from_tty);
130 mi_cmd_exec_run (char *args, int from_tty) argument
133 return mi_execute_async_cli_command ("run", args, from_tty);
137 mi_cmd_exec_next (char *args, int from_tty) argument
140 return mi_execute_async_cli_command ("next", args, from_tty);
144 mi_cmd_exec_next_instruction (char *args, int from_tty) argument
147 return mi_execute_async_cli_command ("nexti", args, from_tty);
151 mi_cmd_exec_step (char *args, int from_tty) argument
154 return mi_execute_async_cli_command ("step", args, from_tt
158 mi_cmd_exec_step_instruction(char *args, int from_tty) argument
165 mi_cmd_exec_finish(char *args, int from_tty) argument
172 mi_cmd_exec_until(char *args, int from_tty) argument
179 mi_cmd_exec_return(char *args, int from_tty) argument
202 mi_cmd_exec_continue(char *args, int from_tty) argument
214 mi_cmd_exec_interrupt(char *args, int from_tty) argument
733 mi_cmd_target_download(char *args, int from_tty) argument
748 mi_cmd_target_select(char *args, int from_tty) argument
1092 struct captured_mi_execute_command_args *args = local
1194 struct captured_mi_execute_command_args args; local
1310 mi_execute_cli_command(const char *cmd, int args_p, const char *args) argument
1332 mi_execute_async_cli_command(char *mi, char *args, int from_tty) argument
[all...]
/freebsd-11.0-release/usr.bin/rpcgen/
H A Drpc_clntout.c124 ptype(proc->args.decls->decl.prefix,
125 proc->args.decls->decl.type, 1);
134 } else if (streq(proc->args.decls->decl.type, "void")) {
146 for (l = proc->args.decls; l != NULL; l = l->next) {
147 pdeclaration(proc->args.argname, &l->decl, 0, ", ");
183 f_print(fout, "\t%s", proc->args.argname);
200 (streq(proc->args.decls->decl.type, "void"))) {
226 for (l = proc->args.decls; l != NULL; l = l->next) {
236 proc->proc_name,proc->args.argname);
250 stringfix(proc->args
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cc57 OnCreatedArgs *args = static_cast<OnCreatedArgs *>(arg);
58 if (!args->thr) // GCD workers don't have a parent thread.
60 args->thr->fast_state.IncrementEpoch();
62 TraceAddEvent(args->thr, args->thr->fast_state, EventTypeMop, 0);
63 ReleaseImpl(args->thr, 0, &sync);
64 creation_stack_id = CurrentStackId(args->thr, args->pc);
66 StatInc(args->thr, StatThreadMaxTid);
89 OnStartedArgs *args local
235 OnCreatedArgs args = { thr, pc }; local
273 OnStartedArgs args = { thr, stk_addr, stk_size, tls_addr, tls_size }; local
[all...]
/freebsd-11.0-release/contrib/groff/src/libs/libdriver/
H A Dinput.cpp105 - All D commands with a variable number of args expect an even
175 - all open figures (args, splines, and lines) should position at their
236 // to the strange alternate sum of args displacement
399 // variable, even number of int args
419 bool skip_line_checked(void); // skip line, false if args are left
420 void skip_line_fatal(void); // skip line, fatal if args are left
421 void skip_line_warn(void); // skip line, warn if args are left
672 IntArray *args = new IntArray(number); local
674 args->append(get_integer_arg());
676 return args;
698 IntArray *args = new IntArray(number); local
728 IntArray *args = get_possibly_integer_args(); local
833 IntArray *args = new IntArray(); local
1013 position_to_end_of_args(const IntArray * const args) argument
1083 send_draw(const Char subcmd, const IntArray * const args) argument
1328 IntArray *args = get_D_variable_args(); local
1336 IntArray *args = get_D_fixed_args(4); local
1344 IntArray *args = get_D_fixed_args(1); local
1353 IntArray *args = get_D_fixed_args_odd_dummy(1); local
1363 IntArray *args = get_D_fixed_args(2); local
1400 IntArray *args = get_D_fixed_args(2); local
1409 IntArray *args = get_D_variable_args(); local
1420 IntArray *args = get_D_fixed_args_odd_dummy(1); local
[all...]
/freebsd-11.0-release/tools/regression/fsx/
H A Dfsx.c73 int args[3]; member in struct:log_entry
167 va_list args; local
169 va_start(args, fmt);
170 vfprintf(stdout, fmt, args);
171 va_end(args);
174 va_start(args, fmt);
175 vfprintf(fsxlogf, fmt, args);
176 va_end(args);
194 le->args[0] = arg0;
195 le->args[
[all...]
/freebsd-11.0-release/crypto/heimdal/appl/test/
H A Dnt_gss_server.c56 static struct getargs args[] = { variable in typeref:struct:getargs
65 static int num_args = sizeof(args) / sizeof(args[0]);
189 usage(int code, struct getargs *args, int num_args) argument
191 arg_printusage(args, num_args, NULL, "");
200 *argc = krb5_program_setup(context, *argc, argv, args, num_args, usage);
203 (*usage)(0, args, num_args);
234 usage(1, args, num_args);
/freebsd-11.0-release/crypto/heimdal/lib/sl/
H A Dslc-lex.l71 va_list args;
73 va_start (args, format);
75 vfprintf (stderr, format, args);
76 va_end (args);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectGUI.cpp37 CommandObjectGUI::DoExecute (Args& args, CommandReturnObject &result) argument
40 if (args.GetArgumentCount() == 0)
/freebsd-11.0-release/crypto/openssh/regress/
H A Dmodpipe.c36 va_list args; local
38 va_start(args, fmt);
40 vfprintf(stderr, fmt, args);
42 va_end(args);
49 va_list args; local
51 va_start(args, fmt);
52 vfprintf(stderr, fmt, args);
54 va_end(args);
/freebsd-11.0-release/contrib/gcc/
H A Dcalls.c204 macro RETURN_POPS_ARGS to determine whether this function pops its own args.
207 RETURN_POPS_ARGS to determine whether this function pops its own args.
223 just after all the args have had their registers assigned.
225 arg-register beyond those used for args in this call,
233 the args to this call were processed.
276 /* If this subroutine pops its own args, record that in the call insn
309 /* If this subroutine pops its own args, record that in the call insn
409 /* Restore this now, so that we do defer pops for this call's args
427 /* If returning from the subroutine does not automatically pop the args,
431 If returning from the subroutine does pop the args, indicat
647 precompute_register_parameters(int num_actuals, struct arg_data *args, int *reg_parm_seen) argument
821 store_unaligned_arguments_into_pseudos(struct arg_data *args, int num_actuals) argument
920 initialize_argument_information(int num_actuals ATTRIBUTE_UNUSED, struct arg_data *args, struct args_size *args_size, int n_named_args ATTRIBUTE_UNUSED, tree actparms, tree fndecl, CUMULATIVE_ARGS *args_so_far, int reg_parm_stack_space, rtx *old_stack_level, int *old_pending_adj, int *must_preallocate, int *ecf_flags, bool *may_tailcall, bool call_from_thunk_p) argument
1235 precompute_arguments(int flags, int num_actuals, struct arg_data *args) argument
1295 finalize_must_preallocate(int must_preallocate, int num_actuals, struct arg_data *args, struct args_size *args_size) argument
1354 compute_argument_addresses(struct arg_data *args, rtx argblock, int num_actuals) argument
1533 load_register_parameters(struct arg_data *args, int num_actuals, rtx *call_fusage, int flags, int is_sibcall, int *sibcall_failure) argument
1886 struct arg_data *args; local
[all...]
/freebsd-11.0-release/contrib/apr-util/include/private/
H A Dapr_dbd_internal.h211 /** pvquery: query using a prepared statement + args
217 * @param args - args to prepared statement
221 apr_dbd_prepared_t *statement, va_list args);
223 /** pvselect: select using a prepared statement + args
230 * @param args - args to prepared statement
235 apr_dbd_prepared_t *statement, int random, va_list args);
237 /** pquery: query using a prepared statement + args
243 * @param args
[all...]

Completed in 276 milliseconds

<<11121314151617181920>>