Searched refs:args (Results 276 - 300 of 1440) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dremote-rdp.c714 rdp_set_command_line (char *command, char *args)
725 xasprintf (&commandline, "%s %s", command, args);
816 exec_swi (int swi, argsin *args)
826 for (i = 0; i < args->n; i++)
827 callback->write_stdout (callback, args->s, strlen (args->s));
831 args->n = c;
834 args->n = callback->system (callback, args->s);
837 args
713 rdp_set_command_line(char *command, char *args) argument
815 exec_swi(int swi, argsin *args) argument
940 argsin args[3]; local
1124 remote_rdp_open(char *args, int from_tty) argument
1384 remote_rdp_attach(char *args, int from_tty) argument
[all...]
H A Dremote-utils.c106 sr_scan_args (char *proto, char *args) argument
111 /* if no args, then nothing to do. */
112 if (args == NULL || *args == '\0')
116 for (p = args; isspace (*p); ++p);;
157 gr_open (char *args, int from_tty, struct gr_settings *gr) argument
160 sr_scan_args (gr->ops->to_shortname, args);
168 /* If no args are specified, then we use the device specified by a
372 /* Put a command string, in args, out to the remote. The remote is assumed to
379 sr_com (char *args, in argument
417 gr_detach(char *args, int from_tty) argument
469 gr_create_inferior(char *execfile, char *args, char **env) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueArray.cpp77 Args args(value);
78 return SetArgs (args, op);
145 OptionValueArray::GetArgs (Args &args) const
157 args.Clear();
159 args.SetArguments(argv.size(), &argv[0]);
160 return args.GetArgumentCount();
164 OptionValueArray::SetArgs (const Args &args, VarSetOperationType op) argument
167 const size_t argc = args.GetArgumentCount();
178 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX);
190 lldb::OptionValueSP value_sp (CreateValueFromCStringForTypeMask (args
[all...]
H A DOptionValueFileSpecLIst.cpp47 Args args(value);
48 const size_t argc = args.GetArgumentCount();
59 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX);
69 FileSpec file (args.GetArgumentAtIndex(i), false);
94 FileSpec file (args.GetArgumentAtIndex(i), false);
108 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX);
120 FileSpec file (args.GetArgumentAtIndex(i), false);
139 const int idx = Args::StringToSInt32(args.GetArgumentAtIndex(i), INT32_MAX);
161 error.SetErrorStringWithFormat("invalid array index '%s', aborting remove operation", args.GetArgumentAtIndex(i));
/freebsd-10.0-release/sbin/hastd/
H A Dhooks.c170 hook_alloc(const char *path, char **args) argument
186 for (ii = 1; args[ii] != NULL; ii++) {
188 args[ii]);
344 char *args[64]; local
354 memset(args, 0, sizeof(args));
355 args[0] = basename(path);
356 for (ii = 1; ii < sizeof(args) / sizeof(args[0]); ii++) {
357 args[i
[all...]
/freebsd-10.0-release/sys/gnu/fs/reiserfs/
H A Dreiserfs_prints.c188 prepare_error_buf(const char *fmt, va_list args)
200 p += vsprintf (p, fmt1, args);
203 j = va_arg(args, int);
207 sprintf_le_key(p, va_arg(args, struct key *));
210 sprintf_cpu_key(p, va_arg(args, struct cpu_key *));
213 sprintf_item_head(p, va_arg(args, struct item_head *));
217 va_arg(args, struct reiserfs_dir_entry *));
221 va_arg(args, struct disk_child *));
225 va_arg(args, struct buffer_head *));
229 va_arg(args, struc
[all...]
/freebsd-10.0-release/contrib/sendmail/rmail/
H A Drmail.c103 char **args, buf[2048], lbuf[2048]; local
274 /* Allocate args (with room for sendmail args as well as recipients */
275 args = (char **)xalloc(sizeof(*args) * (10 + argc));
278 args[i++] = _PATH_SENDMAIL; /* Build sendmail's argument list. */
279 args[i++] = "-G"; /* relay submission */
280 args[i++] = "-oee"; /* No errors, just status. */
282 args[i++] = "-odq"; /* Queue it, don't try to deliver. */
284 args[
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bio/
H A Db_print.c137 const char *format, va_list args);
176 va_list args)
238 min = va_arg(args, int);
258 max = va_arg(args, int);
297 value = (short int)va_arg(args, int);
300 value = va_arg(args, long int);
303 value = va_arg(args, LLONG);
306 value = va_arg(args, int);
321 value = (unsigned short int)va_arg(args, unsigned int);
324 value = (LLONG) va_arg(args,
169 _dopr( char **sbuffer, char **buffer, size_t *maxlen, size_t *retlen, int *truncated, const char *format, va_list args) argument
770 va_list args; local
781 BIO_vprintf(BIO *bio, const char *format, va_list args) argument
816 va_list args; local
827 BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) argument
[all...]
/freebsd-10.0-release/sys/boot/efi/libefi/
H A Dlibefi.c86 CHAR16 *argp, *args, **argv; local
123 args = malloc(img->LoadOptionsSize << 1);
125 args[argc] = ((char*)img->LoadOptions)[argc];
127 args = malloc(img->LoadOptionsSize);
128 memcpy(args, img->LoadOptions, img->LoadOptionsSize);
131 args = NULL;
146 addprog = (args == NULL || img->ParentHandle == NULL ||
160 argp = args;
173 argp = args;
/freebsd-10.0-release/sys/compat/svr4/
H A Dsvr4_sysvec.c218 Elf32_Auxargs *args; local
223 args = (Elf32_Auxargs *)imgp->auxargs;
224 pos = *stack_base + (imgp->args->argc + imgp->args->envc + 2);
226 if (args->execfd != -1)
227 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
228 AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
229 AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
230 AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
231 AUXARGS_ENTRY(pos, AT_PAGESZ, args
[all...]
/freebsd-10.0-release/usr.bin/systat/
H A Ddevs.c96 static int dsmatchselect(const char *args, devstat_select_mode select_mode,
98 static int dsselect(const char *args, devstat_select_mode select_mode,
143 dscmd(const char *cmd, const char *args, int maxshowdevs, struct statinfo *s1) argument
148 return(dsselect(args, DS_SELECT_ADDONLY, maxshowdevs, s1));
150 return(dsselect(args, DS_SELECT_REMOVE, maxshowdevs, s1));
152 return(dsselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
154 return(dsmatchselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
185 dsmatchselect(const char *args, devstat_select_mode select_mode, int maxshowdevs, argument
198 tmpstr = tmpstr1 = strdup(args);
245 dsselect(const char *args, devstat_select_mod argument
[all...]
/freebsd-10.0-release/usr.sbin/rpcbind/
H A Dsecurity.c62 check_access(SVCXPRT *xprt, rpcproc_t proc, void *args, unsigned int rpcbvers) argument
82 rpcbp = (rpcb *)args;
85 pmap = (struct pmap *)args;
229 check_callit(SVCXPRT *xprt, struct r_rmtcall_args *args, int versnum __unused) argument
236 if (args->rmt_proc == 0)
242 switch (args->rmt_prog) {
252 if (args->rmt_proc != MOUNTPROC_MNT &&
253 args->rmt_proc != MOUNTPROC_UMNT)
257 if (args->rmt_proc != YPBINDPROC_SETDOM)
265 switch (args
[all...]
/freebsd-10.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-10.0-release/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c57 * actually print args for %g and %e
202 va_list args; local
204 VA_COPY(args, args_in);
255 min = va_arg (args, int);
277 max = va_arg (args, int);
312 value = va_arg (args, int);
314 value = va_arg (args, long int);
316 value = va_arg (args, LLONG);
318 value = va_arg (args, int);
326 value = va_arg (args, unsigne
832 vsnprintf(char *str, size_t count, const char *fmt, va_list args) argument
[all...]
/freebsd-10.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-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Drwbytype.d70 self->type = xlate <struct vtype2str *>(args[0]->v_type)->code;
71 self->size = args[1]->uio_resid;
72 self->uiop = args[1];
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Proc/
H A Drwbytype.d70 self->type = xlate <struct vtype2str *>(args[0]->v_type)->code;
71 self->size = args[1]->uio_resid;
72 self->uiop = args[1];
/freebsd-10.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-10.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-10.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, "%-8s " fmt "\n", \
27 __FUNCTION__, ## args)
28 #define DX(lev, fmt, args...) do { \
29 if (debug > lev) D(fmt, ## args); } while (0)
103 void *cfg; /* config args */
/freebsd-10.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-10.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-10.0-release/usr.sbin/pw/
H A Dpw_group.c48 static gid_t gr_gidpolicy(struct userconf * cnf, struct cargs * args);
51 pw_group(struct userconf * cnf, int mode, struct cargs * args) argument
54 struct carg *a_name = getarg(args, 'n');
55 struct carg *a_gid = getarg(args, 'g');
77 gid_t next = gr_gidpolicy(cnf, args);
78 if (getarg(args, 'q'))
84 if (mode == M_PRINT && getarg(args, 'a')) {
85 int pretty = getarg(args, 'P') != NULL;
109 if (mode == M_PRINT && getarg(args, 'F')) {
115 return print_group(&fakegroup, getarg(args, '
341 gr_gidpolicy(struct userconf * cnf, struct cargs * args) argument
[all...]
/freebsd-10.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-10.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...]

Completed in 378 milliseconds

<<11121314151617181920>>