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

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/sql/
Array.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,
349 * it holds. The object is invalid once the <code>free</code>
352 * After <code>free</code> has been called, any attempt to invoke a
353 * method other than <code>free</code> will result in a <code>SQLException</code>
354 * being thrown. If <code>free</code> is called multiple times, the subsequent
355 * calls to <code>free</code> are treated as a no-op.
364 void free() throws SQLException; method in interface:Array
  /system/chre/apps/chqts/src/shared/
dumb_allocator.cc 56 bool DumbAllocatorBase::free(void *pointer) { function in class:nanoapp_testing::DumbAllocatorBase
  /libcore/ojluni/src/main/java/sun/nio/ch/
PollArrayWrapper.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,
67 void free() { method in class:PollArrayWrapper
68 pollArray.free();
109 pollArray.free();
  /bionic/linker/
linker_memory.cpp 83 void free(void* ptr) { function
84 get_allocator().free(ptr);
  /bionic/linker/tests/
linked_list_test.cpp 51 static void free(entry_t* p) { function in class:__anon1487::LinkedListTestAllocator
53 ::free(p);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.c 19 // Get back to original alloc/free calls.
24 #undef free macro
391 // Allocate new buffer, copy old data, free old buffer.
549 free (Tmp);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.c 26 // Get back to original alloc/free calls.
31 #undef free macro
364 // Allocate new buffer, copy old data, free old buffer.
511 free (Tmp);
  /external/boringssl/src/crypto/fipsmodule/digest/
internal.h 8 * 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/curl/lib/
curl_memory.h 30 * or free, and given source file is used to build libcurl library.
114 * realloc and free, along with others, in memdebug.h in a different
129 #undef free macro
130 #define free(ptr) Curl_cfree(ptr) macro
  /external/e2fsprogs/lib/ext2fs/
hashmap.h 10 void(*free)(void*); member in struct:ext2fs_hashmap
  /external/iproute2/include/libiptc/
xtcshared.h 10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
  /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/iptables/include/libiptc/
xtcshared.h 10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
  /external/libdrm/intel/
mm.h 5 * 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'
68 * Free block starts at offset
  /external/mesa3d/src/gallium/auxiliary/postprocess/
filters.h 6 * Permission is hereby granted, free of charge, to any person obtaining a
49 pp_free_func free; /* Free function */ member in struct:pp_filter_t
55 /* name inner shaders verts init run free */
  /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/mesa3d/src/util/
slab.h 5 * Permission is hereby granted, free of charge, to any person obtaining a
61 /* Free elements. */
62 struct slab_element_header *free; member in struct:slab_child_pool
  /external/syslinux/core/mem/
free.c 2 * free.c
4 * Very simple linked-list based malloc()/free().
38 /* Need to add this block to the free chain */
79 dprintf("failed free() magic check: %p\n", ptr);
88 __export void free(void *ptr) function
90 dprintf("free(%p) @ %p\n", ptr, __builtin_return_address(0));
96 firmware->mem->free(ptr);
104 * free list. Only the a.size field of the arena header is assumed
151 * Free all memory which is tagged with a specific tag.
  /external/valgrind/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
54 void HG_(free) ( void* p ) function
57 VG_(free)(p);
  /external/vboot_reference/firmware/lib/include/
utility.h 110 #define free _do_not_use_standard_free macro
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaSource.java 49 free(nativeSource);
54 private static native void free(long nativeSource); method in class:MediaSource
RtpReceiver.java 53 free(nativeRtpReceiver);
62 private static native void free(long nativeRtpReceiver); method in class:RtpReceiver
RtpSender.java 74 free(nativeRtpSender);
86 private static native void free(long nativeRtpSender); method in class:RtpSender
VideoCapturer.java 63 free(nativeVideoCapturer);
69 private static native void free(long nativeVideoCapturer); method in class:VideoCapturer

Completed in 609 milliseconds

12 3 4 5 6 7 8 91011>>