/titanic_51/usr/src/lib/libnisdb/ |
H A D | db_vers.cc | 40 /* Constructor that makes copy of 'other'. */ 41 vers::vers(vers* other) in vers() argument 44 assign(other); in vers() 48 vers::assign(vers* other) in assign() argument 51 if (other == NULL) { in assign() 55 time_sec = other->time_sec; in assign() 56 time_usec = other->time_usec; in assign() 57 vers_low = other->vers_low; in assign() 58 vers_high = other->vers_high; in assign() 128 * Predicate indicating whether this vers is earlier than 'other' i 132 earlier_than(vers * other) earlier_than() argument 187 equal(vers * other) equal() argument [all...] |
H A D | db_item.cc | 85 item::equal(item* other, bool_t casein) in equal() argument 88 return ((len == other->len) && in equal() 89 (!strncasecmp(value, other->value, len))); in equal() 91 return ((len == other->len) && in equal() 92 (!memcmp(value, other->value, len))); in equal() 96 item::equal(char* other, int olen, bool_t casein) in equal() argument 99 return ((len == olen) && (!strncasecmp(value, other, len))); in equal() 101 return ((len == olen) && (!memcmp(value, other, len))); in equal()
|
H A D | db_index_entry.cc | 78 other, // current pointer of updated list2 in join() local 93 /* find 'current' in 'other' list */ in join() 95 for (other = otherstart; in join() 96 other != NULL; in join() 97 other = other->next_result) { in join() 98 if (current->location == other->location) in join() 101 otherprev = other; in join() 103 if (other != NULL) { /* found */ in join() 104 /* delete 'other' fro in join() [all...] |
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);
|
/titanic_51/usr/src/pkg/manifests/ |
H A D | developer-dtrace.mf | 58 dir path=usr/share/lib/java/javadoc group=other 59 dir path=usr/share/lib/java/javadoc/dtrace group=other 60 dir path=usr/share/lib/java/javadoc/dtrace/api group=other 61 dir path=usr/share/lib/java/javadoc/dtrace/api/org group=other 62 dir path=usr/share/lib/java/javadoc/dtrace/api/org/opensolaris group=other 63 dir path=usr/share/lib/java/javadoc/dtrace/api/org/opensolaris/os group=other 65 group=other 68 group=other 70 group=other 71 dir path=usr/share/lib/java/javadoc/dtrace/examples group=other [all...] |
H A D | service-network-dns-mdns.mf | 49 dir path=usr/share/lib/java/javadoc group=other 50 dir path=usr/share/lib/java/javadoc/dnssd group=other 51 dir path=usr/share/lib/java/javadoc/dnssd/api group=other 52 dir path=usr/share/lib/java/javadoc/dnssd/api/com group=other 53 dir path=usr/share/lib/java/javadoc/dnssd/api/com/apple group=other 54 dir path=usr/share/lib/java/javadoc/dnssd/api/com/apple/dnssd group=other 56 group=other 57 dir path=usr/share/lib/java/javadoc/dnssd/examples group=other 77 group=other 79 group=other [all...] |
/titanic_51/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; in equals() 313 if (getName().compareTo(other.getName()) != 0 || in equals() 314 op != other.getOp() || val != other.getValue()) in equals() 349 KVOpExpression other = (KVOpExpression) o; in contradicts() 350 if (getName().compareTo(other.getName()) != 0) in contradicts() 352 if (getOp() != other.getOp()) { in contradicts() 353 if (getOp() != NT && other.getOp() != NT) { in contradicts() 355 if (getValue() < other in contradicts() [all...] |
/titanic_51/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...] |
/titanic_51/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) in getLatency() argument 142 return (jl_latency(id, other.getID())); in getLatency() 164 LocalityGroup other = domain. in countForeignGroups() local 166 if (other != this && in countForeignGroups() 167 groups.contains(other) == false) in countForeignGroups() 168 groups.add(other); in countForeignGroups()
|
/titanic_51/usr/src/cmd/auditrecord/ |
H A D | audit_record_attr.txt | 3 # other comments are removed. 106 # where there are no tokens (other than header, subject, return/exit), 167 case=...or for all other conditions 206 # subject,tuser10,tuser10,other,tuser10,other,1297,322,255 131585 129.146.89.30 212 # attribute,100000,root,other,8388608,402257,0 213 # subject,tuser10,tuser10,other,tuser10,other,1433,322,255 131585 129.146.89.30 219 # subject,tuser10,tuser10,other,tuser10,other,155 [all...] |
/titanic_51/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 143 thrd_t self, other; in cthr_test_equal() local 148 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==, in cthr_test_equal() 150 VERIFY3S(thrd_equal(self, other), !=, 0); in cthr_test_equal() 151 VERIFY3S(thrd_equal(other, other), ==, 0); in cthr_test_equal() 152 VERIFY3S(thrd_detach(other), ==, thrd_success); in cthr_test_equal() 158 thrd_t self, other; in cthr_test_detach_err() local 163 VERIFY3S(thrd_create(&other, cthr_test_sleep_thr, NULL), ==, in cthr_test_detach_err() 165 VERIFY3S(thrd_detach(other), ==, thrd_success); in cthr_test_detach_err() 168 VERIFY3S(thrd_join(other, NUL in cthr_test_detach_err() [all...] |
/titanic_51/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...] |
/titanic_51/usr/src/cmd/dtrace/test/tst/sparc/pid/ |
H A D | tst.branch.s | 52 be other 60 ENTRY(other) 63 SET_SIZE(other)
|
/titanic_51/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
|
/titanic_51/usr/src/cmd/dtrace/test/tst/i386/pid/ |
H A D | tst.branch.s | 62 jz other 69 ENTRY(other) 73 SET_SIZE(other)
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/astsa/ |
H A D | README-astsa | 1 astsa implements a small subset of the ast library for other ast 10 and defines these variables for use in other makefiles 14 The astsa files may be combined in a single directory with other ast
|
H A D | astsa.mm | 9 library for other 20 and defines these variables for use in other makefiles 32 The astsa files may be combined in a single directory with other ast
|
/titanic_51/usr/src/tools/scripts/ |
H A D | validate_pkg.py | 129 "readable by group or other" % (p, m)]) 156 w.extend(["%s: 0%o: should not be writable by group or other" % 161 def __ne__(self, other): argument 177 rhs = other 179 lhs = other 280 group = "other" 407 def compare(self, other): argument 411 keys2 = frozenset(list(other.keys())) 419 (self.name, other.name)) 426 (other [all...] |
/titanic_51/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/ |
H A D | Component.java | 113 * Indicates whether some other Component is "equal to this one. 125 Component other = (Component) o; in equals() 126 if (type.compareTo(other.getType()) != 0 || in equals() 127 sys_id != other.getSysId()) in equals()
|
H A D | Resource.java | 177 * Indicates whether some other Resource is "equal to this one. 189 Resource other = (Resource) o; in equals() 190 if (type.compareTo(other.getType()) != 0 || in equals() 191 name.compareTo(other.getName()) != 0) in equals()
|
H A D | HRTime.java | 98 HRTime other = (HRTime) o; in compareTo() local 100 return (value.compareTo(other.getValue())); in compareTo()
|
/titanic_51/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...] |
/titanic_51/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | pmHelpContent.java | 41 public pmHelpContent(pmHelpContent other) { in pmHelpContent() argument 42 text = new String(other.text); in pmHelpContent()
|
/titanic_51/usr/src/cmd/fm/fminject/common/ |
H A D | inj_decl.c | 173 inj_decl_t *other = inj_hash_get_cookie(v); in inj_decl_addmem() local 175 yyerror("duplicate member name %s (other on line %d)\n", in inj_decl_addmem() 176 dlm->dlm_name, other->decl_lineno); in inj_decl_addmem() 256 inj_decl_t *other = inj_hash_get_cookie(v); in inj_decl_finish() local 258 yyerror("duplicate %s name %s (other on line %d)\n", in inj_decl_finish() 259 inj_item2str(type), name, other->decl_lineno); in inj_decl_finish()
|
/titanic_51/usr/src/uts/common/sys/fs/ |
H A D | ufs_acl.h | 78 ufs_ic_acl_t *other; /* other object */ member 106 #define aother s_a.other 113 #define dother s_d.other
|