/illumos-gate/usr/src/lib/libnisdb/ |
H A D | db_vers.cc | 40 /* Constructor that makes copy of 'other'. */ 41 vers::vers(vers* other) argument 44 assign(other); 48 vers::assign(vers* other) argument 51 if (other == NULL) { 55 time_sec = other->time_sec; 56 time_usec = other->time_usec; 57 vers_low = other->vers_low; 58 vers_high = other->vers_high; 128 * Predicate indicating whether this vers is earlier than 'other' i 132 earlier_than(vers *other) argument 187 equal( vers *other) argument [all...] |
H A D | db_item.cc | 85 item::equal(item* other, bool_t casein) argument 88 return ((len == other->len) && 89 (!strncasecmp(value, other->value, len))); 91 return ((len == other->len) && 92 (!memcmp(value, other->value, len))); 96 item::equal(char* other, int olen, bool_t casein) argument 99 return ((len == olen) && (!strncasecmp(value, other, len))); 101 return ((len == olen) && (!memcmp(value, other, len)));
|
H A D | db_vers_c.x | 71 %/* Constructor that makes copy of 'other'. */ 72 % vers( vers *other ); 90 % void assign( vers *other ); 92 %/* Predicate indicating whether this vers is earlier than 'other' in 94 % bool_t earlier_than( vers *other ); 102 %/* Predicate indicating whether this vers is equal to 'other'. */ 103 % bool_t equal( vers *other);
|
H A D | db_index_entry.cc | 78 other, // current pointer of updated list2 local 93 /* find 'current' in 'other' list */ 95 for (other = otherstart; 96 other != NULL; 97 other = other->next_result) { 98 if (current->location == other->location) 101 otherprev = other; 103 if (other != NULL) { /* found */ 104 /* delete 'other' fro [all...] |
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | pmHelpContent.java | 41 public pmHelpContent(pmHelpContent other) { argument 42 text = new String(other.text);
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/sparc/pid/ |
H A D | tst.branch.s | 52 be other 60 ENTRY(other) function 63 SET_SIZE(other)
|
H A D | tst.branch.d | 48 pid$1:a.out:other:
|
/illumos-gate/usr/src/test/zfs-tests/tests/functional/delegate/ |
H A D | zfs_allow_005_pos.ksh | 66 for other in $EVERYONE; do 70 if [[ $other == $user ]]; then 73 log_must verify_noperm $childfs $perms $other
|
/illumos-gate/usr/src/lib/libpam/ |
H A D | pam.conf | 28 # defined in the "other" section. 91 other auth requisite pam_authtok_get.so.1 92 other auth required pam_dhkeys.so.1 93 other auth required pam_unix_cred.so.1 94 other auth required pam_unix_auth.so.1 117 other account requisite pam_roles.so.1 118 other account required pam_unix_account.so.1 123 other session required pam_unix_session.so.1 128 other password required pam_dhkeys.so.1 129 other passwor [all...] |
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | Expression.java | 299 * Indicates whether some other KVOpExpression is "equal to 312 KVOpExpression other = (KVOpExpression) o; 313 if (getName().compareTo(other.getName()) != 0 || 314 op != other.getOp() || val != other.getValue()) 349 KVOpExpression other = (KVOpExpression) o; 350 if (getName().compareTo(other.getName()) != 0) 352 if (getOp() != other.getOp()) { 353 if (getOp() != NT && other.getOp() != NT) { 355 if (getValue() < other [all...] |
/illumos-gate/usr/src/cmd/dtrace/test/tst/i386/pid/ |
H A D | tst.branch.s | 62 jz other 69 ENTRY(other) function 73 SET_SIZE(other)
|
H A D | tst.branch.d | 48 pid$1:a.out:other:
|
/illumos-gate/usr/src/cmd/sunpc/ |
H A D | Makefile | 29 SUBDIRS= other
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/locality/ |
H A D | LocalityGroup.java | 137 * @param other is another locality group belonging to the 140 public int getLatency(LocalityGroup other) argument 142 return (jl_latency(id, other.getID())); 164 LocalityGroup other = domain. 166 if (other != this && 167 groups.contains(other) == false) 168 groups.add(other);
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/ |
H A D | HRTime.java | 98 HRTime other = (HRTime) o; 100 return (value.compareTo(other.getValue()));
|
H A D | Component.java | 113 * Indicates whether some other Component is "equal to this one. 125 Component other = (Component) o; 126 if (type.compareTo(other.getType()) != 0 || 127 sys_id != other.getSysId())
|
H A D | Resource.java | 177 * Indicates whether some other Resource is "equal to this one. 189 Resource other = (Resource) o; 190 if (type.compareTo(other.getType()) != 0 || 191 name.compareTo(other.getName()) != 0)
|
H A D | Pool.java | 162 * Indicates whether some other Pool is "equal to this one. 174 Pool other = (Pool) o; 175 if (name.compareTo(other.getName()) != 0)
|
/illumos-gate/usr/src/cmd/tsol/tsol-zones/ |
H A D | svc-tsol-zones | 39 grep '^[ ]*other.*account.*pam_tsol_account' $pamconf \ 44 other account required pam_tsol_account.so.1
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pragma/ |
H A D | tst.temporal2.ksh | 52 * record its data just a little bit before the other cpus.
|
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 143 thrd_t self, other; local 148 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==, 150 VERIFY3S(thrd_equal(self, other), !=, 0); 151 VERIFY3S(thrd_equal(other, other), ==, 0); 152 VERIFY3S(thrd_detach(other), ==, thrd_success); 158 thrd_t self, other; local 163 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==, 165 VERIFY3S(thrd_detach(other), ==, thrd_success); 168 VERIFY3S(thrd_join(other, NUL [all...] |
/illumos-gate/usr/src/cmd/fm/eversholt/files/sparc/sun4v/ |
H A D | gmem.esc | 239 * membuf-crc-uc, membuf-other-uc will fault the detector FRU and sender FRU 247 event ereport.cpu.generic-sparc.membuf-other-uc@CHIP { within(1s) }; 248 event ereport.cpu.generic-sparc.membuf-other-uc@MEM_BUFF { within(1s) }; 249 event ereport.cpu.generic-sparc.membuf-other-uc@MEM_CTRL { within(1s) }; 261 ereport.cpu.generic-sparc.membuf-other-uc@CHIP; 266 ereport.cpu.generic-sparc.membuf-other-uc@CHIP<>; 276 ereport.cpu.generic-sparc.membuf-other-uc@CHIP; 283 ereport.cpu.generic-sparc.membuf-other-uc@CHIP; 291 ereport.cpu.generic-sparc.membuf-other-uc@MEM_BUFF; 296 ereport.cpu.generic-sparc.membuf-other [all...] |
/illumos-gate/usr/src/cmd/fm/fminject/common/ |
H A D | inj_decl.c | 173 inj_decl_t *other = inj_hash_get_cookie(v); local 175 yyerror("duplicate member name %s (other on line %d)\n", 176 dlm->dlm_name, other->decl_lineno); 256 inj_decl_t *other = inj_hash_get_cookie(v); local 258 yyerror("duplicate %s name %s (other on line %d)\n", 259 inj_item2str(type), name, other->decl_lineno);
|
/illumos-gate/usr/src/test/util-tests/tests/xargs/ |
H A D | xargs_test.ksh | 48 comp=$(echo foo bar baz other | $XARGS -I THING echo '** THING **') 50 good='** foo bar baz other **' 58 comp=$(echo foo bar baz other | $XARGS -n 1 echo '***') 63 *** other' 71 comp=$(echo foo bar baz other | $XARGS -I THING -n1 echo '** THING **') 76 ** THING ** other' 84 comp=$(echo foo bar baz other | $XARGS -n 1 -I THING echo '** THING **') 86 good='** foo bar baz other **' 215 comp=$(echo foo bar baz other | $XARGS -I X echo '** X **') 217 good='** foo bar baz other **' [all...] |
/illumos-gate/usr/src/uts/common/sys/fs/ |
H A D | ufs_acl.h | 78 ufs_ic_acl_t *other; /* other object */ member in struct:ic_acl 106 #define aother s_a.other 113 #define dother s_d.other
|