Searched defs:hashCode (Results 1 - 25 of 38) sorted by relevance

12

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAbstractAggregationValue.java92 hashCode() method in class:AbstractAggregationValue
94 return value.hashCode();
H A DExitRecord.java124 hashCode() method in class:ExitRecord
H A DStackFrame.java135 hashCode() method in class:StackFrame
137 return frame.hashCode();
H A DProbe.java162 hashCode() method in class:Probe
164 return description.hashCode();
H A DProbeInfo.java165 hashCode() method in class:ProbeInfo
168 hash = (37 * hash) + probeAttributes.hashCode();
169 hash = (37 * hash) + argumentAttributes.hashCode();
H A DAggregationRecord.java226 hashCode() method in class:AggregationRecord
229 hash = (37 * hash) + tuple.hashCode();
230 hash = (37 * hash) + value.hashCode();
H A DFlow.java191 hashCode() method in class:Flow
194 hash = (37 * hash) + kind.hashCode();
H A DKernelStackRecord.java280 hashCode() method in class:KernelStackRecord
282 return Arrays.hashCode(rawStackData);
H A DKernelSymbolRecord.java193 hashCode() method in class:KernelSymbolRecord
H A DPrintfRecord.java236 hashCode() method in class:PrintfRecord
239 hash = (37 * hash) + records.hashCode();
240 hash = (37 * hash) + formattedString.hashCode();
H A DProgramInfo.java206 hashCode() method in class:ProgramInfo
209 hash = (37 * hash) + minimumProbeAttributes.hashCode();
210 hash = (37 * hash) + minimumStatementAttributes.hashCode();
H A DUserStackRecord.java229 hashCode() method in class:UserStackRecord
231 return stackRecord.hashCode();
H A DAggregation.java269 hashCode() method in class:Aggregation
272 hash = (37 * hash) + name.hashCode();
273 hash = (37 * hash) + map.hashCode();
H A DProbeDescription.java439 hashCode() method in class:ProbeDescription
447 hash = (37 * hash) + provider.hashCode();
448 hash = (37 * hash) + module.hashCode();
449 hash = (37 * hash) + function.hashCode();
450 hash = (37 * hash) + name.hashCode();
H A DProcessState.java304 hashCode() method in class:ProcessState
308 hash = (37 * hash) + state.hashCode();
311 exitStatus.hashCode());
312 hash = (37 * hash) + (message == null ? 0 : message.hashCode());
H A DScalarRecord.java225 * @return {@link java.lang.Object#hashCode()} of {@link
226 * #getValue()}, or {@link java.util.Arrays#hashCode(byte[] a)} if
231 hashCode() method in class:ScalarRecord
234 return Arrays.hashCode((byte[])value);
236 return value.hashCode();
H A DTuple.java261 hashCode() method in class:Tuple
263 return elements.hashCode();
H A DUserSymbolRecord.java209 hashCode() method in class:UserSymbolRecord
211 return value.hashCode();
404 hashCode() method in class:UserSymbolRecord.Value
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DAttributeString.java144 public int hashCode() { method in class:AttributeString
145 return cstring.toString().hashCode();
H A DServiceType.java237 public int hashCode() { method in class:ServiceType
239 return type1.hashCode() +
240 na.hashCode() +
241 type2.hashCode() +
242 (isServiceURL ? Defaults.SERVICE_PREFIX.hashCode():0);
H A DServiceURL.java219 public int hashCode() { method in class:ServiceURL
221 serviceType.hashCode() +
222 transport.hashCode() +
223 host.hashCode() +
225 URLPath.hashCode();
/illumos-gate/usr/src/common/ficl/
H A Dhash.c97 ficlHashLookup(ficlHash *hash, ficlString name, ficlUnsigned16 hashCode) argument
108 hashIdx = (ficlUnsigned16)(hashCode % hash->size);
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DComponent.java117 * @see #hashCode()
141 public int hashCode() method in class:Component
143 return (type.hashCode() + (int) sys_id);
H A DPool.java166 * @see #hashCode()
189 public int hashCode() method in class:Pool
191 return (name.hashCode());
H A DResource.java181 * @see #hashCode()
205 public int hashCode() method in class:Resource
207 return (type.hashCode() + name.hashCode());

Completed in 94 milliseconds

12