MCPcopy Index your code
hub / github.com/java-native-access/jna / equals

Method equals

src/com/sun/jna/Pointer.java:102–111  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

100 }
101
102 @Override
103 public boolean equals(Object o) {
104 if (o == this) {
105 return true;
106 }
107 if (o == null) {
108 return false;
109 }
110 return (o instanceof Pointer) && (((Pointer)o).peer == peer);
111 }
112
113 @Override
114 public int hashCode() {

Callers 15

testCoTaskMemAllocMethod · 0.95
testCoTaskMemReallocMethod · 0.95
testGetFileVersionMethod · 0.95
isIntegerTypeMethod · 0.95
isFloatTypeMethod · 0.95
getValueMethod · 0.95
getCallbackMethodMethod · 0.45
convertResultMethod · 0.45
invokeMethod · 0.45
NativeLibraryMethod · 0.45
getInstanceMethod · 0.45
initPathsMethod · 0.45

Calls

no outgoing calls

Tested by 3

testCoTaskMemAllocMethod · 0.76
testCoTaskMemReallocMethod · 0.76
testGetFileVersionMethod · 0.76