Searched defs:unflatten (Results 1 - 2 of 2) sorted by relevance

/system/core/include/utils/
H A DFlattenable.h102 // don't need to be dupped(). ie: the caller of unflatten doesn't
103 // keep ownership. If a fd is not retained by unflatten() it must be
105 inline status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count);
122 inline status_t Flattenable<T>::unflatten( function in class:android::Flattenable
124 return static_cast<T*>(this)->T::unflatten(buffer, size, fds, count);
147 inline status_t unflatten(void const* buffer, size_t size);
163 inline status_t LightFlattenable<T>::unflatten(void const* buffer, size_t size) { function in class:android::LightFlattenable
164 return static_cast<T*>(this)->T::unflatten(buffer, size);
188 inline status_t unflatten(void const* buffer, size_t) { function in class:android::LightFlattenablePod
/system/core/libutils/
H A DBlobCache.cpp221 status_t BlobCache::unflatten(void const* buffer, size_t size) { function in class:android::BlobCache
227 ALOGE("unflatten: not enough room for cache header");
232 ALOGE("unflatten: bad magic number: %d", header->mMagicNumber);
248 ALOGE("unflatten: not enough room for cache entry headers");
260 ALOGE("unflatten: not enough room for cache entry headers");

Completed in 173 milliseconds