• Home
  • Raw
  • Download

Lines Matching defs:const

189     const sp<IBinder>& binder, sp<IBinder>* out) const  in finishUnflattenBinder()
295 status_t Parcel::unflattenBinder(sp<IBinder>* out) const in unflattenBinder()
418 void Parcel::setDataPosition(size_t pos) const in setDataPosition()
650 size_t len, int* result) const { in compareDataInRange()
758 status_t Parcel::hasFileDescriptorsInRange(size_t offset, size_t len, bool* result) const { in hasFileDescriptorsInRange()
913 bool Parcel::checkInterface(IBinder* binder) const in checkInterface()
919 IPCThreadState* threadState) const in enforceInterface()
926 IPCThreadState* threadState) const in enforceInterface()
1199 status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const { return readData(str); } in readUtf8FromUtf16()
1200 status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const { return readData(str);… in readUtf8FromUtf16()
1202 status_t Parcel::readString16(std::optional<String16>* pArg) const { return readData(pArg); } in readString16()
1203 status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const { return readData(pArg); } in readString16()
1205 status_t Parcel::readByteVector(std::vector<int8_t>* val) const { return readData(val); } in readByteVector()
1206 status_t Parcel::readByteVector(std::vector<uint8_t>* val) const { return readData(val); } in readByteVector()
1207 status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const { return readData(va… in readByteVector()
1208 status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const { return readData(… in readByteVector()
1209 status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const { return readData(v… in readByteVector()
1210 status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const { return readData… in readByteVector()
1211 status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const { return readData(… in readInt32Vector()
1212 status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const { return readDat… in readInt32Vector()
1213 status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const { return readData(val); } in readInt32Vector()
1214 status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const { return readData(… in readInt64Vector()
1215 status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const { return readDat… in readInt64Vector()
1216 status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const { return readData(val); } in readInt64Vector()
1217 status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const { return readDat… in readUint64Vector()
1218 status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const { return readD… in readUint64Vector()
1219 status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const { return readData(val); } in readUint64Vector()
1220 status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const { return readData(va… in readFloatVector()
1221 status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const { return readData(… in readFloatVector()
1222 status_t Parcel::readFloatVector(std::vector<float>* val) const { return readData(val); } in readFloatVector()
1223 status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const { return readData(… in readDoubleVector()
1224 status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const { return readDat… in readDoubleVector()
1225 status_t Parcel::readDoubleVector(std::vector<double>* val) const { return readData(val); } in readDoubleVector()
1226 status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val)… in readBoolVector()
1227 status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(va… in readBoolVector()
1228 status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); } in readBoolVector()
1229 status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const { return readData(… in readCharVector()
1230 status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const { return readDat… in readCharVector()
1231 status_t Parcel::readCharVector(std::vector<char16_t>* val) const { return readData(val); } in readCharVector()
1234 std::optional<std::vector<std::optional<String16>>>* val) const { return readData(val); } in readString16Vector()
1236std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const { return readData(val); } in readString16Vector()
1237 status_t Parcel::readString16Vector(std::vector<String16>* val) const { return readData(val); } in readString16Vector()
1239 std::optional<std::vector<std::optional<std::string>>>* val) const { return readData(val); } in readUtf8VectorFromUtf16Vector()
1241std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const { return readData(val); } in readUtf8VectorFromUtf16Vector()
1242 status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const { return readDa… in readUtf8VectorFromUtf16Vector()
1244 status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) c… in readUniqueFileDescriptorVector()
1245 status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val)… in readUniqueFileDescriptorVector()
1246 status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const { return r… in readUniqueFileDescriptorVector()
1248 status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const { retur… in readStrongBinderVector()
1249 status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const { ret… in readStrongBinderVector()
1250 status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const { return readData(val)… in readStrongBinderVector()
1252 status_t Parcel::readParcelable(Parcelable* parcelable) const { return readData(parcelable); } in readParcelable()
1703 status_t Parcel::validateReadData(size_t upperBound) const in validateReadData()
1771 status_t Parcel::read(void* outData, size_t len) const in read()
1799 const void* Parcel::readInplace(size_t len) const in readInplace()
1828 status_t Parcel::readOutVectorSizeWithCheck(size_t elmSize, int32_t* size) const { in readOutVectorSizeWithCheck()
1852 status_t Parcel::readAligned(T *pArg) const { in readAligned()
1901 status_t Parcel::readInt32(int32_t *pArg) const in readInt32()
1911 status_t Parcel::readUint32(uint32_t *pArg) const in readUint32()
1921 status_t Parcel::readInt64(int64_t *pArg) const in readInt64()
1932 status_t Parcel::readUint64(uint64_t *pArg) const in readUint64()
1942 status_t Parcel::readPointer(uintptr_t *pArg) const in readPointer()
1958 status_t Parcel::readFloat(float *pArg) const in readFloat()
1971 status_t Parcel::readDouble(double *pArg) const in readDouble()
1996 status_t Parcel::readDouble(double *pArg) const in readDouble()
2008 status_t Parcel::readBool(bool *pArg) const in readBool()
2021 status_t Parcel::readChar(char16_t *pArg) const in readChar()
2034 status_t Parcel::readByte(int8_t *pArg) const in readByte()
2047 status_t Parcel::readUtf8FromUtf16(std::string* str) const { in readUtf8FromUtf16()
2099 status_t Parcel::readString8(String8* pArg) const in readString8()
2112 const char* Parcel::readString8Inplace(size_t* outLen) const in readString8Inplace()
2140 status_t Parcel::readString16(String16* pArg) const in readString16()
2153 const char16_t* Parcel::readString16Inplace(size_t* outLen) const in readString16Inplace()
2171 status_t Parcel::readStrongBinder(sp<IBinder>* val) const in readStrongBinder()
2181 status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const in readNullableStrongBinder()
2307 status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const in readUniqueFileDescriptor()
2329 status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const in readUniqueParcelFileDescriptor()
2351 status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const in readBlob()
2388 status_t Parcel::read(FlattenableHelperInterface& val) const in read()
2440 const flat_binder_object* Parcel::readObject(bool nullMetaData) const in readObject()
2658 void Parcel::print(std::ostream& to, uint32_t /*flags*/) const { in print()