Home
last modified time | relevance | path

Searched defs:ExampleFlattenable (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/native/libs/binder/tests/parcel_fuzzer/
H A Dbinder.cpp46 struct ExampleFlattenable : public android::Flattenable<ExampleFlattenable> { struct
48 size_t getFlattenedSize() const { return sizeof(mValue); } in getFlattenedSize()
49 size_t getFdCount() const { return 0; } in getFdCount()
50 status_t flatten(void*& /*buffer*/, size_t& /*size*/, int*& /*fds*/, size_t& /*count*/) const { in flatten()
54 status_t unflatten(void const*& buffer, size_t& size, int const*& /*fds*/, size_t& /*count*/) { in unflatten()
62 int32_t mValue = 0xFEEDBEEF;