HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 1 - 25 of 401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/lit_tests/TestCases/
deep_stack_uaf.cc 10 static void free(char *x) { function in struct:DeepFree
11 DeepFree<depth - 1>::free(x);
17 static void free(char *x) { function in struct:DeepFree
18 ::free(x);
25 DeepFree<200>::free(x);
27 // CHECK: {{.*ERROR: AddressSanitizer: heap-use-after-free on address}}
  /external/compiler-rt/lib/tsan/lit_tests/
user_malloc.cc 15 extern "C" void free(void *p) { function
22 free((void*)p);
  /external/valgrind/main/memcheck/tests/
static_malloc.c 10 void free(void*ptr) { function
18 free(p);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3parser.h 82 /** Pointer to a function that knows how to free resources of an ANTLR3 parser.
84 void (*free) (struct ANTLR3_PARSER_struct * parser); member in struct:ANTLR3_PARSER_struct
antlr3parsetree.h 76 void (*free) (struct ANTLR3_PARSE_TREE_struct * tree); member in struct:ANTLR3_PARSE_TREE_struct
antlr3treeparser.h 71 /** Pointer to a function that knows how to free resources of an ANTLR3 tree parser.
73 void (*free) (struct ANTLR3_TREE_PARSER_struct * parser); member in struct:ANTLR3_TREE_PARSER_struct
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringBufferPool.java 37 * 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
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoCapturer.java 47 free(nativeVideoCapturer);
52 private static native void free(long nativeVideoCapturer); method in class:VideoCapturer
MediaSource.java 49 free(nativeSource);
54 private static native void free(long nativeSource); method in class:MediaSource
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_DebugMem.h 37 #define free(x) OMX_DebugMem_free(x,__FILE__,__FUNCTION__ ,__LINE__) macro
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_DebugMem.h 61 #define free(x) OMX_DebugMem_free(x,__FILE__,__FUNCTION__ ,__LINE__) macro
  /libcore/luni/src/main/java/java/nio/
NioUtils.java 33 ((DirectByteBuffer) buffer).free(); method
  /libcore/luni/src/main/java/java/sql/
Array.java 167 * Frees any resources held by this array. After {@code free} is called, calling
168 * method other than {@code free} will throw {@code SQLException} (calling {@code free}
172 public void free() throws SQLException; method in interface:Array
Blob.java 184 * Frees any resources held by this blob. After {@code free} is called, calling
185 * method other than {@code free} will throw {@code SQLException} (calling {@code free}
190 public void free() throws SQLException; method in interface:Blob
  /bionic/libc/kernel/common/linux/
mempool.h 35 mempool_free_t *free; member in struct:mempool_s
  /development/ndk/platforms/android-3/include/linux/
mempool.h 30 mempool_free_t *free; member in struct:mempool_s
  /external/chromium_org/third_party/WebKit/Source/core/tests/
ArenaTestHelpers.h 54 virtual void free(void* ptr) function in class:WebCore::ArenaTestHelpers::TrackedAllocator
59 PODArena::FastMallocAllocator::free(ptr);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_mm.h 5 * Permission is hereby granted, free of charge, to any person obtaining a
42 unsigned int free:1; member in struct:mem_block
56 * restrict the search to free memory after 'startSearch'
68 * Free block starts at offset
75 * Free block starts at offset
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mm.h 5 * Permission is hereby granted, free of charge, to any person obtaining a
41 unsigned free:1; member in struct:mem_block
55 * restrict the search to free memory after 'startSearch'
67 * Free block starts at offset
74 * Free block starts at offset
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prwin16.h 108 void (PR_CALLBACK *free)( void *ptr ); member in struct:PRMethodCallbackStr
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 13 // We simply define functions like malloc, free, realloc, etc.
27 DECLARE_REAL_AND_INTERCEPTOR(void, free, void *ptr)
34 void (*free)(void* mem); member in struct:MallocDebug
41 WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
63 INTERCEPTOR(void, free, void *ptr) {
  /external/ipsec-tools/src/racoon/
gcmalloc.h 46 * malloc(), calloc(), realloc(), and free() entry points in the main
77 free(void *ptr) function
120 #define racoon_free(p) free((p))
  /external/mesa3d/src/gallium/auxiliary/util/
u_mm.h 5 * Permission is hereby granted, free of charge, to any person obtaining a
42 unsigned int free:1; member in struct:mem_block
56 * restrict the search to free memory after 'startSearch'
68 * Free block starts at offset
75 * Free block starts at offset
  /external/mesa3d/src/mesa/main/
mm.h 5 * Permission is hereby granted, free of charge, to any person obtaining a
41 unsigned free:1; member in struct:mem_block
55 * restrict the search to free memory after 'startSearch'
67 * Free block starts at offset
74 * Free block starts at offset
  /external/valgrind/main/helgrind/
hg_basics.c 14 This program is free software; you can redistribute it and/or
16 published by the Free Software Foundation; either version 2 of the
25 along with this program; if not, write to the Free Software
55 void HG_(free) ( void* p ) function
58 VG_(free)(p);

Completed in 990 milliseconds

1 2 3 4 5 6 7 8 91011>>