/aosp12/frameworks/native/libs/graphicsenv/ |
H A D | IGpuService.cpp | 80 error = reply.readUtf8FromUtf16(&driverPath); in getUpdatableDriverPath() 98 if ((status = data.readUtf8FromUtf16(&driverPackageName)) != OK) return status; in onTransact() 101 if ((status = data.readUtf8FromUtf16(&driverVersionName)) != OK) return status; in onTransact() 110 if ((status = data.readUtf8FromUtf16(&appPackageName)) != OK) return status; in onTransact() 134 if ((status = data.readUtf8FromUtf16(&appPackageName)) != OK) return status; in onTransact() 154 if ((status = data.readUtf8FromUtf16(&driverPath)) != OK) return status; in onTransact()
|
H A D | GpuStatsInfo.cpp | 47 if ((status = parcel->readUtf8FromUtf16(&driverPackageName)) != OK) return status; in readFromParcel() 48 if ((status = parcel->readUtf8FromUtf16(&driverVersionName)) != OK) return status; in readFromParcel() 96 if ((status = parcel->readUtf8FromUtf16(&appPackageName)) != OK) return status; in readFromParcel()
|
/aosp12/frameworks/base/libs/services/src/content/ |
H A D | ComponentName.cpp | 58 err = in->readUtf8FromUtf16(&mPackage); in readFromParcel() 63 err = in->readUtf8FromUtf16(&mClass); in readFromParcel()
|
/aosp12/frameworks/native/libs/binder/tests/parcel_fuzzer/ |
H A D | binder.cpp | 139 PARCEL_READ_WITH_STATUS(std::string, readUtf8FromUtf16), 140 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::string>, readUtf8FromUtf16), 141 PARCEL_READ_WITH_STATUS(std::optional<std::string>, readUtf8FromUtf16),
|
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/android/aidl/loggable/ |
H A D | Union.cpp | 26 …if ((_aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&_aidl_value)) != ::android::OK) return _a… in readFromParcel()
|
H A D | Data.cpp | 28 _aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&str); in readFromParcel()
|
/aosp12/frameworks/native/libs/gui/ |
H A D | WindowInfo.cpp | 135 status_t status = parcel->readInt32(&id) ?: parcel->readUtf8FromUtf16(&name); in readFromParcel() 169 parcel->readUtf8FromUtf16(&packageName); in readFromParcel()
|
/aosp12/frameworks/av/media/libaudiofoundation/ |
H A D | AudioDeviceTypeAddr.cpp | 113 status = parcel->readUtf8FromUtf16(&mAddress); in readFromParcel()
|
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/ |
H A D | StructuredParcelable.cpp | 36 _aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&shouldBeJerry); in readFromParcel() 396 _aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&addString1); in readFromParcel() 404 _aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&addString2); in readFromParcel()
|
H A D | Union.cpp | 51 …if ((_aidl_ret_status = _aidl_parcel->readUtf8FromUtf16(&_aidl_value)) != ::android::OK) return _a… in readFromParcel()
|
H A D | ITestService.cpp | 1665 _aidl_ret_status = _aidl_reply.readUtf8FromUtf16(_aidl_return); in RepeatUtf8CppString() 1703 _aidl_ret_status = _aidl_reply.readUtf8FromUtf16(_aidl_return); in RepeatNullableUtf8CppString() 3208 _aidl_ret_status = _aidl_data.readUtf8FromUtf16(&in_token); in onTransact() 3234 _aidl_ret_status = _aidl_data.readUtf8FromUtf16(&in_token); in onTransact()
|
/aosp12/system/iorap/include/binder/ |
H A D | auto_parcelable.h | 168 result = parcel->readUtf8FromUtf16(/*out*/&value); in readAnyFromParcel()
|
/aosp12/frameworks/native/libs/binder/tests/ |
H A D | binderParcelTest.cpp | 88 EXPECT_EQ(OK, p->readUtf8FromUtf16(&s)); in TEST()
|
/aosp12/frameworks/av/camera/camera2/ |
H A D | CaptureRequest.cpp | 98 parcel->readUtf8FromUtf16(&className); in readFromParcel()
|
/aosp12/frameworks/native/include/binder/ |
H A D | Parcel.h | 348 status_t readUtf8FromUtf16(std::string* str) const; 349 status_t readUtf8FromUtf16(std::optional<std::string>* str) const; 350 …status_t readUtf8FromUtf16(std::unique_ptr<std::string>* str) const __attribute__((depr… 979 return readUtf8FromUtf16(t);
|
/aosp12/frameworks/native/libs/binder/include/binder/ |
H A D | Parcel.h | 348 status_t readUtf8FromUtf16(std::string* str) const; 349 status_t readUtf8FromUtf16(std::optional<std::string>* str) const; 350 …status_t readUtf8FromUtf16(std::unique_ptr<std::string>* str) const __attribute__((depr… 979 return readUtf8FromUtf16(t);
|
/aosp12/frameworks/native/libs/binder/ |
H A D | Parcel.cpp | 905 status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const { return readData(str); } in readUtf8FromUtf16() function in android::Parcel 906 status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const { return readData(str);… in readUtf8FromUtf16() function in android::Parcel 1663 status_t Parcel::readUtf8FromUtf16(std::string* str) const { in readUtf8FromUtf16() function in android::Parcel
|
/aosp12/frameworks/native/libs/input/ |
H A D | InputTransport.cpp | 459 return parcel->readUtf8FromUtf16(&mName) ?: parcel->readUniqueFileDescriptor(&mFd); in readFromParcel()
|