Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 159) sorted by path

1234567

/illumos-gate/usr/src/boot/i386/gptzfsboot/
H A Dzfsboot.c370 struct exec ex; in load() member
387 if (N_GETMAGIC(hdr.ex) == ZMAGIC) { in load()
397 addr = hdr.ex.a_entry & 0xffffff; in load()
400 if (read(fd, p, hdr.ex.a_text) != hdr.ex.a_text) { in load()
404 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
405 if (read(fd, p, hdr.ex.a_data) != hdr.ex.a_data) { in load()
409 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
411 memcpy(p, &hdr.ex.a_syms, sizeof (hdr.ex.a_syms)); in load()
412 p += sizeof (hdr.ex.a_syms); in load()
413 if (hdr.ex.a_syms) { in load()
[all …]
/illumos-gate/usr/src/boot/i386/isoboot/
H A Disoboot.c344 struct exec ex; in load() member
367 if (N_GETMAGIC(hdr.ex) == ZMAGIC) in load()
376 addr = hdr.ex.a_entry & 0xffffff; in load()
379 if (xfsread(ino, p, hdr.ex.a_text)) in load()
381 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
382 if (xfsread(ino, p, hdr.ex.a_data)) in load()
384 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
386 memcpy(p, &hdr.ex.a_syms, sizeof (hdr.ex.a_syms)); in load()
387 p += sizeof (hdr.ex.a_syms); in load()
388 if (hdr.ex.a_syms) { in load()
[all …]
/illumos-gate/usr/src/boot/sys/sys/
H A Dimgact_aout.h36 #define N_GETMAGIC(ex) \ argument
37 ( le32toh((ex).a_midmag) & 0xffff )
38 #define N_GETMID(ex) \ argument
39 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETMID_NET(ex) : \
40 ((ex).a_midmag >> 16) & 0x03ff )
41 #define N_GETFLAG(ex) \ argument
42 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETFLAG_NET(ex) : \
43 ((ex).a_midmag >> 26) & 0x3f )
44 #define N_SETMAGIC(ex,mag,mid,flag) \ argument
45 ( (ex).a_midmag = htole32((((flag) & 0x3f) <<26) | \
[all …]
/illumos-gate/usr/src/cmd/abi/appcert/etc/
H A Detc.warn.in43 # you have to list all likely symbolic links in the check (see ptrace ex.)
/illumos-gate/usr/src/cmd/awk/
H A Drun.c200 goto ex; in program()
218 ex: in program()
/illumos-gate/usr/src/cmd/bnu/
H A Duupick169 ex=`expr "$cmd $dir" : '!\(.*\)'`
172 sh -c "$ex"
/illumos-gate/usr/src/cmd/cron/
H A Dcron.c313 static int ex(struct event *e);
581 if (ex(next_event) || reset_needed) { in main()
2149 ex(struct event *e) in ex() function
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c1075 exp(struct blk *base, struct blk *ex) in exp() argument
1082 e = copy(ex, length(ex)); in exp()
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dcheck.c578 record_iterators(struct node *np, struct lut *ex) in record_iterators() argument
581 return (ex); in record_iterators()
585 ex = record_iterators(np->u.arrow.lhs, ex); in record_iterators()
586 ex = record_iterators(np->u.arrow.rhs, ex); in record_iterators()
590 ex = record_iterators(np->u.expr.left, ex); in record_iterators()
591 ex = record_iterators(np->u.expr.right, ex); in record_iterators()
595 ex = record_iterators(np->u.event.epname, ex); in record_iterators()
600 ex = lut_add(ex, (void *) np->u.name.child->u.name.s, in record_iterators()
602 ex = record_iterators(np->u.name.next, ex); in record_iterators()
611 return (ex); in record_iterators()
[all …]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Deval.c51 static struct node *eval_dup(struct node *np, struct lut *ex,
64 begins_with(struct node *lhs, struct node *rhs, struct lut *ex) in begins_with() argument
85 iterinfop = lut_lookup(ex, (void *)lhs->u.name.child->u.name.s, in begins_with()
98 iterinfop = lut_lookup(ex, (void *)rhs->u.name.child->u.name.s, in begins_with()
111 return (begins_with(lhs->u.name.next, rhs->u.name.next, ex)); in begins_with()
119 eval_getname(struct node *funcnp, struct lut *ex, struct node *events[], in eval_getname() argument
134 if (eval_expr(np, ex, events, globals, croot, arrowp, try, in eval_getname()
153 if (eval_expr(nodep, ex, events, globals, croot, in eval_getname()
158 nodep = eval_dup(nodep, ex, events); in eval_getname()
166 eval_cat(struct node *np, struct lut *ex, struct node *events[], in eval_cat() argument
[all …]
H A Deval.h50 int eval_potential(struct node *np, struct lut *ex, struct node *events[],
52 int eval_expr(struct node *np, struct lut *ex, struct node *events[],
H A Ditree.c59 struct lut *ex; /* dictionary of explicit iterators */ member
93 struct node *toev, struct lut *ex);
98 struct node *fromevent, struct node *toevent, struct lut *ex);
182 arrowp = itree_add_arrow(G.arrownp, G.fromnp, G.tonp, infop->ex); in generate()
716 if ((iterinfop = lut_lookup(infop->ex, in hmatch_event()
726 infop->ex = lut_add(infop->ex, (void *)iters, in hmatch_event()
993 if ((iterinfop = lut_lookup(infop->ex, in vmatch_event()
996 infop->ex = lut_add(infop->ex, in vmatch_event()
1410 Ninfo.ex = NULL; in itree_create()
1416 if (Ninfo.ex) { in itree_create()
[all …]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_parse.c1783 struct exportnode *ex = NULL; in do_mapent_hosts() local
1894 xdr_exports, (caddr_t)&ex, timeout)) { in do_mapent_hosts()
1919 if (ex == NULL) { in do_mapent_hosts()
1927 exlist = ex; in do_mapent_hosts()
1929 for (; ex; ex = exnext) { in do_mapent_hosts()
1930 exnext = ex->ex_next; in do_mapent_hosts()
1931 exlen = strlen(ex->ex_dir); in do_mapent_hosts()
1936 duplicate = (strcmp(ex->ex_dir, (*texp)->ex_dir) == 0); in do_mapent_hosts()
1939 freeex_ent(ex); in do_mapent_hosts()
1944 ex->ex_next = *texp; in do_mapent_hosts()
[all …]
/illumos-gate/usr/src/cmd/fs.d/nfs/dfshares/
H A Ddfshares.c100 struct exportnode *ex = NULL; in pr_exports() local
117 (caddr_t)&ex, tout); in pr_exports()
124 if (ex == NULL) { in pr_exports()
135 while (ex) { in pr_exports()
137 host, ex->ex_dir, host, " -", " -"); in pr_exports()
138 ex = ex->ex_next; in pr_exports()
140 free_ex(ex); in pr_exports()
145 free_ex(struct exportnode *ex) in free_ex() argument
150 while (ex) { in free_ex()
151 free(ex->ex_dir); in free_ex()
[all …]
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Dexportlist.c168 freeexports(struct exportnode *ex) in freeexports() argument
173 while (ex) { in freeexports()
174 groups = ex->ex_groups; in freeexports()
181 tmpex = ex->ex_next; in freeexports()
182 free(ex->ex_dir); in freeexports()
183 free(ex); in freeexports()
184 ex = tmpex; in freeexports()
/illumos-gate/usr/src/cmd/fs.d/nfs/showmount/
H A Dshowmount.c250 struct exportnode *ex = NULL; in printex() local
261 (caddr_t)&ex, tout); in printex()
267 if (ex == NULL) { in printex()
273 for (e = ex; e != NULL; e = e->ex_next) { in printex()
278 while (ex) { in printex()
279 printf("%-*s ", max, ex->ex_dir); in printex()
280 gr = ex->ex_groups; in printex()
292 ex = ex->ex_next; in printex()
/illumos-gate/usr/src/cmd/look/
H A Dwords8119 ex
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Ddowait.c102 pps = ep->ex.printer; in dowait()
329 prs = ep->ex.request; in dowait()
330 ep->ex.request = 0; in dowait()
433 prs = ep->ex.request; in dowait()
434 ep->ex.request = 0; in dowait()
452 pas = ep->ex.printer->alert; in dowait()
456 pas = ep->ex.form->alert; in dowait()
460 pas = ep->ex.pwheel->alert; in dowait()
474 if (exec(ep->type, ep->ex.form) == 0) { in dowait()
H A Dfncs.c129 new_exec(int type, void *ex) in new_exec() argument
139 result->ex.printer = ex; in new_exec()
142 result->ex.form = ex; in new_exec()
145 result->ex.pwheel = ex; in new_exec()
H A Dlog.c179 ep->ex.printer->printer->name, in execlog()
180 ep->ex.printer->request->secure->req_id); in execlog()
184 ep->ex.request->secure->req_id); in execlog()
188 ep->ex.printer->printer->name); in execlog()
192 ep->ex.printer->printer->name); in execlog()
196 ep->ex.form->form->name); in execlog()
200 ep->ex.form->form->name); in execlog()
204 ep->ex.pwheel->pwheel->name); in execlog()
208 ep->ex.request->secure->req_id); in execlog()
H A Dlpsched.h341 extern EXEC *new_exec(int type, void *ex);
H A Dnodes.h64 union ex union
70 } ex; member
H A Dschedule.c518 (prs->exec = ep)->ex.request = prs; in ev_slowf()
520 ep->ex.request = 0; in ev_slowf()
572 (prs->exec = ep)->ex.request = prs; in ev_notify()
574 ep->ex.request = 0; in ev_notify()
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DSystemSolver.java637 } catch (Exception ex) { in solve()
639 throw ex; in solve()
/illumos-gate/usr/src/cmd/psrinfo/
H A Dpsrinfo.c558 int ex = 0; in main() local
784 ex = 2; in main()
814 return (ex); in main()

1234567