/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/ |
module.h | 59 void (*free)(struct module *); member in struct:module_attribute
|
/external/libxml2/ |
dict.c | 105 xmlChar *free; member in struct:_xmlDictStrings 162 * Free the dictionary mutex. 195 if (pool->end - pool->free > namelen) 213 pool->free = &pool->array[0]; 222 ret = pool->free; 223 memcpy(pool->free, name, namelen); 224 pool->free += namelen; 225 *(pool->free++) = 0; 257 if (pool->end - pool->free > namelen + plen + 1) 275 pool->free = &pool->array[0] [all...] |
/external/srec/portable/src/ |
pmemfixed.c | 28 #undef free macro 36 of free memory blocks of a fixed size. The memory pools are ordered in increasing block 39 to store the address of the next free memory block in the linked list, and to store the 40 memory block's pool ID (this is used by the free function to determine which pool the block 47 memory manager searches the remaining pools in the sequence until it finds a free block or 467 by PortFree to determine how much requested memory has been free'd */
|
pmemory.c | 37 #undef free macro 62 /* If enabled, logs individual memory allocation, reallocation, free operations */ 120 #define free PortDelete macro 313 free((LCHAR*) gMemoryMap[i].tag); 442 pfprintf(gFile, L("pmem|free|%s|%s|%d|0x%x|%s|\n"), e->tag, data->stackTrace, data->size, ptr, stackTrace); 444 pfprintf(gFile, L("pmem|free|%s|%d|0x%x\n"), e->tag, data->size, ptr); 565 Upon successful completion with size not equal to 0, malloc() shall return a pointer to the allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() shall be returned. Otherwise, it shall return a null pointer and set errno to indicate the error. 643 free(stackTrace); 726 If ptr does not match a pointer returned earlier by calloc(), malloc() or realloc() or if the space has previously been deallocated by a call to free() or realloc(), the behaviour is undefined. 731 Upon successful completion with a size not equal to 0, realloc() returns a pointer to the (possibly moved) allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() is returned. If there is not enough available memory, realloc() returns a null pointe [all...] |
/external/valgrind/main/coregrind/ |
m_oset.c | 13 This program is free software; you can redistribute it and/or 15 published by the Free Software Foundation; either version 2 of the 24 along with this program; if not, write to the Free Software 116 OSetFree_t free; // deallocator member in struct:_OSet 304 t->free = _free; 330 /* Free all the AvlNodes. This is a post-order traversal, because we */ 331 /* must free all children of a node before the node itself. */ 343 t->free(n); 350 /* Free the AvlTree itself. */ 351 t->free(t) [all...] |
/external/valgrind/main/memcheck/ |
mc_malloc_wrappers.c | 3 /*--- malloc/free wrappers for detecting errors and updating bits. ---*/ 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 62 /*--- Tracking malloc'd and free'd blocks ---*/ 79 This allows a client to allocate and free big blocks 118 /* Release enough of the oldest blocks to bring the free queue 150 /* free MC_Chunk */ 153 VG_(free) ( mc1 ); 187 if the free list volume is exceeded. * 369 void MC_(free) ( ThreadId tid, void* p ) function [all...] |