Searched defs:exec (Results 1 - 25 of 37) sorted by relevance

12

/illumos-gate/usr/src/cmd/sgs/include/
H A Da.out.h31 struct exec { struct
51 * Version of struct exec intended to allow LP64 code to
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dexec.h33 * format of the exec header
36 struct exec { struct
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DSysCommand.java49 syscmd.exec(cmd);
62 public void exec(String cmd) throws Exception method in class:SysCommand
66 "SysCommand.exec(): null command");
71 p = Runtime.getRuntime().exec(cmd);
74 "SysCommand.exec(): null process");
83 public void exec(String[] cmd) throws Exception method in class:SysCommand
87 "SysCommand.exec(): null command");
104 p = Runtime.getRuntime().exec(newcmd);
107 p = Runtime.getRuntime().exec(cmd);
111 "SysCommand.exec()
121 public void exec(String cmd, String locale) throws Exception method in class:SysCommand
[all...]
/illumos-gate/usr/src/lib/storage/liba5k/common/hdrs/
H A Dexec.h27 * SPARCstorage Array exec.h file
50 * format of the exec header
53 struct exec { struct
/illumos-gate/usr/src/test/zfs-tests/cmd/file_write/
H A Dfile_write.c213 char *exec = (char *)getexecname(); local
215 if (exec != NULL)
216 exec = strdup(exec);
217 if (exec != NULL)
218 base = basename(exec);
226 if (exec) {
227 free(exec);
/illumos-gate/usr/src/uts/common/sys/
H A Dexechdr.h39 * format of the exec header
42 struct exec { struct
/illumos-gate/usr/src/cmd/profiles/
H A Dprofiles.c130 execattr_t *exec; local
148 exec = getexecuser(username, KV_COMMAND, NULL,
150 if (exec != NULL) {
151 print_profs_long(exec);
152 free_execattr(exec);
198 print_profs_long(execattr_t *exec) argument
207 for (curprofile = ""; exec != NULL; exec = exec->next) {
209 if (strcmp(curprofile, exec
[all...]
/illumos-gate/usr/src/cmd/gcore/
H A Dgcore.c51 char exec[PATH_MAX]; local
80 if (Pexecname(P, exec, sizeof (exec)) == NULL ||
81 exec[0] != '/' || (s = strrchr(exec, '/')) == NULL)
85 len = snprintf(fname, size, "%s", &exec[1]);
/illumos-gate/usr/src/boot/sys/boot/userboot/
H A Duserboot.h167 void (*exec)(void *arg, uint64_t pc); member in struct:loader_callbacks
/illumos-gate/usr/src/lib/nsswitch/nis/common/
H A Dgetexecattr.c58 execstr_t *exec = (execstr_t *)(argp->returnval); local
73 (strcmp(policy, exec->policy) != 0)) ||
74 (type && (strcmp(type, exec->type) != 0))) {
77 } else if ((policy && exec->policy &&
78 (strcmp(policy, exec->policy) != 0)) ||
79 (name && exec->name && (strcmp(name, exec->name) != 0)) ||
80 (type && exec->type && (strcmp(type, exec->type) != 0)) ||
81 (id && exec
97 execstr_t exec; local
[all...]
/illumos-gate/usr/src/lib/libsecdb/common/
H A Dgetexecattr.c59 execstr_t exec; local
62 tmp = _getexecattr(&exec, buf, NSS_BUFLEN_EXECATTR, &err);
76 execstr_t exec; local
80 (void) memset(&exec, 0, sizeof (execstr_t));
108 &exec,
175 match_execattr(execattr_t *exec, const char *profname, const char *type, argument
180 for (execp = exec; execp != NULL; execp = execp->next) {
207 free_execattr(execattr_t *exec) argument
209 if (exec != NULL) {
210 free(exec
237 execattr_t *exec; local
288 get_tail(execattr_t *exec) argument
337 print_execattr(execattr_t *exec) argument
[all...]
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetexecattr.c99 execstr_t *exec = (execstr_t *)ent; local
119 exec->name = _strtok_escape(buffer, sep, &last);
120 exec->policy = _strtok_escape(NULL, sep, &last);
121 exec->type = _strtok_escape(NULL, sep, &last);
122 exec->res1 = _strtok_escape(NULL, sep, &last);
123 exec->res2 = _strtok_escape(NULL, sep, &last);
124 exec->id = _strtok_escape(NULL, sep, &last);
125 exec->attr = _strtok_escape(NULL, sep, &last);
126 exec->next = NULL;
288 execstr_t *exec local
371 _free_execstr(execstr_t *exec) argument
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dimgact_aout.h34 * from: @(#)exec.h 8.1 (Berkeley) 6/11/93
98 N_GETMAGIC_NET(ex) == ZMAGIC) ? 0 : sizeof(struct exec))
121 struct exec struct
/illumos-gate/usr/src/boot/sys/sys/
H A Dimgact_aout.h29 * from: @(#)exec.h 8.1 (Berkeley) 6/11/93
89 N_GETMAGIC_NET(ex) == ZMAGIC) ? 0 : sizeof(struct exec))
112 struct exec { struct
/illumos-gate/usr/src/tools/btxld/
H A Dimgact_aout.h29 * from: @(#)exec.h 8.1 (Berkeley) 6/11/93
89 N_GETMAGIC_NET(ex) == ZMAGIC) ? 0 : sizeof(struct exec))
112 struct exec { struct
/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dgetexecattr.c84 _print_execstr(execstr_t *exec) argument
87 (void) fprintf(stdout, " exec-name: [%s]\n", exec->name);
88 if (exec->policy != (char *)NULL) {
89 (void) fprintf(stdout, " policy: [%s]\n", exec->policy);
91 if (exec->type != (char *)NULL) {
92 (void) fprintf(stdout, " type: [%s]\n", exec->type);
94 if (exec->res1 != (char *)NULL) {
95 (void) fprintf(stdout, " res1: [%s]\n", exec->res1);
97 if (exec
125 execstr_t *exec = (execstr_t *)NULL; local
[all...]
/illumos-gate/usr/src/lib/libpctx/common/
H A Dlibpctx.c57 pctx_sysc_execfn_t *exec; member in struct:__pctx
264 pctx->exec = (pctx_sysc_execfn_t *)
303 if (pctx->exec == NULL)
304 pctx->exec = (pctx_sysc_execfn_t *)default_int;
331 * exec causes termination of all but the exec-ing lwp,
334 if (pctx->exec != (pctx_sysc_execfn_t *)default_int ||
668 * its child releases it via an exec.
714 * The exec failed completely.
716 * at exec entranc
[all...]
/illumos-gate/usr/src/cmd/pfexecd/
H A Dpfexecd.c299 execattr_t *exec; local
307 exec = getexecprof("Forced Privilege", KV_COMMAND, pap->pfa_path,
310 if (exec == NULL && removeisapath(pap->pfa_path)) {
311 exec = getexecprof("Forced Privilege", KV_COMMAND,
315 if (exec == NULL) {
320 if ((value = kva_match(exec->attr, EXECATTR_IPRIV_KW)) == NULL ||
322 free_execattr(exec);
330 free_execattr(exec);
357 execattr_t *exec = NULL; local
383 exec
[all...]
/illumos-gate/usr/src/cmd/ptools/ppriv/
H A Dppriv.c62 static boolean_t exec = B_FALSE; variable
107 exec = B_TRUE;
134 if ((argc < 1 && !list) || Doff && Don || list && (set || exec) ||
135 (mac_aware && !exec))
148 if (exec) {
/illumos-gate/usr/src/lib/efcode/engine/
H A Dpackage.c388 open_instance_chain(fcode_env_t *env, device_t *phandle, int exec) argument
394 parent = open_instance_chain(env, phandle->parent, exec);
399 close_instance_chain(fcode_env_t *env, instance_t *ihandle, int exec) argument
405 close_instance_chain(env, parent, exec);
875 check_my_self(env, "exec-parent-method");
882 check_my_self(env, "exec-parent-method");
890 debug_msg(DEBUG_FIND_FCODE, "exec-parent-method: '%s'/%x"
895 debug_msg(DEBUG_FIND_FCODE, "exec-parent-method: '%s'"
1077 FORTH(0, "exec-parent-method", exec_parent_method);
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_proc.c73 * and handles exec and fork (by always following the parent). The control
328 * attaching to a process or after a victim process completes an exec(2).
331 dt_proc_attach(dt_proc_t *dpr, int exec) argument
339 if (exec) {
341 return; /* exec failed: nothing needs to be done */
499 * We must trace exit from exec() system calls so that if the exec is
838 "failed to control pid %d: process exec'd "
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Da.out.c170 struct exec *exec = (struct exec *)addr; local
172 if (size < sizeof (exec) || (exec->a_machtype != M_SPARC) ||
173 (N_BADMAG(*exec))) {
560 struct exec *exec = (struct exec *)caddr; local
564 nl = (struct nlist *)&caddr[N_SYMOFF(*exec)];
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/pkginfo/
H A Dpkginfo.c122 short exec; member in struct:cfstat
519 if (dp->exec)
520 (void) printf(gettext("%20d executables\n"), dp->exec);
742 dp->exec++;
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dexec.c266 ** exec() - FORK AND EXEC CHILD PROCESS
271 exec(int type, ...) function
318 syslog(LOG_DEBUG, "exec(%s)", _exec_name(type));
329 ep = printer->exec;
353 ep = request->exec;
362 ep = request->exec;
371 ep = printer->alert->exec;
376 ep = pwheel->alert->exec;
387 ep = form->alert->exec;
1194 note("exec(
[all...]
H A Dnodes.h43 EXEC *exec; /* Index into EXEC table */ member in struct:alert_node
57 int pid; /* process-id of exec */
61 short type; /* type of exec, EX_... */
73 #define EX_INTERF 1 /* exec interface for ex.printer */
74 #define EX_SLOWF 2 /* exec slow filter for ex.request */
75 #define EX_ALERT 3 /* exec alert for ex.printer */
76 #define EX_FALERT 4 /* exec alert for ex.form */
77 #define EX_PALERT 5 /* exec alert for ex.pwheel */
78 #define EX_NOTIFY 6 /* exec notification for ex.request */
79 #define EX_FAULT_MESSAGE 7 /* exec faul
120 EXEC *exec; member in struct:pstat_node
174 EXEC *exec; /* Pointer to running filter or notify */ member in struct:rstat_node
[all...]

Completed in 77 milliseconds

12