Lines Matching refs:Parcel
176 const sp<IBinder>& /*binder*/, const flat_binder_object& flat, Parcel* out) in finish_flatten_binder()
182 const sp<IBinder>& binder, Parcel* out) in flatten_binder()
225 const Parcel& /*in*/) in finish_unflatten_binder() argument
231 const Parcel& in, sp<IBinder>* out) in unflatten_binder()
251 Parcel::Parcel() in Parcel() function in android::hardware::Parcel
257 Parcel::~Parcel() in ~Parcel()
263 size_t Parcel::getGlobalAllocSize() { in getGlobalAllocSize()
270 size_t Parcel::getGlobalAllocCount() { in getGlobalAllocCount()
277 const uint8_t* Parcel::data() const in data()
282 size_t Parcel::dataSize() const in dataSize()
287 size_t Parcel::dataAvail() const in dataAvail()
296 size_t Parcel::dataPosition() const in dataPosition()
301 size_t Parcel::dataCapacity() const in dataCapacity()
306 status_t Parcel::setDataSize(size_t size) in setDataSize()
323 void Parcel::setDataPosition(size_t pos) const in setDataPosition()
335 status_t Parcel::setDataCapacity(size_t size) in setDataCapacity()
347 status_t Parcel::setData(const uint8_t* buffer, size_t len) in setData()
365 status_t Parcel::writeInterfaceToken(const char* interface) in writeInterfaceToken()
371 bool Parcel::enforceInterface(const char* interface) const in enforceInterface()
383 const binder_size_t* Parcel::objects() const in objects()
388 size_t Parcel::objectsCount() const in objectsCount()
393 status_t Parcel::errorCheck() const in errorCheck()
398 void Parcel::setError(status_t err) in setError()
403 status_t Parcel::finishWrite(size_t len) in finishWrite()
422 status_t Parcel::writeUnpadded(const void* data, size_t len) in writeUnpadded()
447 status_t Parcel::write(const void* data, size_t len) in write()
463 void* Parcel::writeInplace(size_t len) in writeInplace()
509 status_t Parcel::writeInt8(int8_t val) in writeInt8()
514 status_t Parcel::writeUint8(uint8_t val) in writeUint8()
519 status_t Parcel::writeInt16(int16_t val) in writeInt16()
524 status_t Parcel::writeUint16(uint16_t val) in writeUint16()
529 status_t Parcel::writeInt32(int32_t val) in writeInt32()
534 status_t Parcel::writeUint32(uint32_t val) in writeUint32()
539 status_t Parcel::writeBool(bool val) in writeBool()
543 status_t Parcel::writeInt64(int64_t val) in writeInt64()
548 status_t Parcel::writeUint64(uint64_t val) in writeUint64()
553 status_t Parcel::writePointer(uintptr_t val) in writePointer()
558 status_t Parcel::writeFloat(float val) in writeFloat()
565 status_t Parcel::writeDouble(double val) in writeDouble()
577 status_t Parcel::writeDouble(double val) in writeDouble()
584 status_t Parcel::writeCString(const char* str) in writeCString()
588 status_t Parcel::writeString16(const std::unique_ptr<String16>& str) in writeString16()
597 status_t Parcel::writeString16(const String16& str) in writeString16()
602 status_t Parcel::writeString16(const char16_t* str, size_t len) in writeString16()
619 status_t Parcel::writeStrongBinder(const sp<IBinder>& val) in writeStrongBinder()
625 status_t Parcel::writeObject(const T& val) in writeObject()
693 template status_t Parcel::writeObject<flat_binder_object>(const flat_binder_object& val);
694 template status_t Parcel::writeObject<binder_fd_object>(const binder_fd_object& val);
695 template status_t Parcel::writeObject<binder_buffer_object>(const binder_buffer_object& val);
696 template status_t Parcel::writeObject<binder_fd_array_object>(const binder_fd_array_object& val);
698 bool Parcel::validateBufferChild(size_t child_buffer_handle, in validateBufferChild()
714 bool Parcel::validateBufferParent(size_t parent_buffer_handle, in validateBufferParent()
728 status_t Parcel::writeEmbeddedBuffer( in writeEmbeddedBuffer()
751 status_t Parcel::writeBuffer(const void *buffer, size_t length, size_t *handle) in writeBuffer()
768 void Parcel::clearCache() const { in clearCache()
774 void Parcel::updateCache() const { in updateCache()
794 status_t Parcel::findBuffer(const void *ptr, size_t length, bool *found, in findBuffer()
826 status_t Parcel::quickFindBuffer(const void *ptr, size_t *handle) const { in quickFindBuffer()
840 status_t Parcel::writeNativeHandleNoDup(const native_handle_t *handle, in writeNativeHandleNoDup()
879 status_t Parcel::writeNativeHandleNoDup(const native_handle_t *handle) in writeNativeHandleNoDup()
884 status_t Parcel::writeEmbeddedNativeHandle(const native_handle_t *handle, in writeEmbeddedNativeHandle()
892 void Parcel::remove(size_t /*start*/, size_t /*amt*/) in remove()
897 status_t Parcel::read(void* outData, size_t len) const in read()
915 const void* Parcel::readInplace(size_t len) const in readInplace()
934 status_t Parcel::readAligned(T *pArg) const { in readAligned()
948 T Parcel::readAligned() const { in readAligned()
958 status_t Parcel::writeAligned(T val) { in writeAligned()
972 status_t Parcel::readInt8(int8_t *pArg) const in readInt8()
977 status_t Parcel::readUint8(uint8_t *pArg) const in readUint8()
982 status_t Parcel::readInt16(int16_t *pArg) const in readInt16()
987 status_t Parcel::readUint16(uint16_t *pArg) const in readUint16()
992 status_t Parcel::readInt32(int32_t *pArg) const in readInt32()
997 int32_t Parcel::readInt32() const in readInt32()
1002 status_t Parcel::readUint32(uint32_t *pArg) const in readUint32()
1007 uint32_t Parcel::readUint32() const in readUint32()
1012 status_t Parcel::readInt64(int64_t *pArg) const in readInt64()
1017 int64_t Parcel::readInt64() const in readInt64()
1022 status_t Parcel::readUint64(uint64_t *pArg) const in readUint64()
1027 uint64_t Parcel::readUint64() const in readUint64()
1032 status_t Parcel::readPointer(uintptr_t *pArg) const in readPointer()
1042 uintptr_t Parcel::readPointer() const in readPointer()
1048 status_t Parcel::readFloat(float *pArg) const in readFloat()
1054 float Parcel::readFloat() const in readFloat()
1061 status_t Parcel::readDouble(double *pArg) const in readDouble()
1074 double Parcel::readDouble() const in readDouble()
1086 status_t Parcel::readDouble(double *pArg) const in readDouble()
1091 double Parcel::readDouble() const in readDouble()
1098 status_t Parcel::readBool(bool *pArg) const in readBool()
1106 bool Parcel::readBool() const in readBool()
1118 const char* Parcel::readCString() const in readCString()
1134 String16 Parcel::readString16() const in readString16()
1143 status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const in readString16()
1166 status_t Parcel::readString16(String16* pArg) const in readString16()
1179 const char16_t* Parcel::readString16Inplace(size_t* outLen) const in readString16Inplace()
1193 status_t Parcel::readStrongBinder(sp<IBinder>* val) const in readStrongBinder()
1202 status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const in readNullableStrongBinder()
1207 sp<IBinder> Parcel::readStrongBinder() const in readStrongBinder()
1218 const T* Parcel::readObject(size_t *objects_offset) const in readObject()
1312 template const flat_binder_object* Parcel::readObject<flat_binder_object>(size_t *objects_offset) c…
1314 template const binder_fd_object* Parcel::readObject<binder_fd_object>(size_t *objects_offset) const;
1316 template const binder_buffer_object* Parcel::readObject<binder_buffer_object>(size_t *objects_offse…
1318 template const binder_fd_array_object* Parcel::readObject<binder_fd_array_object>(size_t *objects_o…
1320 bool Parcel::verifyBufferObject(const binder_buffer_object *buffer_obj, in verifyBufferObject()
1363 status_t Parcel::readBuffer(size_t buffer_size, size_t *buffer_handle, in readBuffer()
1383 status_t Parcel::readNullableBuffer(size_t buffer_size, size_t *buffer_handle, in readNullableBuffer()
1391 status_t Parcel::readBuffer(size_t buffer_size, size_t *buffer_handle, in readBuffer()
1402 status_t Parcel::readEmbeddedBuffer(size_t buffer_size, in readEmbeddedBuffer()
1417 status_t Parcel::readNullableEmbeddedBuffer(size_t buffer_size, in readNullableEmbeddedBuffer()
1427 status_t Parcel::readEmbeddedNativeHandle(size_t parent_buffer_handle, in readEmbeddedNativeHandle()
1438 status_t Parcel::readNullableNativeHandleNoDup(const native_handle_t **handle, in readNullableNativeHandleNoDup()
1540 status_t Parcel::readNullableEmbeddedNativeHandle(size_t parent_buffer_handle, in readNullableEmbeddedNativeHandle()
1548 status_t Parcel::readNativeHandleNoDup(const native_handle_t **handle) const in readNativeHandleNoDup()
1557 status_t Parcel::readNullableNativeHandleNoDup(const native_handle_t **handle) const in readNullableNativeHandleNoDup()
1562 void Parcel::closeFileDescriptors() in closeFileDescriptors()
1579 uintptr_t Parcel::ipcData() const in ipcData()
1584 size_t Parcel::ipcDataSize() const in ipcDataSize()
1589 uintptr_t Parcel::ipcObjects() const in ipcObjects()
1594 size_t Parcel::ipcObjectsCount() const in ipcObjectsCount()
1600 size_t Parcel::ipcBufferSize() const in ipcBufferSize()
1624 void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize, in ipcSetDataReference()
1654 void Parcel::print(TextOutput& to, uint32_t /*flags*/) const in print()
1689 void Parcel::releaseObjects() in releaseObjects()
1703 void Parcel::acquireObjects() in acquireObjects()
1717 void Parcel::freeData() in freeData()
1723 void Parcel::freeDataNoInit() in freeDataNoInit()
1750 status_t Parcel::growData(size_t len) in growData()
1763 status_t Parcel::restartWrite(size_t desired) in restartWrite()
1813 status_t Parcel::continueWrite(size_t desired) in continueWrite()
1980 void Parcel::initState() in initState()
2013 void Parcel::scanForFds() const in scanForFds()