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

/frameworks/base/include/utils/
H A DPool.h61 inline void free(T* obj) { function in class:android::Pool
/frameworks/base/libs/ui/
H A DGraphicBufferAllocator.cpp119 status_t GraphicBufferAllocator::free(buffer_handle_t handle) function in class:android::GraphicBufferAllocator
123 err = mAllocDev->free(mAllocDev, handle);
125 err = sw_gralloc_handle_t::free((sw_gralloc_handle_t*)handle);
128 LOGW_IF(err, "free(...) failed %d (%s)", err, strerror(-err));
H A DGraphicBufferMapper.cpp178 status_t sw_gralloc_handle_t::free(sw_gralloc_handle_t* hnd) function in class:android::sw_gralloc_handle_t
/frameworks/base/media/libeffects/testlibs/
H A DAudioEqualizer.cpp77 void AudioEqualizer::free() { function in class:android::AudioEqualizer
78 LOGV("AudioEqualizer::free()");
80 ::free(mpMem);
/frameworks/base/libs/binder/
H A DMemoryDealer.cpp142 : start(start), size(size), free(1), prev(0), next(0) {
146 int free : 4; member in struct:android::SimpleBestFitAllocator::chunk_t
180 /* NOTE: it's VERY important to not free allocations of size 0 because
322 if (cur->free && (cur->size >= (size+extra))) {
335 free_chunk->free = 0;
369 LOG_FATAL_IF(cur->free,
375 cur->free = 1;
379 if (p && (p->free || !cur->size)) {
386 } while (cur && cur->free);
389 if (!freed->free) {
[all...]

Completed in 95 milliseconds