/titanic_51/usr/src/test/zfs-tests/tests/functional/acl/cifs/ |
H A D | cifs_attr_003_pos.ksh | 173 typeset -i expect=$1 181 if ((expect != 0)); then 185 if ((expect == 0)); then 202 typeset expect=${3:-0} 204 verify_expect $expect $CHG_USR_EXEC $user \ 206 verify_expect $expect $CHG_USR_EXEC $user \ 222 typeset expect=${3:-0} 225 verify_expect $expect $CHG_USR_EXEC $user \ 227 verify_expect $expect $CHG_USR_EXEC $user \ 236 typeset expect [all...] |
H A D | cifs_attr_001_pos.ksh | 184 typeset expect="log_mustnot" 197 expect="log_must" 200 $expect $func $object $opt $user
|
/titanic_51/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_set/ |
H A D | readonly_001_pos.ksh | 94 expect="log_must" 97 expect="log_mustnot" 103 $expect $TOUCH $mtpt/$TESTFILE1 104 $expect $MKDIR -p $mtpt/$TESTDIR1 105 $expect eval "$ECHO 'y' | $RM $mtpt/$TESTFILE0" 106 $expect $RMDIR $mtpt/$TESTDIR0 108 if [[ $expect == "log_must" ]] ; then 116 $expect eval "$ECHO 'y' | $NEWFS \
|
/titanic_51/usr/src/cmd/tip/aculib/ |
H A D | v3451.c | 19 static int expect(char *); 47 if (!expect("READY")) { in v3451_dialer() 59 if (!expect("NUMBER?")) { in v3451_dialer() 69 if (!expect(phone)) { in v3451_dialer() 84 if (!expect("DIALING:")) { in v3451_dialer() 93 ok = expect("ON LINE"); in v3451_dialer() 129 expect(char *cp) in expect() function
|
/titanic_51/usr/src/cmd/mdb/test/ |
H A D | mtest.sh | 67 local expect base ext exe command odir res reason input 72 expect=${base%%.*} 75 [[ -z "$expect" ]] && fatal "found test without prefix: $name" 110 elif [[ "$expect" == "tst" && $res -ne 0 ]]; then 112 elif [[ "$expect" == "err" && $res -eq 0 ]]; then
|
/titanic_51/usr/src/cmd/bnu/ |
H A D | Dialers | 107 # "" expect nothing 109 # OK\r expect modem to reply OK 111 # OK\r expect modem to reply OK 116 # CONNECT expect "CONNECT" from modem when connected 129 # "" expect nothing 133 # \006 expect ACK from modem 135 # ed expect "ed" (actually "Answered") 151 # "" expect nothing 157 # ed expect "ed" (actually "Answered") 174 # "" expect nothin [all...] |
H A D | Systems | 41 # in the format "[expect send] ...". The expect field 42 # may have subfields in the format "expect[-send-expect]".
|
/titanic_51/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_unmount/ |
H A D | zfs_unmount.kshlib | 33 function do_unmount #cmd #opt #mnt #expect 38 typeset -i expect=${4-0} 44 if (( expect == 0 )) ; then 56 if (( ret != expect)); then
|
H A D | zfs_unmount_002_pos.ksh | 57 function do_unmount_multiple #options #expect 60 typeset -i expect=${2-0} 72 "${dev[j]}" $expect
|
H A D | zfs_unmount_004_pos.ksh | 58 function do_unmount_multiple #options #expect 61 typeset -i expect=${2-0} 73 "${dev[j]}" $expect
|
H A D | zfs_unmount_003_pos.ksh | 58 function do_unmount_multiple #options #expect #mountpoint 61 typeset -i expect=${2-0} 74 "${dev[j]}" $expect
|
H A D | zfs_unmount_005_pos.ksh | 59 function do_unmount_multiple #options #expect 62 typeset -i expect=${2-0} 77 "${dev[j]}" $expect
|
/titanic_51/usr/src/psm/stand/cpr/sparcv9/sun4u/ |
H A D | pages.c | 147 uint_t sum, expect; in kdata_cksum() local 153 expect = descp->cpd_csum; in kdata_cksum() 156 expect = descp->cpd_usum; in kdata_cksum() 160 if (sum != expect) { in kdata_cksum() 162 "expect 0x%x, got 0x%x\n", (flag == CPD_USUM) ? "un" : "", in kdata_cksum() 163 expect, sum); in kdata_cksum() 292 prom_printf("\nbad page magic 0x%x, expect 0x%x\n", in cb_restore_kpages() 332 prom_printf("\n%s: page count mismatch, expect %d, got %d\n", in cb_restore_kpages() 354 prom_printf("\nbad term magic 0x%x, expect 0x%x\n", in cb_terminator()
|
H A D | cprboot.c | 159 usage(char *expect, char *got) in usage() argument 163 prom_printf("\nbad OBP boot args: expect %s, got %s\n" in usage() 165 expect, got, prog, rsvp); in usage() 186 /* expect "-F" */ in check_bootargs() 192 /* expect "cprboot*" */ in check_bootargs() 434 "expect %ld, got %ld\n", str, len, nread); in cb_read_statefile()
|
/titanic_51/usr/src/cmd/rpcgen/ |
H A D | rpc_scan.c | 71 scan(tok_kind expect, token *tokp) in scan() argument 74 if (tokp->kind != expect) in scan() 75 expected1(expect); in scan() 127 * Peek at the next token and scan it if it matches what you expect 130 peekscan(tok_kind expect, token *tokp) in peekscan() argument 133 if (tokp->kind == expect) { in peekscan()
|
/titanic_51/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_lz4.c | 106 #define expect(expr, value) (__builtin_expect((expr), (value))) macro 108 #define expect(expr, value) (expr) macro 111 #define likely(expr) expect((expr) != 0, 1) 112 #define unlikely(expr) expect((expr) != 0, 0)
|
/titanic_51/usr/src/boot/sys/cddl/boot/zfs/ |
H A D | lz4.c | 113 #define expect(expr, value) (__builtin_expect((expr), (value))) macro 115 #define expect(expr, value) (expr) macro 118 #define likely(expr) expect((expr) != 0, 1) 119 #define unlikely(expr) expect((expr) != 0, 0)
|
/titanic_51/usr/src/data/zoneinfo/ |
H A D | etcetera | 38 # even though this is the opposite of what many people expect. 39 # POSIX has positive signs west of Greenwich, but many people expect 42 # (i.e. west of Greenwich) even though many people would expect it to
|
/titanic_51/usr/src/uts/i86pc/vm/ |
H A D | htable.c | 1093 x86pte_t expect = MAKEPTP(old->ht_pfn, old->ht_level); in unlink_ptp() local 1100 found = x86pte_cas(higher, entry, expect, 0); in unlink_ptp() 1106 if (found != expect && found != 0) in unlink_ptp() 1108 if (found != expect) in unlink_ptp() 1111 found, expect); in unlink_ptp() 2227 * matches the value determined by expect. 2237 x86pte_t expect, in x86pte_inval() argument 2264 if (expect != 0 && (oldpte & PT_PADDR) != (expect & PT_PADDR)) in x86pte_inval() 2282 if (expect ! in x86pte_inval() 2304 x86pte_update(htable_t * ht,uint_t entry,x86pte_t expect,x86pte_t new) x86pte_update() argument [all...] |
/titanic_51/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/ |
H A D | zfs_acl_chmod_aclmode_001_pos.ksh | 103 # expect bits after 'chmod A0{+|=}'. 278 typeset expect 289 expect=$prefix$status:deny 290 $ECHO $expect 455 "ACE: $aclcur, expect to be " \
|
/titanic_51/usr/src/lib/brand/shared/brand/amd64/ |
H A D | runexe.s | 59 movq %rax, %rsp / Set %rsp to what linkers expect
|
/titanic_51/usr/src/lib/brand/shared/brand/i386/ |
H A D | runexe.s | 59 movl %eax, %esp / Set %esp to what linkers expect
|
/titanic_51/usr/src/test/test-runner/stf/contrib/include/ |
H A D | logapi.shlib | 107 typeset expect=$1 142 elif [[ -n $expect ]] ; then 143 $out | /usr/bin/grep -i "$expect" > /dev/null 2>&1
|
/titanic_51/usr/src/cmd/sgs/test/ |
H A D | README | 19 expect to be given a path to the proto area.
|
/titanic_51/usr/src/lib/libnsl/dial/ |
H A D | conn.c | 47 static int expect(char *, int); 389 ok = expect(want, fn); in chat() 412 * expect(str, fn) look for expected string w/ possible special chars 422 expect(char *str, int fn) in expect() function 479 CDEBUG(4, "expect: (%s", ""); in expect_str() 528 * alarmtr() - catch alarm routine for "expect".
|