/frameworks/native/libs/binder/include/binder/ |
D | Parcel.h | 457 { return readData(val); } in readEnumVector() 461 { return readData(val); } in readEnumVector() 464 { return readData(val); } in readEnumVector() 468 { return readData(val); } in readEnumVector() 472 { return readData(val); } in readEnumVector() 475 { return readData(val); } in readEnumVector() 480 { return readData(val); } in readParcelableVector() 485 { return readData(val); } in readParcelableVector() 488 { return readData(val); } in readParcelableVector() 494 { return readData(parcelable); } in readParcelable() [all …]
|
/frameworks/native/include/binder/ |
D | Parcel.h | 457 { return readData(val); } in readEnumVector() 461 { return readData(val); } in readEnumVector() 464 { return readData(val); } in readEnumVector() 468 { return readData(val); } in readEnumVector() 472 { return readData(val); } in readEnumVector() 475 { return readData(val); } in readEnumVector() 480 { return readData(val); } in readParcelableVector() 485 { return readData(val); } in readParcelableVector() 488 { return readData(val); } in readParcelableVector() 494 { return readData(parcelable); } in readParcelable() [all …]
|
/frameworks/av/media/mtp/ |
D | MtpDevice.cpp | 361 if (!readData()) in getDeviceInfo() 380 if (!readData()) in getStorageIDs() 396 if (!readData()) in getStorageInfo() 419 if (!readData()) in getObjectHandles() 437 if (!readData()) in getObjectInfo() 455 if (sendRequest(MTP_OPERATION_GET_THUMB) && readData()) { in getThumbnail() 581 if (!readData()) in getObjectPropsSupported() 598 if (!readData()) in getDevicePropDesc() 645 if (!readData()) in getObjectPropDesc() 669 if (!readData()) in getObjectPropValue() [all …]
|
D | MtpDevice.h | 159 bool readData(ReadObjectCallback callback, 165 bool readData();
|
D | MtpDataPacket.h | 108 int readData(struct usb_request *request, void* buffer, int length);
|
D | MtpDataPacket.cpp | 504 int MtpDataPacket::readData(struct usb_request *request, void* buffer, int length) { in readData() function in android::MtpDataPacket
|
/frameworks/base/cmds/hid/src/com/android/commands/hid/ |
D | Event.java | 255 eb.setDescriptor(readData()); in getNextEvent() 273 eb.setReport(readData()); in getNextEvent() 304 private byte[] readData() throws IOException { in readData() method in Event.Reader 361 data = readData(); in readFeatureReports() 402 output = readData(); in readOutputs() 405 response = readData(); in readOutputs()
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 1314 status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const { return readData(str); } in readUtf8FromUtf16() 1315 status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const { return readData(str);… in readUtf8FromUtf16() 1317 status_t Parcel::readString16(std::optional<String16>* pArg) const { return readData(pArg); } in readString16() 1318 status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const { return readData(pArg); } in readString16() 1320 status_t Parcel::readByteVector(std::vector<int8_t>* val) const { return readData(val); } in readByteVector() 1321 status_t Parcel::readByteVector(std::vector<uint8_t>* val) const { return readData(val); } in readByteVector() 1322 status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const { return readData(va… in readByteVector() 1323 status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const { return readData(… in readByteVector() 1324 status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const { return readData(v… in readByteVector() 1325 status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const { return readData… in readByteVector() [all …]
|
/frameworks/base/libs/hwui/jni/ |
D | ScopedParcel.h | 52 std::optional<sk_sp<SkData>> readData();
|
D | ScopedParcel.cpp | 60 std::optional<sk_sp<SkData>> ScopedParcel::readData() { in readData() function in ScopedParcel
|
D | Bitmap.cpp | 754 const auto optColorSpaceData = p.readData(); in Bitmap_createFromParcel()
|
/frameworks/base/apct-tests/perftests/blobstore/src/com/android/perftests/blob/ |
D | BlobStorePerfTests.java | 138 readData(inputStream, sizeBytes); in testDirectReads() 157 readData(inputStream, sizeBytes); in testBlobStoreReads() 203 private void readData(FileInputStream inputStream, long sizeBytes) throws Exception { in readData() method in BlobStorePerfTests
|
/frameworks/base/core/java/com/android/internal/os/ |
D | KernelSingleUidTimeReader.java | 108 final byte[] data = mInjector.readData(procFile); in readDeltaMs() 263 public byte[] readData(String procFile) throws IOException { in readData() method in KernelSingleUidTimeReader.Injector
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pdb/ |
D | PersistentDataBlockServiceTest.java | 428 assertContains("FRP data", readData(channel, mPdbService.getMaximumFrpDataSize()).array(), in testPartitionFormat() 434 assertThat(readData(channel, FRP_SECRET_MAGIC.length).array()).isEqualTo( in testPartitionFormat() 438 assertContains("FRP secret", readData(channel, FRP_SECRET_SIZE).array(), (byte) 0); in testPartitionFormat() 443 assertContains("Test data", readData(channel, TEST_MODE_RESERVED_SIZE).array(), in testPartitionFormat() 448 assertContains("FRP credential", readData(channel, FRP_CREDENTIAL_RESERVED_SIZE).array(), in testPartitionFormat() 453 assertThat(new byte[]{1}).isEqualTo(readData(channel, 1).array()); in testPartitionFormat() 1050 private static ByteBuffer readData(FileChannel channel, int length) throws IOException { in readData() method in PersistentDataBlockServiceTest
|
/frameworks/base/tests/CoreTests/android/core/ |
D | TestWebServer.java | 473 private int readData(InputStream is, int length) { in readData() method in TestWebServer.Worker 633 length = readData(is, length); in readContent()
|
/frameworks/base/native/android/tests/performance_hint/ |
D | PerformanceHintNativeTest.cpp | 332 hal::ChannelMessage readData; in expectToReadFromFmq() local 333 mMockFMQ->readBlocking(&readData, 1, mReadBits, mWriteBits, 1000000000, mEventFlag); in expectToReadFromFmq() 334 C got = static_cast<C>(readData.data.get<T>()); in expectToReadFromFmq()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
D | KernelSingleUidTimeReaderTest.java | 346 public byte[] readData(String procFile) throws IOException { in readData() method in KernelSingleUidTimeReaderTest.TestInjector
|
/frameworks/av/media/mtp/tests/MtpFuzzer/ |
D | mtp_data_packet_fuzzer.cpp | 247 mtpDataPacket.readData(&mUsbRequest, data.data(), data.size()); in process()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 53296 method public abstract void readData(javax.sql.RowSetInternal) throws java.sql.SQLException;
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 74217 Lcom/android/internal/os/KernelSingleUidTimeReader$Injector;->readData(Ljava/lang/String;)[B
|