/titanic_50/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | UserSymbolRecord.java | 63 mutatesTo(Object oldInstance, Object newInstance) 65 return (newInstance != null && oldInstance != null && 66 oldInstance.getClass() == newInstance.getClass()); 307 mutatesTo(Object oldInstance, Object newInstance) 309 return (newInstance != null && oldInstance != null && 311 newInstance.getClass());
|
H A D | ExitRecord.java | 61 mutatesTo(Object oldInstance, Object newInstance) 63 return (newInstance != null && oldInstance != null && 64 oldInstance.getClass() == newInstance.getClass());
|
H A D | StackFrame.java | 59 mutatesTo(Object oldInstance, Object newInstance) 61 return (newInstance != null && oldInstance != null && 62 oldInstance.getClass() == newInstance.getClass());
|
H A D | KernelSymbolRecord.java | 63 mutatesTo(Object oldInstance, Object newInstance) 65 return (newInstance != null && oldInstance != null && 66 oldInstance.getClass() == newInstance.getClass());
|
H A D | Probe.java | 64 mutatesTo(Object oldInstance, Object newInstance) 66 return (newInstance != null && oldInstance != null && 67 oldInstance.getClass() == newInstance.getClass());
|
H A D | Flow.java | 88 mutatesTo(Object oldInstance, Object newInstance) 90 return (newInstance != null && oldInstance != null && 91 oldInstance.getClass() == newInstance.getClass());
|
H A D | ProbeInfo.java | 72 mutatesTo(Object oldInstance, Object newInstance) 74 return (newInstance != null && oldInstance != null && 75 oldInstance.getClass() == newInstance.getClass());
|
H A D | ProgramInfo.java | 65 mutatesTo(Object oldInstance, Object newInstance) 67 return (newInstance != null && oldInstance != null && 68 oldInstance.getClass() == newInstance.getClass());
|
H A D | AggregationRecord.java | 61 mutatesTo(Object oldInstance, Object newInstance) 63 return (newInstance != null && oldInstance != null && 64 oldInstance.getClass() == newInstance.getClass());
|
H A D | PrintfRecord.java | 61 mutatesTo(Object oldInstance, Object newInstance) 63 return (newInstance != null && oldInstance != null && 64 oldInstance.getClass() == newInstance.getClass());
|
H A D | UserStackRecord.java | 63 mutatesTo(Object oldInstance, Object newInstance) 65 return (newInstance != null && oldInstance != null && 66 oldInstance.getClass() == newInstance.getClass());
|
H A D | KernelStackRecord.java | 65 mutatesTo(Object oldInstance, Object newInstance) 67 return (newInstance != null && oldInstance != null && 68 oldInstance.getClass() == newInstance.getClass());
|
H A D | InterfaceAttributes.java | 74 mutatesTo(Object oldInstance, Object newInstance) 76 return (newInstance != null && oldInstance != null && 77 oldInstance.getClass() == newInstance.getClass());
|
H A D | Aggregation.java | 86 mutatesTo(Object oldInstance, Object newInstance) 88 return ((newInstance != null) && (oldInstance != null) && 89 (oldInstance.getClass() == newInstance.getClass()));
|
H A D | ProcessState.java | 65 mutatesTo(Object oldInstance, Object newInstance) 67 return (newInstance != null && oldInstance != null && 68 oldInstance.getClass() == newInstance.getClass());
|
H A D | Option.java | 115 mutatesTo(Object oldInstance, Object newInstance) 117 return (newInstance != null && oldInstance != null && 118 oldInstance.getClass() == newInstance.getClass());
|
H A D | ScalarRecord.java | 63 mutatesTo(Object oldInstance, Object newInstance) 65 return (newInstance != null && oldInstance != null && 66 oldInstance.getClass() == newInstance.getClass());
|
H A D | Tuple.java | 78 mutatesTo(Object oldInstance, Object newInstance) 80 return (newInstance != null && oldInstance != null && 81 oldInstance.getClass() == newInstance.getClass());
|
H A D | PrintaRecord.java | 99 mutatesTo(Object oldInstance, Object newInstance) 101 return (newInstance != null && oldInstance != null && 102 oldInstance.getClass() == newInstance.getClass());
|
H A D | Distribution.java | 383 mutatesTo(Object oldInstance, Object newInstance) 385 return (newInstance != null && oldInstance != null && 387 newInstance.getClass()));
|
/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ClientMsgManager.java | 87 newInstance(String keyName, in newInstance() method in ClientMsgManager 109 SrvLocMsg msg = (SrvLocMsg)msgClass.newInstance(); in newInstance()
|
H A D | SrvLocHeader.java | 192 static SrvLocHeader newInstance(int version) { in newInstance() method in SrvLocHeader 205 SrvLocHeader hdr = (SrvLocHeader)hdrClass.newInstance(); in newInstance()
|
H A D | DATable.java | 219 daTable = (DATable)tclass.newInstance(); in linkAndInstantiateFromProp()
|
H A D | ServiceLocationManager.java | 306 ret = con.newInstance(params); in getInstance()
|
H A D | ServiceStoreFactory.java | 119 store = (ServiceStore)storeClass.newInstance(); in createServiceStoreFromProperty()
|