Searched defs:free (Results 1 - 19 of 19) sorted by relevance

/dalvik/libcore/nio/src/main/java/java/nio/
H A DDirectByteBuffers.java40 * the direct byte buffer memory to free
45 public static void free(ByteBuffer directBuffer) { method in class:DirectByteBuffers
50 buf.free();
55 * <em>You must not attempt to free the returned address!!</em> It may not
59 * If you can guarantee that you want to free the underlying memory call the
60 * #free() method on this instance -- generally applications will rely on
H A DCharToByteBufferAdapter.java93 public void free() { method in class:CharToByteBufferAdapter
95 ((DirectBuffer) byteBuffer).free();
H A DDoubleToByteBufferAdapter.java94 public void free() { method in class:DoubleToByteBufferAdapter
96 ((DirectBuffer) byteBuffer).free();
H A DFloatToByteBufferAdapter.java94 public void free() { method in class:FloatToByteBufferAdapter
96 ((DirectBuffer) byteBuffer).free();
H A DIntToByteBufferAdapter.java93 public void free() { method in class:IntToByteBufferAdapter
95 ((DirectBuffer) byteBuffer).free();
H A DLongToByteBufferAdapter.java93 public void free() { method in class:LongToByteBufferAdapter
95 ((DirectBuffer) byteBuffer).free();
H A DShortToByteBufferAdapter.java93 public void free() { method in class:ShortToByteBufferAdapter
95 ((DirectBuffer) byteBuffer).free();
H A DDirectByteBuffer.java62 * so by an explicit call to #free(). Callers are encouraged to explicitly
63 * free the memory where possible.
250 * <em>You must not attempt to free the returned address!!</em> It may not
254 * If you can guarantee that you want to free the underlying memory call the
255 * #free() method on this instance -- generally applications will rely on
273 * Explicitly free the memory used by this direct byte buffer. If the memory
283 public final void free() { method in class:DirectByteBuffer
286 safeAddress.address.free();
H A DMappedByteBufferAdapter.java417 public void free() { method in class:MappedByteBufferAdapter
418 this.wrapped.free();
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DStringBufferPool.java37 * Get the first free instance of a string buffer, or create one
38 * if there are no free instances.
52 public synchronized static void free(FastStringBuffer sb) method in class:StringBufferPool
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySpy.java30 // Has a veto: true == do free,false = don't
31 public boolean free(PlatformAddress address); method in interface:IMemorySpy
H A DMappedPlatformAddress.java44 public final void free(){ method in class:MappedPlatformAddress
45 if(memorySpy.free(this)){
H A DAbstractMemorySpy.java66 public boolean free(PlatformAddress address) { method in class:AbstractMemorySpy
77 // Attempt to free memory we didn't alloc
79 .println("Memory Spy! Fixed attempt to free memory that was not allocated " + address); //$NON-NLS-1$
115 wrapper.shadow.free();
H A DIMemorySystem.java93 public void free(int address); method in interface:IMemorySystem
H A DOSMemory.java151 public native void free(int address); method in class:OSMemory
H A DPlatformAddress.java66 * Sending auto free to an address means that, when this subsystem has
107 public void free() { method in class:PlatformAddress
108 // Memory spys can veto the basic free if they determine the memory was
110 if (memorySpy.free(this)) {
111 osMemory.free(osaddr);
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DDirectBuffer.java30 void free(); method in interface:DirectBuffer
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
H A DSamplingProfiler.java213 free(pointer);
230 private static native void free(int pointer); method in class:SamplingProfiler
/dalvik/vm/jdwp/
H A DJdwpPriv.h59 void (*free)(struct JdwpState* state); member in struct:JdwpTransport
157 (*state->transport->free)(state);

Completed in 854 milliseconds