Home
last modified time | relevance | path

Searched refs:allocationAddress (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DNativeObject.java48 protected long allocationAddress; field in NativeObject
58 this.allocationAddress = address; in NativeObject()
67 this.allocationAddress = address; in NativeObject()
75 this.allocationAddress = unsafe.allocateMemory(size); in NativeObject()
76 this.address = this.allocationAddress; in NativeObject()
80 this.allocationAddress = a; in NativeObject()
94 long allocationAddress() { in allocationAddress() method in NativeObject
95 return allocationAddress; in allocationAddress()
DAllocatedNativeObject.java60 if (allocationAddress != 0) { in free()
61 unsafe.freeMemory(allocationAddress); in free()
62 allocationAddress = 0; in free()