/illumos-gate/usr/src/test/util-tests/tests/awk/tests/ |
H A D | T.expr | 70 try { print ($1 == 1) ? "yes" : "no" } 80 try $1 > 0 90 try { print NF } 97 try { print NF, $NF } 104 try { i=1; print ($++$++i) } 110 try { x = $1++++$2; print $1, x } 114 try $1 !$2 121 try { print ($1~/abc/ !$2) } 127 try { print !$1 + $2 } 138 try { print ($1 == $2) } [all …]
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | mvcur.c | 128 struct Sequence* try = &seqB; local 149 zero_seq(try); 150 add_op(try, parm_cursor, dist, 0); 151 Make_seq_best(best, try); 154 zero_seq(try); 155 add_op(try, one_step, dist, 0); 156 Make_seq_best(best, try); 184 struct Sequence seqA, seqB, *best, *try; local 193 try = &seqB; 255 zero_seq(try); [all …]
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | mvcur.c | 127 struct Sequence *try = &seqB; in row() local 148 zero_seq(try); in row() 149 add_op(try, parm_cursor, dist, 0); in row() 150 Make_seq_best(best, try); in row() 153 zero_seq(try); in row() 154 add_op(try, one_step, dist, 0); in row() 155 Make_seq_best(best, try); in row() 181 struct Sequence seqA, seqB, *best, *try; in simp_col() local 190 try = &seqB; in simp_col() 254 zero_seq(try); in simp_col() [all …]
|
/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | t-match.c | 17 #define try(str, pat, want) \ macro 33 try("foo", "foo", true); 34 try("foo", "bar", false); 35 try("foo[bar", "foo[bar", true); 36 try("foo[bar]", "foo[bar]", false); 37 try("foob", "foo[bar]", true); 38 try("a-b", "a[]-]b", true); 39 try("abcde", "a*e", true); 40 try("[", "[[]", true); 41 try("c", "[a-z]", true); [all …]
|
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | startd.c | 319 uint_t try, msecs; in startd_alloc_retry() local 327 for (try = 0; p == NULL && try < ALLOC_RETRY; ++try) { in startd_alloc_retry() 342 uint_t try, msecs; in safe_realloc() local 350 for (try = 0; errno == EAGAIN && try < ALLOC_RETRY; ++try) { in safe_realloc() 365 uint_t try, msecs; in safe_strdup() local 374 for (try = 0; in safe_strdup() 375 (errno == EAGAIN || errno == ENOMEM) && try < ALLOC_RETRY; in safe_strdup() 376 ++try) { in safe_strdup() 404 uint_t try, msecs; in startd_list_pool_create() local 412 for (try = 0; uu_error() == UU_ERROR_NO_MEMORY && try < ALLOC_RETRY; in startd_list_pool_create() [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | eval.c | 121 struct config *croot, struct arrow *arrowp, int try, int *dupedp) in eval_getname() argument 134 if (eval_expr(np, ex, events, globals, croot, arrowp, try, in eval_getname() 152 if (try) { in eval_getname() 154 arrowp, try, &val) && val.t == NODEPTR) in eval_getname() 168 int try, struct evalue *valuep) in eval_cat() argument 177 arrowp, try, &lval)) in eval_cat() 180 arrowp, try, &rval)) in eval_cat() 196 arrowp, try, valuep)) in eval_cat() 213 struct config *croot, struct arrow *arrowp, int try, struct evalue *valuep) in eval_func() argument 231 croot, arrowp, try, &duped_lhs); in eval_func() [all …]
|
/illumos-gate/usr/src/cmd/factor/ |
H A D | factor.c | 50 void try(double); 88 try(2.0); in main() 89 try(3.0); in main() 90 try(5.0); in main() 91 try(7.0); in main() 115 try(double arg) in try() function
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | mktemp.c | 108 int try; in libc_mktemps() local 196 try = previous_try; in libc_mktemps() 199 uint64_t num = ((uint64_t)pid << tryshift) + (uint64_t)try; in libc_mktemps() 212 previous_try = try + 1; in libc_mktemps() 218 if (++try == max_try) in libc_mktemps() 219 try = 0; in libc_mktemps() 220 if (try == previous_try) in libc_mktemps()
|
/illumos-gate/usr/src/boot/common/ |
H A D | boot.c | 38 static char *getbootfile(int try); 39 static int loadakernel(int try, int argc, char *argv[]); 251 getbootfile(int try) in getbootfile() argument 267 while ((try > 0) && (spec != NULL)) { in getbootfile() 271 try--; in getbootfile() 407 loadakernel(int try, int argc, char *argv[]) in loadakernel() argument 411 for (try = 0; (cp = getbootfile(try)) != NULL; try++) in loadakernel()
|
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_alloc.c | 43 uint_t try, lim, msecs; in fmd_alloc() local 51 for (try = 0; data == NULL && try < lim; try++) { in fmd_alloc()
|
/illumos-gate/usr/src/cmd/sendmail/src/ |
H A D | sfsasl.c | 718 int r, rfd, wfd, try, ssl_err; local 723 try = 99; 747 try = tls_retry(so->con, rfd, wfd, tlsstart, 751 if (try > 0) 788 if (try == 0 && save_errno == SM_ERR_TIMEOUT) 798 ERR_error_string(ERR_get_error(), NULL), try, 803 err, r, errno, try, ssl_err); 830 int r, rfd, wfd, try, ssl_err; local 835 try = 99; 858 try = tls_retry(so->con, rfd, wfd, tlsstart, [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | lcp.c | 1196 lcp_options try; /* options to request next time */ local 1201 try = *go; 1216 try.neg = 0; \ 1272 try.neg = 0; \ 1286 try.mru = cishort; 1295 try.asyncmap = go->asyncmap | cilong; 1324 try.neg_chap = 0; 1325 try.neg_mschap = 0; 1326 try.neg_mschapv2 = 0; 1333 try.neg_chap = 0; [all …]
|
H A D | ipcp.c | 716 ipcp_options try; /* options to request next time */ local 719 try = *go; 769 try.ouraddr = ciaddr1; 772 try.hisaddr = ciaddr2; 787 try.old_vj = 0; 789 try.maxslotindex = cimaxslotindex; 791 try.cflag = 0; 793 try.neg_vj = 0; 797 try.old_vj = 1; 798 try.vj_protocol = cishort; [all …]
|
H A D | ccp.c | 775 ccp_options try; /* options to ask for next time */ local 778 try = *go; 791 try.deflate_correct = 0; 793 try.deflate_size = DEFLATE_SIZE(p[2]); 812 try.deflate_draft = 0; 814 try.deflate_size = DEFLATE_SIZE(p[2]); 819 if (!try.deflate_correct && !try.deflate_draft) 820 try.deflate = 0; 831 try.bsd_compress = 0; 833 try.bsd_bits = BSD_NBITS(p[2]); [all …]
|
H A D | ipv6cp.c | 618 ipv6cp_options try; /* options to request next time */ local 621 try = *go; 661 try.ourid = ifaceid; 670 try.vj_protocol = cishort; 672 try.neg_vj = 0; 679 try.neg_vj = 0; 707 try.neg_ifaceid = 1; 713 try.ourid = ifaceid; 729 *go = try; 752 ipv6cp_options try; /* options to request next time */ local [all …]
|
/illumos-gate/usr/src/lib/libresolv/ |
H A D | res_send.c | 141 int try, v_circuit, resplen, ns; local 177 for (try = 0; try < _res.retry; try++) { 192 try = _res.retry; 357 (try == 0 && ns == 0)) { 411 timeout.tv_sec = (_res.retrans << try); 412 if (try > 0)
|
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/cifs/ |
H A D | cifs_attr_002_pos.ksh | 59 function try function 195 try $mntpt/file $attr $user $priv $add 196 try $mntpt/file $attr $user $priv $del 197 try $mntpt/dir $attr $user $priv $add 198 try $mntpt/dir $attr $user $priv $del
|
/illumos-gate/usr/src/uts/sparc/v9/ml/ |
H A D | lock_prim.S | 110 ldstub [%o0], %o1 ! try to set lock, get value in %o1 123 ldstub [%o0], %o1 ! try to set lock, get value in %o1 156 ldstuba [%o0]ASI_USER, %o1 ! try to set lock, get value in %o1 180 ldstub [%o0], %o4 ! try the lock 235 casx [%o0], %g0, %o1 ! try to acquire as adaptive 249 casx [%o0], %g0, %o1 ! try to acquire as adaptive 263 casx [%o0], %g0, %o1 ! try to acquire as adaptive 346 casx [%o0], %o4, %o5 ! try to grab read lock 356 bne,pn %xcc, 1b ! if not, try again 364 casx [%o0], %g0, %o5 ! try to grab write lock [all …]
|
/illumos-gate/usr/src/cmd/sgs/error/common/ |
H A D | errormain.c | 56 static void try(char *name, int argc, char **argv); 261 try("vi", argc, argv); in forkvi() 262 try("ex", argc, argv); in forkvi() 263 try("ed", argc-1, argv+1); in forkvi() 268 try(char *name, int argc, char **argv) in try() function
|
/illumos-gate/usr/src/cmd/mdb/common/kmdb/ |
H A D | kmdb_fault.c | 47 volatile int try; in kmdb_fault() local 54 try = 1; in kmdb_fault() 56 if (++try == 2) { in kmdb_fault()
|
/illumos-gate/usr/src/boot/i386/libi386/ |
H A D | time.c | 74 int same, try; in time() local 76 same = try = 0; in time() 83 } while (++same < 8 && ++try < 1000); in time()
|
/illumos-gate/usr/src/common/atomic/i386/ |
H A D | atomic.S | 132 cmpxchg8b (%edi) / try to stick it in 230 cmpxchg8b (%edi) / try to stick it in 397 cmpxchg8b (%edi) / try to stick it in 415 cmpxchgb %cl, (%edx) / try to stick it in 430 cmpxchgw %cx, (%edx) / try to stick it in 446 cmpxchgl %ecx, (%edx) / try to stick it in 473 cmpxchg8b (%edi) / try to stick it in 491 cmpxchgb %cl, (%edx) / try to stick it in 506 cmpxchgw %cx, (%edx) / try to stick it in 522 cmpxchgl %ecx, (%edx) / try to stick it in [all …]
|
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/ |
H A D | do_align.c | 94 int try; local 189 try = 0; 190 Again: try++; 262 if (try == 1) { 302 if (try == 1) {
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | attach2.test | 53 # lock test2.db then try to attach it. Should get an error. 64 # unlock test2.db and try to attach again. should work this time. 79 # lock test2.db and try to read from it. should get an error. 104 # now try to write to test2.db. the write should fail
|
/illumos-gate/usr/src/cmd/krb5/krb5kdc/ |
H A D | sock2p.c | 45 try: in inet_ntop() 67 goto try; in inet_ntop()
|