HomeSort by relevance Sort by last modified time
    Searched refs:unflatten (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /system/core/include/utils/
Flattenable.h 102 // 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
BlobCache.h 89 // loaded into a BlobCache object using the unflatten method. The contents
96 // unflatten replaces the contents of the cache with the serialized cache
102 status_t unflatten(void const* buffer, size_t size);
  /external/chromium_org/third_party/skia/src/core/
SkImageInfo.cpp 19 void SkImageInfo::unflatten(SkFlattenableReadBuffer& buffer) { function in class:SkImageInfo
SkPaintOptionsAndroid.cpp 34 void SkPaintOptionsAndroid::unflatten(SkFlattenableReadBuffer& buffer) { function in class:SkPaintOptionsAndroid
SkFlattenableBuffers.cpp 45 paint->unflatten(*this);
SkPictureFlat.h 274 // Unflatten this into result, using bitmapHeap and facePlayback for bitmaps and fonts if given.
275 void unflatten(void* result,
437 * Unflatten the objects and return them in SkTRefArray, or return NULL
447 this->unflatten(&array->writableAt(i), fIndexedData[i+1]);
453 * Unflatten the specific object at the given index.
456 T* unflatten(int index) const { function in class:SkFlatDictionary
461 this->unflatten(dst, element);
562 void unflatten(T* dst, const SkFlatData* element) const { function in class:SkFlatDictionary
563 element->unflatten(dst,
598 ((T*)obj)->unflatten(buffer)
    [all...]
  /external/skia/src/core/
SkImageInfo.cpp 19 void SkImageInfo::unflatten(SkFlattenableReadBuffer& buffer) { function in class:SkImageInfo
SkPaintOptionsAndroid.cpp 34 void SkPaintOptionsAndroid::unflatten(SkFlattenableReadBuffer& buffer) { function in class:SkPaintOptionsAndroid
SkFlattenableBuffers.cpp 45 paint->unflatten(*this);
SkPictureFlat.h 274 // Unflatten this into result, using bitmapHeap and facePlayback for bitmaps and fonts if given.
275 void unflatten(void* result,
437 * Unflatten the objects and return them in SkTRefArray, or return NULL
447 this->unflatten(&array->writableAt(i), fIndexedData[i+1]);
453 * Unflatten the specific object at the given index.
456 T* unflatten(int index) const { function in class:SkFlatDictionary
461 this->unflatten(dst, element);
562 void unflatten(T* dst, const SkFlatData* element) const { function in class:SkFlatDictionary
563 element->unflatten(dst,
598 ((T*)obj)->unflatten(buffer)
    [all...]
  /frameworks/av/include/camera/
CameraParameters2.h 35 CameraParameters2(const String8 &params) { unflatten(params); }
39 void unflatten(const String8 &params);
CameraParameters.h 44 CameraParameters(const String8 &params) { unflatten(params); }
48 void unflatten(const String8 &params);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkImageInfo.h 131 void unflatten(SkFlattenableReadBuffer&);
SkPaintOptionsAndroid.h 84 void unflatten(SkFlattenableReadBuffer&);
  /external/skia/include/core/
SkImageInfo.h 131 void unflatten(SkFlattenableReadBuffer&);
SkPaintOptionsAndroid.h 84 void unflatten(SkFlattenableReadBuffer&);
  /external/skia/tests/
AndroidPaintTest.cpp 20 dst->unflatten(reader);
26 // We want to make sure that Android's paint options survive a flatten/unflatten round trip.
  /frameworks/native/include/gui/
Sensor.h 77 status_t unflatten(void const* buffer, size_t size);
IGraphicBufferConsumer.h 48 status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count);
  /frameworks/native/include/ui/
Fence.h 100 status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count);
  /external/chromium_org/third_party/skia/src/effects/
SkBitmapSource.cpp 31 fBitmap.unflatten(buffer);
  /external/skia/src/effects/
SkBitmapSource.cpp 31 fBitmap.unflatten(buffer);
  /frameworks/native/include/binder/
Parcel.h 275 virtual status_t unflatten(void const* buffer, size_t size, int const* fds, size_t count) = 0;
294 virtual status_t unflatten(void const* buffer, size_t size, int const* fds, size_t count) { function in class:android::Parcel::FlattenableHelper
295 return const_cast<Flattenable<T>&>(val).unflatten(buffer, size, fds, count);
363 val.unflatten(buffer, size);
  /system/core/libutils/tests/
BlobCache_test.cpp 277 ASSERT_EQ(OK, mBC2->unflatten(flat, size));
360 ASSERT_EQ(BAD_VALUE, mBC2->unflatten(flat, size));
363 // The error should cause the unflatten to result in an empty cache
378 ASSERT_EQ(OK, mBC2->unflatten(flat, size));
381 // The version mismatch should cause the unflatten to result in an empty
397 ASSERT_EQ(OK, mBC2->unflatten(flat, size));
400 // The version mismatch should cause the unflatten to result in an empty
414 ASSERT_EQ(BAD_VALUE, mBC2->unflatten(flat, size-1));
417 // The error should cause the unflatten to result in an empty cache
  /device/asus/flo/camera/
QCameraParameters.h 46 QCameraParameters(const String8 &params) { unflatten(params); }

Completed in 233 milliseconds

1 2 3 4