Searched refs:flatten (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/native/include/utils/
H A DFlattenable.h38 // number of file descriptors to flatten
45 // flatten() if needed).
46 virtual status_t flatten(void* buffer, size_t size,
75 // returns whether this object always flatten into the same size.
83 inline status_t flatten(void* buffer) const;
98 inline status_t LightFlattenable<T>::flatten(void* buffer) const { function in class:android::LightFlattenable
99 return static_cast<T const*>(this)->T::flatten(buffer);
120 inline status_t flatten(void* buffer) const { function in class:android::LightFlattenablePod
H A DBlobCache.h90 // flatten serializes the current contents of the cache into the memory
98 virtual status_t flatten(void* buffer, size_t size, int fds[],
/frameworks/base/test-runner/src/android/test/
H A DTestCaseUtil.java44 public static List<String> getTestCaseNames(Test test, boolean flatten) { argument
45 List<Test> tests = (List<Test>) getTests(test, flatten);
53 public static List<? extends Test> getTests(Test test, boolean flatten) { argument
54 return getTests(test, flatten, new HashSet<Class<?>>());
57 private static List<? extends Test> getTests(Test test, boolean flatten, argument
82 if (flatten) {
83 testCases.addAll(getTests(childTest, flatten, seen));
/frameworks/native/include/gui/
H A DSensor.h74 status_t flatten(void* buffer) const;
H A DIGraphicBufferProducer.h123 virtual status_t flatten(void* buffer, size_t size,
/frameworks/native/include/ui/
H A DFence.h99 status_t flatten(void* buffer, size_t size,
H A DGraphicBuffer.h142 status_t flatten(void* buffer, size_t size,
H A DRegion.h140 status_t flatten(void* buffer) const;
/frameworks/native/libs/utils/tests/
H A DBlobCache_test.cpp276 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
324 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
346 ASSERT_EQ(BAD_VALUE, mBC->flatten(flat, size, NULL, 0));
356 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
373 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
392 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
411 ASSERT_EQ(OK, mBC->flatten(flat, size, NULL, 0));
/frameworks/av/include/camera/
H A DCameraParameters.h47 String8 flatten() const;
/frameworks/native/libs/ui/
H A DFence.cpp137 status_t Fence::flatten(void* buffer, size_t size, int fds[], function in class:android::Fence
H A DGraphicBuffer.cpp212 status_t GraphicBuffer::flatten(void* buffer, size_t size, function in class:android::GraphicBuffer
/frameworks/base/tools/aapt/
H A DResourceTable.h185 sp<AaptFile> flatten(Bundle*);
226 status_t flatten(Bundle*, const sp<AaptFile>& dest);
346 ssize_t flatten(Bundle*, const sp<AaptFile>& data, bool isPublic);
H A DXMLNode.h137 status_t flatten(const sp<AaptFile>& dest, bool stripComments,
H A DResourceTable.cpp82 err = root->flatten(target,
1983 sp<AaptFile> ResourceTable::flatten(Bundle* bundle) function in class:ResourceTable
1986 status_t err = flatten(bundle, data);
2587 status_t ResourceTable::flatten(Bundle* bundle, const sp<AaptFile>& dest) function in class:ResourceTable
2897 ssize_t amt = e->flatten(bundle, data, cl->getPublic());
3306 ssize_t ResourceTable::Entry::flatten(Bundle* bundle, const sp<AaptFile>& data, bool isPublic) function in class:ResourceTable::Entry
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp303 status_t IGraphicBufferProducer::QueueBufferInput::flatten(void* buffer, size_t size, function in class:android::IGraphicBufferProducer::QueueBufferInput
312 err = fence->flatten(p, size - (p - (char*)buffer), fds, count);
H A DSensor.cpp128 status_t Sensor::flatten(void* buffer) const function in class:android::Sensor
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp150 if (mCamera->setParameters(params.flatten()) == OK) {
H A DCameraSource.cpp359 String8 s = params->flatten();
/frameworks/native/include/binder/
H A DParcel.h291 val.flatten(buffer);
/frameworks/native/libs/utils/
H A DBlobCache.cpp183 status_t BlobCache::flatten(void* buffer, size_t size, int fds[], size_t count) function in class:android::BlobCache
186 ALOGE("flatten: nonzero fd count: %zu", count);
192 ALOGE("flatten: not enough room for cache header");
213 ALOGE("flatten: not enough room for cache entries");
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp259 status_t err = mBlobCache->flatten(buf + headerSize, cacheSize, NULL,
/frameworks/av/camera/
H A DCameraParameters.cpp184 String8 CameraParameters::flatten() const function in class:android::CameraParameters
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h380 params.flatten().string());
/frameworks/base/core/java/android/hardware/
H A DCamera.java1495 native_setParameters(params.flatten());
2024 public String flatten() { method in class:Camera.Parameters
2040 * <p>The {@link #flatten()} method does the reverse.</p>

Completed in 1362 milliseconds

12