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

1234567

/external/compiler-rt/test/asan/TestCases/
H A Ddeep_stack_uaf.cc12 static void free(char *x) { function in struct:DeepFree
13 DeepFree<depth - 1>::free(x);
19 static void free(char *x) { function in struct:DeepFree
20 ::free(x);
27 DeepFree<200>::free(x);
29 // CHECK: {{.*ERROR: AddressSanitizer: heap-use-after-free on address}}
/external/clang/test/CodeGenCXX/
H A Dattr-cleanup.cpp4 void free(void *i) {} function in namespace:N
9 void *fp __attribute__((cleanup(N::free)));
H A Ddebug-info-access.cpp34 // CHECK: !DISubprogram(name: "free",
37 void free() {} function
/external/compiler-rt/test/tsan/Linux/
H A Duser_malloc.cc15 extern "C" void free(void *p) { function
22 free((void*)p);
/external/valgrind/memcheck/tests/
H A Dstatic_malloc.c10 void free(void*ptr) { function
18 free(p);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3parser.h82 /** 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
H A Dantlr3parsetree.h76 void (*free) (struct ANTLR3_PARSE_TREE_struct * tree); member in struct:ANTLR3_PARSE_TREE_struct
H A Dantlr3treeparser.h71 /** 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/
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
/external/cmockery/cmockery_0_1_2/src/example/
H A Dallocate_module.c26 #define free(ptr) _test_free(ptr, __FILE__, __LINE__) macro
37 free(memory);
43 free(memory);
/external/curl/lib/
H A Dcurl_memory.h30 * or free, and given source file is used to build libcurl library.
101 * realloc and free, along with others, in memdebug.h in a different
116 #undef free macro
117 #define free(ptr) Curl_cfree(ptr) macro
/external/boringssl/src/crypto/digest/
H A Dinternal.h8 * This library is free for commercial and non-commercial use as long as
98 /* free is called when an |EVP_MD_CTX| is being freed and the |pctx| also
100 void (*free) (EVP_PKEY_CTX *pctx); member in struct:evp_md_pctx_ops
/external/iproute2/include/libiptc/
H A Dxtcshared.h10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
/external/ipsec-tools/src/racoon/
H A Dgcmalloc.h46 * malloc(), calloc(), realloc(), and free() entry points in the main
77 free(void *ptr) function
120 #define racoon_free(p) free((p))
/external/iptables/include/libiptc/
H A Dxtcshared.h10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
/external/libdrm/intel/
H A Dmm.h5 * Permission is hereby granted, free of charge, to any person obtaining a
43 unsigned int free:1; member in struct:mem_block
55 * restrict the search to free memory after 'startSearch'
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_mm.h5 * 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'
/external/mesa3d/src/mesa/main/
H A Dmm.h5 * 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'
/external/valgrind/helgrind/
H A Dhg_basics.c14 This program is free software; you can redistribute it and/or
54 void HG_(free) ( void* p ) function
57 VG_(free)(p);
/external/vboot_reference/firmware/lib/include/
H A Dutility.h110 #define free _do_not_use_standard_free macro
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DMediaSource.java49 free(nativeSource);
54 private static native void free(long nativeSource); method in class:MediaSource
H A DRtpReceiver.java53 free(nativeRtpReceiver);
62 private static native void free(long nativeRtpReceiver); method in class:RtpReceiver
H A DRtpSender.java74 free(nativeRtpSender);
86 private static native void free(long nativeRtpSender); method in class:RtpSender
H A DVideoCapturer.java63 free(nativeVideoCapturer);
69 private static native void free(long nativeVideoCapturer); method in class:VideoCapturer
H A DVideoTrack.java61 private static native void free(long nativeTrack); method in class:VideoTrack

Completed in 3947 milliseconds

1234567