HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 51 - 75 of 442) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
VideoTrack.java 61 private static native void free(long nativeTrack); method in class:VideoTrack
  /frameworks/layoutlib/bridge/src/libcore/util/
NativeAllocationRegistry_Delegate.java 61 delegate.mFinalizer.free(nativePtr);
68 void free(long nativePtr); method in interface:NativeAllocationRegistry_Delegate.FreeFunction
  /libcore/luni/src/main/java/java/nio/
NioUtils.java 49 dbb.memoryRef.free();
  /libcore/ojluni/src/main/java/java/sql/
Blob.java 5 * This code is free software; you can redistribute it and/or modify it
7 * published by the Free Software Foundation. Oracle designates this
18 * 2 along with this work; if not, write to the Free Software Foundation,
270 * it holds. The object is invalid once the <code>free</code>
273 * After <code>free</code> has been called, any attempt to invoke a
274 * method other than <code>free</code> will result in a <code>SQLException</code>
275 * being thrown. If <code>free</code> is called multiple times, the subsequent
276 * calls to <code>free</code> are treated as a no-op.
285 void free() throws SQLException; method in interface:Blob
Clob.java 5 * This code is free software; you can redistribute it and/or modify it
7 * published by the Free Software Foundation. Oracle designates this
18 * 2 along with this work; if not, write to the Free Software Foundation,
313 * that it holds. The object is invalid once the <code>free</code> method
316 * After <code>free</code> has been called, any attempt to invoke a
317 * method other than <code>free</code> will result in a <code>SQLException</code>
318 * being thrown. If <code>free</code> is called multiple times, the subsequent
319 * calls to <code>free</code> are treated as a no-op.
328 void free() throws SQLException; method in interface:Clob
SQLXML.java 5 * This code is free software; you can redistribute it and/or modify it
7 * published by the Free Software Foundation. Oracle designates this
18 * 2 along with this work; if not, write to the Free Software Foundation,
173 * The state moves from readable to not readable once free() or any of the
177 * The state moves from writable to not writeable once free() or any of the
198 * After <code>free</code> has been called, any attempt to invoke a
199 * method other than <code>free</code> will result in a <code>SQLException</code>
200 * being thrown. If <code>free</code> is called multiple times, the subsequent
201 * calls to <code>free</code> are treated as a no-op.
207 void free() throws SQLException method in interface:SQLXML
    [all...]
  /system/chre/apps/chqts/src/shared/
dumb_allocator.h 34 bool free(void *ptr);
81 * If contains(ptr) is true, free the allocation and return true.
86 bool free(void *ptr) { function in class:nanoapp_testing::DumbAllocator
87 return DumbAllocatorBase::free(ptr);
  /bionic/linker/
linker_block_allocator.cpp 80 void LinkerBlockAllocator::free(void* block) { function in class:LinkerBlockAllocator
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.h 41 #define free(ptr) MyFree ((ptr), __FILE__, __LINE__) macro
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.h 48 #define free(ptr) MyFree ((ptr), __FILE__, __LINE__) macro
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 2 Definitions for memory allocation routines: calloc, malloc, realloc, free.
157 /** The free function causes the space pointed to by Ptr to be deallocated,
162 function, or if the space has been deallocated by a call to free or
169 free(void *Ptr) function
175 DEBUG((DEBUG_POOL, "free(%p): Head: %p\n", Ptr, Head));
180 (void) gBS->FreePool (Head); // Now free the associated memory
184 DEBUG((DEBUG_ERROR, "ERROR free(0x%p): Signature is 0x%8X, expected 0x%8X\n",
188 DEBUG((DEBUG_POOL, "free Done\n"));
202 realloc function, or if the space has been deallocated by a call to the free
267 free( Ptr); // and reclaim the old region.
    [all...]
  /external/compiler-rt/lib/esan/
esan_circular_buffer.h 20 // There are two usage models: one is to use initialize/free (for global
22 // constructor and to call the destructor or free (they are equivalent).
34 if (WasConstructed) // Else caller will call free() explicitly.
35 free();
45 void free() { function in class:__esan::CircularBuffer
  /external/libexif/libexif/
exif-mnote-data-priv.h 5 * This library is free software; you can redistribute it and/or
7 * License as published by the Free Software Foundation; either
17 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
39 void (* free) (ExifMnoteData *); member in struct:_ExifMnoteDataMethods
  /external/python/cpython2/Lib/multiprocessing/
heap.py 104 # list of pending blocks to free - see free() comment below
136 # free location and try to merge with neighbours
181 # Free all the blocks in the pending list - called with the lock held.
190 def free(self, block): member in class:Heap
191 # free a block returned by malloc()
192 # Since free() can be called asynchronously by the GC, it could happen
197 # synchronously sometimes later from malloc() or free(), by calling
203 # pending blocks to free
245 Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
heap.py 112 # list of pending blocks to free - see free() comment below
144 # free location and try to merge with neighbours
189 # Free all the blocks in the pending list - called with the lock held.
198 def free(self, block): member in class:Heap
199 # free a block returned by malloc()
200 # Since free() can be called asynchronously by the GC, it could happen
205 # synchronously sometimes later from malloc() or free(), by calling
211 # pending blocks to free
250 util.Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Pool.java 30 public void free(T obj) { method in class:Pool
Timeline.java 274 public void free() { method in class:Timeline
277 obj.free();
280 pool.free(this);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
heap.py 104 # list of pending blocks to free - see free() comment below
136 # free location and try to merge with neighbours
181 # Free all the blocks in the pending list - called with the lock held.
190 def free(self, block): member in class:Heap
191 # free a block returned by malloc()
192 # Since free() can be called asynchronously by the GC, it could happen
197 # synchronously sometimes later from malloc() or free(), by calling
203 # pending blocks to free
245 Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
heap.py 104 # list of pending blocks to free - see free() comment below
136 # free location and try to merge with neighbours
181 # Free all the blocks in the pending list - called with the lock held.
190 def free(self, block): member in class:Heap
191 # free a block returned by malloc()
192 # Since free() can be called asynchronously by the GC, it could happen
197 # synchronously sometimes later from malloc() or free(), by calling
203 # pending blocks to free
245 Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 104 # list of pending blocks to free - see free() comment below
136 # free location and try to merge with neighbours
181 # Free all the blocks in the pending list - called with the lock held.
190 def free(self, block): member in class:Heap
191 # free a block returned by malloc()
192 # Since free() can be called asynchronously by the GC, it could happen
197 # synchronously sometimes later from malloc() or free(), by calling
203 # pending blocks to free
245 Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 104 # list of pending blocks to free - see free() comment below
136 # free location and try to merge with neighbours
181 # Free all the blocks in the pending list - called with the lock held.
190 def free(self, block): member in class:Heap
191 # free a block returned by malloc()
192 # Since free() can be called asynchronously by the GC, it could happen
197 # synchronously sometimes later from malloc() or free(), by calling
203 # pending blocks to free
245 Finalize(self, BufferWrapper._heap.free, args=(block,)
    [all...]
  /bionic/libc/kernel/uapi/drm/
sis_drm.h 42 unsigned long free; member in struct:__anon427
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 106 void (*free) (struct ANTLR3_BITSET_struct * bitset); member in struct:ANTLR3_BITSET_struct
antlr3intstream.h 195 void (*free) (struct ANTLR3_INT_STREAM_struct * stream); member in struct:ANTLR3_INT_STREAM_struct
antlr3lexer.h 182 /** Pointer to a function that knows how to free the resources of a lexer
184 void (*free) (struct ANTLR3_LEXER_struct * lexer); member in struct:ANTLR3_LEXER_struct

Completed in 1016 milliseconds

1 23 4 5 6 7 8 91011>>