/foundation/arkui/ace_engine/frameworks/bridge/codec/ |
H A D | byte_buffer_operator.cpp | 20 bool ByteBufferReader::ReadData(std::map<std::string, std::string>& mapValue) const in ReadData() function in OHOS::Ace::Framework::ByteBufferReader 23 if (!ReadData(size) || size < 0) { in ReadData() 33 if (!ReadData(key) || !ReadData(value)) { in ReadData() 42 bool ByteBufferReader::ReadData(std::set<std::string>& setValue) const in ReadData() function in OHOS::Ace::Framework::ByteBufferReader 45 if (!ReadData(size) || size < 0) { in ReadData() 54 if (!ReadData(value)) { in ReadData()
|
H A D | byte_buffer_operator.h | 35 bool ReadData(uint8_t& value) const in ReadData() function in OHOS::Ace::Framework::final 39 bool ReadData(int32_t& value) const in ReadData() function in OHOS::Ace::Framework::final 43 bool ReadData(int64_t& value) const in ReadData() function in OHOS::Ace::Framework::final 47 bool ReadData(double& value) const in ReadData() function in OHOS::Ace::Framework::final 51 bool ReadData(std::string& value) const in ReadData() function in OHOS::Ace::Framework::final 56 bool ReadData(std::vector<int8_t>& dst) const in ReadData() function in OHOS::Ace::Framework::final 60 bool ReadData(std::vector<int16_t>& dst) const in ReadData() function in OHOS::Ace::Framework::final 64 bool ReadData(std::vector<int32_t>& dst) const in ReadData() function in OHOS::Ace::Framework::final 69 bool ReadData(std::map<std::string, std::string>& dst) const; 70 bool ReadData(st [all...] |
H A D | standard_codec_buffer_operator.cpp | 35 if (buffer.ReadData(data)) { in ReadDataFromByteBuffer() 47 if (byteBufferReader_.ReadData(uint8Type)) { in ReadType() 62 byteBufferReader_.ReadData(data); in ReadMapSize() 72 if (!byteBufferReader_.ReadData(size)) { in ReadDataList() 79 if (!ReadData(data)) { in ReadDataList() 89 bool StandardCodecBufferReader::ReadData(CodecData& resultData) in ReadData() function in OHOS::Ace::Framework::StandardCodecBufferReader
|
H A D | standard_function_codec.cpp | 39 if (!bufferReader.ReadData(funcName)) { in DecodeFunctionCall() 58 if (!bufferReader.ReadData(platformMessage)) { in DecodePlatformMessage()
|
H A D | standard_codec_buffer_operator.h | 34 bool ReadData(CodecData& resultData);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/sharedata/ |
H A D | js_share_data.cpp | 80 byteBufferPtr_->ReadData(data); in ReadInt32() 92 byteBufferPtr_->ReadData(data); in ReadInt64() 104 byteBufferPtr_->ReadData(data); in ReadDouble() 116 byteBufferPtr_->ReadData(data); in ReadString() 127 byteBufferPtr_->ReadData(data); in ReadBoolean() 143 byteBufferPtr_->ReadData(key); in ReadObject() 146 byteBufferPtr_->ReadData(value); in ReadObject()
|
/foundation/ability/idl_tool/metadata/ |
H A D | metadata_reader.cpp | 42 if (!file.ReadData((void*)&header, sizeof(MetaComponent))) { in ReadMetadataFromFile() 63 if (!file.ReadData(data, header.size_)) { in ReadMetadataFromFile()
|
/foundation/multimedia/av_codec/test/unittest/demuxer_test/ |
H A D | demuxer_unit_test.h | 38 void ReadData(); 39 void ReadData(int readNum, int64_t &seekTime);
|
H A D | demuxer_hevc_unit_test.cpp | 473 ReadData(); in HWTEST_F() 510 ReadData(); in HWTEST_F() 548 ReadData(); in HWTEST_F() 583 ReadData(); in HWTEST_F() 618 ReadData(); in HWTEST_F() 656 ReadData(); in HWTEST_F() 691 ReadData(); in HWTEST_F() 726 ReadData(); in HWTEST_F() 763 ReadData(); in HWTEST_F() 800 ReadData(); in HWTEST_F() [all...] |
H A D | demuxer_uri_unit_test.cpp | 599 ReadData(); in HWTEST_F() 654 ReadData(readNum, seekTime); in HWTEST_F() 686 ReadData(); in HWTEST_F() 723 ReadData(); in HWTEST_F() 757 ReadData(); in HWTEST_F() 788 ReadData(); in HWTEST_F() 819 ReadData(); in HWTEST_F() 850 ReadData(); in HWTEST_F() 881 ReadData(); in HWTEST_F() 913 ReadData(); in HWTEST_F() [all...] |
H A D | demuxer_unit_test.cpp | 217 void DemuxerUnitTest::ReadData() in ReadData() function in DemuxerUnitTest 234 void DemuxerUnitTest::ReadData(int readNum, int64_t &seekTime) in ReadData() function in DemuxerUnitTest 949 ReadData(); in HWTEST_F() 1000 ReadData(readNum, seekTime); in HWTEST_F() 1032 ReadData(); in HWTEST_F() 1069 ReadData(); in HWTEST_F() 1103 ReadData(); in HWTEST_F() 1134 ReadData(); in HWTEST_F() 1165 ReadData(); in HWTEST_F() 1196 ReadData(); in HWTEST_F() [all...] |
/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/src/ |
H A D | png_decoder.cpp | 873 DataStreamBuffer ReadData; in PushAllToDecode() local 874 if (ProcessData(pngStructPtr_, pngInfoPtr_, stream, ReadData, bufferSize, length) != SUCCESS) { in PushAllToDecode() 882 ret = IncrementalRead(stream, CHUNK_SIZE, ReadData); in PushAllToDecode() 887 png_byte *chunk = const_cast<png_byte *>(ReadData.inputStreamBuffer); in PushAllToDecode() 899 ret = ProcessData(pngStructPtr_, pngInfoPtr_, stream, ReadData, bufferSize, chunkLength + CHUNK_DATA_LEN); in PushAllToDecode() 969 DataStreamBuffer ReadData; in PushCurrentToDecode() local 973 ret = IncrementalRead(stream, targetSize, ReadData); in PushCurrentToDecode() 978 incrementalLength_ += ReadData.dataSize; in PushCurrentToDecode() 979 png_process_data(pngStructPtr_, pngInfoPtr_, (png_bytep)ReadData.inputStreamBuffer, ReadData in PushCurrentToDecode() [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_data_connection.cpp | 144 int HfpAgDataConnection::ReadData(Packet **pkt) const in ReadData() function in OHOS::bluetooth::HfpAgDataConnection 146 return rfcommConnection_.ReadData(pkt); in ReadData()
|
H A D | hfp_ag_rfcomm_connection.h | 105 int ReadData(Packet **pkt) const;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/box/ |
H A D | item_data_box.h | 53 heif_error ReadData(const Item &item, 92 heif_error ReadData(const std::shared_ptr<HeifInputStream> &stream,
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/ |
H A D | hfp_hf_data_connection.cpp | 125 int HfpHfDataConnection::ReadData(Packet **pkt) const in ReadData() function in OHOS::bluetooth::HfpHfDataConnection 127 return rfcommConnection_.ReadData(pkt); in ReadData()
|
H A D | hfp_hf_profile.h | 117 int ReadData();
|
H A D | hfp_hf_rfcomm_connection.h | 105 int ReadData(Packet **pkt) const;
|
/foundation/ability/idl_tool/util/ |
H A D | file.h | 58 bool ReadData(void* data, size_t size);
|
/foundation/barrierfree/accessibility/common/interface/include/ |
H A D | accessibility_element_operator_callback_stub.h | 32 std::vector<AccessibilityElementInfo> ReadData();
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/ |
H A D | item_data_box.cpp | 96 heif_error HeifIlocBox::ReadData(const Item &item, const std::shared_ptr<HeifInputStream> &stream, 114 idat->ReadData(stream, start, extent.length, *dest); 301 idatBox->ReadData(stream, extent.offset + item.baseOffset, extent.length, extent.data); 372 heif_error HeifIdatBox::ReadData(const std::shared_ptr<HeifInputStream> &stream,
|
/foundation/multimedia/audio_framework/frameworks/native/examples/ |
H A D | pa_stream_test.cpp | 390 int32_t ReadData();
522 int32_t PaCapturerTest::ReadData()
in ReadData() function in OHOS::AudioStandard::PaCapturerTest 792 int32_t ReadData(std::shared_ptr<PaCapturerTest> capturerTest)
in ReadData() function 798 int32_t ret = capturerTest->ReadData();
in ReadData() 847 ReadData(capturerTest);
in HandleCapturerCode()
|
/foundation/barrierfree/accessibility/common/interface/test/unittest/mock/ |
H A D | mock_accessibility_element_operator_callback_stub.cpp | 67 std::vector<AccessibilityElementInfo> StoreElementData::ReadData() in ReadData() function in OHOS::Accessibility::StoreElementData 147 SetSearchElementInfoByAccessibilityIdResult(storeElementData.ReadData(), requestId); in HandleSetSearchElementInfoByAccessibilityIdResult()
|
/foundation/barrierfree/accessibility/common/interface/src/ |
H A D | accessibility_element_operator_callback_stub.cpp | 67 std::vector<AccessibilityElementInfo> StoreElementData::ReadData() in ReadData() function in OHOS::Accessibility::StoreElementData 147 SetSearchElementInfoByAccessibilityIdResult(storeElementData.ReadData(), requestId); in HandleSetSearchElementInfoByAccessibilityIdResult()
|
/foundation/ability/idl_tool/idl_tool_2/util/ |
H A D | file.h | 59 size_t ReadData(void *data, size_t size) const;
|