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

1 2 3

  /frameworks/native/include/utils/
Flattenable.h 48 // don't need to be dupped(). ie: the caller of unflatten doesn't
49 // keep ownership. If a fd is not retained by unflatten() it must be
51 virtual status_t unflatten(void const* buffer, size_t size,
BlobCache.h 92 // loaded into a BlobCache object using the unflatten method. The contents
101 // unflatten replaces the contents of the cache with the serialized cache
109 virtual status_t unflatten(void const* buffer, size_t size, int fds[],
  /external/skia/src/core/
SkPictureFlat.h 154 void unflatten(SkBitmap* bitmap, SkRefCntPlayback* rcp) const { function in class:SkFlatBitmap
159 bitmap->unflatten(buffer);
177 void unflatten(SkMatrix* result) const { function in class:SkFlatMatrix
178 result->unflatten(fMatrixData);
202 void unflatten(SkPaint* result, SkRefCntPlayback* rcp, function in class:SkFlatPaint
223 void unflatten(SkRegion* result) const { function in class:SkFlatRegion
224 result->unflatten(fRegionData);
SkPathHeap.cpp 29 p->unflatten(buffer);
SkPicturePlayback.cpp 89 flatBitmap->unflatten(&fBitmaps[index], &fRCPlayback);
100 flatMatrix->unflatten(&fMatrices[flatMatrix->index() - 1]);
113 flatPaint->unflatten(&fPaints[index], &fRCPlayback, &fTFPlayback);
137 flatRegion->unflatten(&fRegions[flatRegion->index() - 1]);
446 fBitmaps[i].unflatten(buffer);
456 fPaints[i].unflatten(buffer);
470 SkDEBUGCODE(uint32_t bytes =) fRegions[i].unflatten(buffer.skip(size));
831 void SkPicturePlayback::unflatten(const void* storage) {
839 fBitmaps[index].unflatten(local);
853 fPaths[index].unflatten(local)
    [all...]
SkFlattenable.cpp 15 size_t size = matrix->unflatten(reader->peek());
27 size_t size = rgn->unflatten(reader->peek());
SkBitmapProcShader.cpp 36 fRawBitmap.unflatten(buffer);
  /frameworks/native/include/gui/
Sensor.h 76 virtual status_t unflatten(void const* buffer, size_t size,
  /external/skia/src/effects/
Sk2DPathEffect.cpp 79 fMatrix.unflatten(storage);
100 fPath.unflatten(buffer);
SkRectShape.cpp 92 fPaint.unflatten(buffer);
Sk1DPathEffect.cpp 142 fPath.unflatten(buffer);
SkGroupShape.cpp 121 mr->unflatten(storage);
SkLayerDrawLooper.cpp 228 this->addLayer(info)->unflatten(buffer);
  /frameworks/av/include/camera/
CameraParameters.h 44 CameraParameters(const String8 &params) { unflatten(params); }
48 void unflatten(const String8 &params);
    [all...]
  /frameworks/native/libs/utils/tests/
BlobCache_test.cpp 277 ASSERT_EQ(OK, mBC2->unflatten(flat, size, NULL, 0));
360 ASSERT_EQ(BAD_VALUE, mBC2->unflatten(flat, size, NULL, 0));
363 // The error should cause the unflatten to result in an empty cache
378 ASSERT_EQ(OK, mBC2->unflatten(flat, size, NULL, 0));
381 // The version mismatch should cause the unflatten to result in an empty
397 ASSERT_EQ(OK, mBC2->unflatten(flat, size, NULL, 0));
400 // The version mismatch should cause the unflatten to result in an empty
414 ASSERT_EQ(BAD_VALUE, mBC2->unflatten(flat, size-1, NULL, 0));
417 // The error should cause the unflatten to result in an empty cache
  /frameworks/native/include/ui/
GraphicBuffer.h 143 status_t unflatten(void const* buffer, size_t size,
  /external/skia/src/pipe/
SkGPipeRead.cpp 127 path.unflatten(*reader);
242 path.unflatten(*reader);
264 // TODO: flatten/unflatten xfermodes
313 path.unflatten(*reader);
  /external/skia/include/core/
SkRegion.h 360 uint32_t unflatten(const void* buffer);
SkBitmap.h 542 void unflatten(SkFlattenableReadBuffer&);
    [all...]
SkPaint.h 59 void unflatten(SkFlattenableReadBuffer&);
    [all...]
SkPath.h 731 void unflatten(SkReader32&);
  /frameworks/native/libs/gui/
Sensor.cpp 174 status_t Sensor::unflatten(void const* buffer, size_t size, function in class:android::Sensor
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 221 status_t GraphicBuffer::unflatten(void const* buffer, size_t size, function in class:android::GraphicBuffer
  /external/skia/samplecode/
SampleRegion.cpp 158 size2 = tmp3.unflatten(buffer);
  /external/skia/tests/
MatrixTest.cpp 50 uint32_t size3 = m2.unflatten(buffer);

Completed in 381 milliseconds

1 2 3