HomeSort by relevance Sort by last modified time
    Searched defs:exec (Results 1 - 25 of 29) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/sh/
sh_policy.c 152 execattr_t *exec; local
157 if ((exec = getexecuser(username, KV_COMMAND,
168 if ((exec->attr != NULL) && (exec->attr->length != 0)) {
172 free_execattr(exec);
192 free_execattr(exec);
  /onnv/onnv-gate/usr/src/cmd/sgs/include/
a.out.h 31 struct exec { struct
51 * Version of struct exec intended to allow LP64 code to
  /onnv/onnv-gate/usr/src/psm/stand/boot/common/
stripalign.c 49 struct exec exec; local
92 bzero(&exec, sizeof (exec));
93 exec.a_dynamic = 0;
94 exec.a_toolversion = 1;
95 exec.a_machtype = machine[elfhdr.e_machine];
96 exec.a_magic = OMAGIC;
97 exec.a_text = dphdr.p_vaddr - phdr.p_vaddr;
98 exec.a_data = dphdr.p_filesz
    [all...]
  /onnv/onnv-gate/usr/src/cmd/gcore/
gcore.c 53 char exec[PATH_MAX]; local
82 if (Pexecname(P, exec, sizeof (exec)) == NULL ||
83 exec[0] != '/' || (s = strrchr(exec, '/')) == NULL)
87 len = snprintf(fname, size, "%s", &exec[1]);
  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/sys/
exec.h 33 * format of the exec header
36 struct exec { struct
  /onnv/onnv-gate/usr/src/lib/storage/liba5k/common/hdrs/
exec.h 27 * SPARCstorage Array exec.h file
50 * format of the exec header
53 struct exec { struct
  /onnv/onnv-gate/usr/src/uts/common/sys/
exechdr.h 39 * format of the exec header
42 struct exec { struct
  /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
SysCommand.java 49 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(): null process")
121 public void exec(String cmd, String locale) throws Exception method in class:SysCommand
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/nss/
getexecattr.c 96 execstr_t *exec = (execstr_t *)ent; local
116 exec->name = _strtok_escape(buffer, sep, &last);
117 exec->policy = _strtok_escape(NULL, sep, &last);
118 exec->type = _strtok_escape(NULL, sep, &last);
119 exec->res1 = _strtok_escape(NULL, sep, &last);
120 exec->res2 = _strtok_escape(NULL, sep, &last);
121 exec->id = _strtok_escape(NULL, sep, &last);
122 exec->attr = _strtok_escape(NULL, sep, &last);
123 exec->next = NULL;
284 execstr_t *exec = (execstr_t *)((argp->buf.result)) local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsecdb/common/
getexecattr.c 60 execstr_t exec; local
63 tmp = _getexecattr(&exec, buf, NSS_BUFLEN_EXECATTR, &err);
77 execstr_t exec; local
81 (void) memset(&exec, 0, sizeof (execstr_t));
109 &exec,
176 match_execattr(execattr_t *exec, const char *profname, const char *type,
181 for (execp = exec; execp != NULL; execp = execp->next) {
208 free_execattr(execattr_t *exec)
210 if (exec != NULL) {
211 free(exec->name)
239 execattr_t *exec; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/pfexec/
pfexec.c 153 /* Trick exec into thinking we're not suid */
220 execattr_t *exec; local
248 * Get the exec attrs: uid, gid, euid and egid
250 if ((exec = getexecuser(pwent->pw_name,
257 if ((value = kva_match(exec->attr, EXECATTR_UID_KW)) != NULL) {
262 if ((value = kva_match(exec->attr, EXECATTR_GID_KW)) != NULL) {
267 if ((value = kva_match(exec->attr, EXECATTR_EUID_KW)) != NULL) {
270 if ((value = kva_match(exec->attr, EXECATTR_EGID_KW)) != NULL) {
273 if ((value = kva_match(exec->attr, EXECATTR_LPRIV_KW)) != NULL) {
277 if ((value = kva_match(exec->attr, EXECATTR_IPRIV_KW)) != NULL)
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
imgact_aout.h 34 * from: @(#)exec.h 8.1 (Berkeley) 6/11/93
98 N_GETMAGIC_NET(ex) == ZMAGIC) ? 0 : sizeof(struct exec))
121 struct exec struct
  /onnv/onnv-gate/usr/src/lib/brand/lx/librtld_db/common/
lx_librtld_db.c 475 rd_loadobj_t exec; local
500 bzero(&exec, sizeof (exec));
501 exec.rl_base = lx_rd->lr_exec;
502 exec.rl_dynamic = map.lxm_ld;
503 exec.rl_nameaddr = lx_ldb_getauxval32(php, AT_SUN_EXECNAME);
504 exec.rl_lmident = LM_ID_BASE;
506 exec.rl_bend = exec.rl_base +
507 lx_elf_props32(php, lx_rd->lr_exec, &exec.rl_data_base)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/profiles/
profiles.c 122 execattr_t *exec; local
147 exec = getexecuser(username, KV_COMMAND,
149 print_profs_long(exec);
150 free_execattr(exec);
173 execattr_t *exec = (execattr_t *)NULL; local
178 exec = getexecuser(user->name, KV_COMMAND, NULL,
180 if (exec == NULL) {
196 print_profs_long(exec);
197 free_execattr(exec);
233 print_profs_long(execattr_t *exec)
    [all...]
  /onnv/onnv-gate/usr/src/lib/nsswitch/ldap/common/
getexecattr.c 84 _print_execstr(execstr_t *exec)
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->res2 != (char *)NULL)
125 execstr_t *exec = (execstr_t *)NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/nsswitch/nis/common/
getexecattr.c 58 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->id && (strcmp(id, exec->id) != 0)))
97 execstr_t exec; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libpctx/common/
libpctx.c 59 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;
335 * exec causes termination of all but the exec-ing lwp,
338 if (pctx->exec != (pctx_sysc_execfn_t *)default_int ||
672 * its child releases it via an exec.
720 * The exec failed completely.
722 * at exec entranc
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/rtld/common/
a.out.c 172 struct exec *exec = (struct exec *)addr; local
174 if (size < sizeof (exec) || (exec->a_machtype != M_SPARC) ||
175 (N_BADMAG(*exec))) {
560 struct exec *exec = (struct exec *)caddr; local
564 nl = (struct nlist *)&caddr[N_SYMOFF(*exec)];
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ptools/ppriv/
ppriv.c 58 static boolean_t exec = B_FALSE; variable
98 exec = B_TRUE;
125 if ((argc < 1 && !list) || Doff && Don || list && (set || exec) ||
126 (mac_aware && !exec))
139 if (exec) {
  /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/
nodes.h 34 typedef struct exec_node EXEC;
45 EXEC *exec; /* Index into EXEC table */ member in struct:alert_node
59 int pid; /* process-id of exec */
63 short type; /* type of exec, EX_... */
75 #define EX_INTERF 1 /* exec interface for ex.printer */
76 #define EX_SLOWF 2 /* exec slow filter for ex.request */
77 #define EX_ALERT 3 /* exec alert for ex.printer */
78 #define EX_FALERT 4 /* exec alert for ex.form *
122 EXEC *exec; member in struct:pstat_node
176 EXEC *exec; \/* Pointer to running filter or notify *\/ member in struct:rstat_node
    [all...]
exec.c 73 static int Fork1 ( EXEC * );
267 ** exec() - FORK AND EXEC CHILD PROCESS
272 exec(int type, ...) function
301 EXEC *ep;
319 syslog(LOG_DEBUG, "exec(%s)", _exec_name(type));
330 ep = printer->exec;
354 ep = request->exec;
363 ep = request->exec;
372 ep = printer->alert->exec;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/luxadm/
fcalupdate.c 45 #include <sys/exec.h>
130 static struct exec exec; variable in typeref:struct:exec
730 if (read(ffd, &exec, sizeof (exec)) != sizeof (exec)) {
731 perror(MSGSTR(4526, "read exec"));
735 if (exec.a_trsize || exec.a_drsize) {
741 if (exec.a_data || exec.a_bss)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkginfo/
pkginfo.c 122 short exec; member in struct:cfstat
537 if (dp->exec)
538 (void) printf(gettext("%20d executables\n"), dp->exec);
791 dp->exec++;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/inetconv/
inetconv.c 95 char *exec; member in struct:inetconfent
570 free(iconf->exec);
613 /* Combine args and server name to construct exec and args fields */
615 iconf->exec = safe_strdup(iconf->server_program);
622 iconf->exec = safe_malloc(len);
623 (void) strlcpy(iconf->exec, iconf->server_program, len);
627 if ((endp = strrchr(iconf->exec, '/')) == NULL)
628 endp = iconf->exec;
635 (void) strlcat(iconf->exec, " ", len);
636 (void) strlcat(iconf->exec, cp, len)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
exec.c 52 #include <sys/exec.h>
95 * exec() - wrapper around exece providing NULL environment pointer
98 exec(const char *fname, const char **argp) function
123 long execsz; /* temporary count of exec size */
143 * exec() is not supported for the /proc agent lwp.
171 * process as it exec()s the new binary.
178 * Inform /proc that an exec() has started.
264 * Specific exec handlers, or policies determined via
271 DTRACE_PROC1(exec, char *, args.pathname);
277 /* If necessary, brand this process before we start the exec. *
    [all...]

Completed in 3909 milliseconds

1 2