/illumos-gate/usr/src/cmd/devmgmt/cmds/ |
H A D | getdev.c | 151 char **arglist; /* List of arguments */ 238 arglist = argv + optind; 239 criterialist = buildcriterialist(arglist); 240 devicelist = builddevlist(arglist); 262 * char **buildcriterialist(arglist) 263 * char **arglist 268 * arglist The list of arguments on the command-line 276 buildcriterialist(arglist) 277 char **arglist; /* Pointer to the list of argument pointers */ 294 pp = arglist; 149 char **arglist; /* List of arguments */ local [all...] |
H A D | getdgrp.c | 113 #define isacriterion(p) (strchr(*arglist,'=')||strchr(*arglist,':')) 173 char **arglist; /* List of arguments (subset of argv) */ 283 arglist = argv + optind; 284 criterialist = buildcriterialist(arglist); 285 dgrouplist = builddgrouplist(arglist); 309 * char **buildcriterialist(arglist) 310 * char **arglist 317 * arglist The address of the first element in the list 328 buildcriterialist(arglist) 171 char **arglist; /* List of arguments (subset of argv) */ local [all...] |
/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | check.c | 675 check_exprscope(np->u.func.arglist, ex); 978 struct node *arglist = np->u.func.arglist; local 983 switch (arglist->t) { 985 if (arglist->u.ull != 0ULL) { 986 outfl(O_ERR, arglist->file, arglist->line, 993 if (arglist->u.name.s != L_infinity) { 994 outfl(O_ERR, arglist->file, arglist [all...] |
/illumos-gate/usr/src/cmd/syseventd/daemons/syseventconfd/ |
H A D | syseventconfd.c | 515 arg_t *arglist; local 517 if ((arglist = sc_malloc(sizeof (arg_t))) == NULL) 519 arglist->arg_args = NULL; 520 arglist->arg_nargs = 0; 521 arglist->arg_alloc = 0; 522 arglist->arg_hint = hint; 523 return (arglist); 528 free_arglist(arg_t *arglist) argument 530 if (arglist->arg_args) { 531 free(arglist 538 add_arg(arg_t *arglist, char *arg) argument [all...] |
H A D | syseventconfd.h | 87 static void free_arglist(arg_t *arglist); 88 static int add_arg(arg_t *arglist, char *arg);
|
/illumos-gate/usr/src/cmd/ldap/ns_ldap/ |
H A D | ldapclient.c | 294 static int credCheck(clientopts_t *arglist); 295 static int adminCredCheck(clientopts_t *arglist); 298 static void dumpargs(clientopts_t *arglist); 299 static int num_args(clientopts_t *arglist); 307 static int client_list(clientopts_t *arglist); 308 static int client_manual(clientopts_t *arglist); 309 static int client_mod(clientopts_t *arglist); 310 static int client_uninit(clientopts_t *arglist); 311 static int client_genProfile(clientopts_t *arglist); 312 static int client_init(clientopts_t *arglist); 648 client_list(clientopts_t *arglist) argument 674 client_uninit(clientopts_t *arglist) argument 777 client_manual(clientopts_t *arglist) argument 1091 client_mod(clientopts_t *arglist) argument 1338 client_genProfile(clientopts_t *arglist) argument 1444 client_init(clientopts_t *arglist) argument 2266 credCheck(clientopts_t *arglist) argument 2399 adminCredCheck(clientopts_t *arglist) argument [all...] |
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/ |
H A D | printfuncs.c | 45 static char arglist[_POSIX_ARG_MAX]; variable 61 p = &arglist[0]; 62 l = (int)sizeof (arglist); 65 errlog(TRACING, "arglist = '%s'", arglist); 72 if (p != &arglist[0]) { 98 (void) fprintf(Bodyfp, "%s);\n", arglist);
|
/illumos-gate/usr/src/cmd/mailwrapper/ |
H A D | mailwrapper.c | 47 struct arglist { struct 54 static void initarg(struct arglist *); 55 static void addarg(struct arglist *, const char *); 58 initarg(struct arglist *al) 67 addarg(struct arglist *al, const char *arg) 91 struct arglist al;
|
/illumos-gate/usr/src/lib/libcmd/common/ |
H A D | expr.c | 179 char** arglist; member in struct:State_s 195 if (!(cp = *state->arglist++)) 203 if (!(cp = *state->arglist++)) 205 if (!(ep = *state->arglist++)) 215 if (!(cp = *state->arglist++)) 225 if (!(np->str = *state->arglist++)) 232 if (cp[1] == 'u' && !strcmp(cp, "quote") && !(cp = *state->arglist++)) 238 if (!(sp = *state->arglist++)) 240 if (!(cp = *state->arglist++)) 245 if (!(cp = *state->arglist [all...] |
/illumos-gate/usr/src/lib/libproc/i386/ |
H A D | Pisadep.c | 295 int32_t arglist[MAXARGS+2]; local 300 arglist[1 + i] = (int32_t)adp->arg_value; 302 arglist[0] = P->status.pr_lwp.pr_reg[R_PC]; 303 if (Pwrite(P, &arglist[0], sizeof (int) * (nargs+1), 314 uint32_t arglist[MAXARGS + 2]; local 318 if (Pread(P, &arglist[0], sizeof (int) * (nargs+1), (uintptr_t)ap) 323 adp->arg_value = arglist[i];
|
/illumos-gate/usr/src/uts/common/pcmcia/cis/ |
H A D | cis.c | 137 va_list arglist; local 147 va_start(arglist, function); 157 csr = va_arg(arglist, csregister_t *); 176 cistpl_callout = va_arg(arglist, cistpl_callout_t *); 177 sp = va_arg(arglist, cs_socket_t *); 186 sp = va_arg(arglist, cs_socket_t *); 196 tp = va_arg(arglist, cistpl_t *); 197 type = va_arg(arglist, uint_t); 198 flags = va_arg(arglist, int); 211 co = va_arg(arglist, cistpl_callout_ [all...] |
/illumos-gate/usr/src/lib/libproc/amd64/ |
H A D | Pisadep.c | 592 int32_t arglist[MAXARGS+2]; local 597 arglist[1 + i] = (int32_t)adp->arg_value; 599 arglist[0] = P->status.pr_lwp.pr_reg[REG_RIP]; 600 if (Pwrite(P, &arglist[0], sizeof (int) * (nargs+1), 604 int64_t arglist[MAXARGS+2]; local 630 arglist[i - 5] = (uint64_t)adp->arg_value; 635 arglist[0] = P->status.pr_lwp.pr_reg[REG_RIP]; 637 if (Pwrite(P, &arglist[0], 651 uint32_t arglist[MAXARGS + 2]; local 655 if (Pread(P, &arglist[ 663 int64_t arglist[MAXARGS+2]; local [all...] |
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/ |
H A D | ilbadm_import.c | 259 char *arglist[1]; member in struct:__anon253 314 ((a->listsz - 1) * sizeof (a->arglist)); 318 a->arglist[i] = currp; 349 rc = ilb_import_cmdline(argcount, a->arglist, IMPORT_FILE);
|
/illumos-gate/usr/src/cmd/format/ |
H A D | startup.h | 103 void do_search(char *arglist[]);
|
H A D | main.c | 84 char **arglist; local 130 arglist = (char **)NULL; 136 arglist = &argv[i]; 141 do_search(arglist);
|
/illumos-gate/usr/src/uts/intel/io/pciex/ |
H A D | pcie_acpi.c | 140 ACPI_OBJECT_LIST arglist; local 148 arglist.Count = 4; 149 arglist.Pointer = args; 187 status = AcpiEvaluateObjectTyped(osc_hdl, NULL, &arglist, &rb,
|
/illumos-gate/usr/src/uts/common/pcmcia/cs/ |
H A D | cs.c | 541 va_list arglist; local 562 va_start(arglist, function); 576 cisr = va_arg(arglist, cisregister_t *); 606 socp = va_arg(arglist, cs_socket_t *); 607 offp = va_arg(arglist, uint32_t *); 608 hp = va_arg(arglist, acc_handle_t *); 610 va_arg(arglist, uint32_t)); 613 chp = va_arg(arglist, client_handle_t *), 615 va_arg(arglist, client_reg_t *)); 619 va_arg(arglist, client_handle_ [all...] |
/illumos-gate/usr/src/lib/libshell/common/sh/ |
H A D | suid_exec.c | 87 static char **arglist; variable 106 arglist = argv; 446 arglist[0] = (char*)tmpname; 466 execv(tmpname,arglist);
|
/illumos-gate/usr/src/cmd/sh/ |
H A D | msg.c | 66 const char arglist[] = "arg list too long"; variable
|
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | iexpr.c | 117 iexpr_hash(np->u.func.arglist)); 206 return (iexpr_cmp(np1->u.func.arglist, np2->u.func.arglist));
|
/illumos-gate/usr/src/cmd/backup/restore/ |
H A D | restore.h | 222 struct arglist { struct 234 extern int mkentry(char *, ino_t, struct arglist *); 235 extern int expand(char *, int, struct arglist *);
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | ppmvar.h | 389 #define PPMD(level, arglist) { \ 391 pm_log arglist; \ 398 #define PPMD(level, arglist)
|
/illumos-gate/usr/src/uts/i86pc/os/cpupm/ |
H A D | cpupm_throttle.c | 67 #define CTDEBUG(arglist) if (cpupm_throttle_debug) printf arglist; 69 #define CTDEBUG(arglist)
|
H A D | pwrnow.c | 79 #define PWRNOW_DEBUG(arglist) if (pwrnow_debug) printf arglist; 81 #define PWRNOW_DEBUG(arglist)
|
H A D | speedstep.c | 83 #define ESSDEBUG(arglist) if (ess_debug) printf arglist; 85 #define ESSDEBUG(arglist)
|