MCPcopy Create free account
hub / github.com/HexHive/NASS / read

Method read

binderlib/include/binder/SafeInterface.h:42–44  ·  view source on GitHub ↗

Specializations for types with dedicated handling in Parcel

Source from the content-addressed store, hash-verified

40
41 // Specializations for types with dedicated handling in Parcel
42 status_t read(const Parcel& parcel, bool* b) const {
43 return callParcel("readBool", [&]() { return parcel.readBool(b); });
44 }
45 status_t write(Parcel* parcel, bool b) const {
46 return callParcel("writeBool", [&]() { return parcel->writeBool(b); });
47 }

Callers 2

readIfOutputMethod · 0.45
readIfInputMethod · 0.45

Calls 7

readBoolMethod · 0.45
getMethod · 0.45
readParcelableMethod · 0.45
readString8Method · 0.45
readParcelableVectorMethod · 0.45
readFloatMethod · 0.45

Tested by

no test coverage detected