Home
last modified time | relevance | path

Searched refs:ReadData (Results 1 - 25 of 73) sorted by relevance

123

/foundation/arkui/ace_engine/frameworks/bridge/codec/
H A Dbyte_buffer_operator.cpp20 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 Dbyte_buffer_operator.h35 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 Dstandard_codec_buffer_operator.cpp35 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 Dstandard_function_codec.cpp39 if (!bufferReader.ReadData(funcName)) { in DecodeFunctionCall()
58 if (!bufferReader.ReadData(platformMessage)) { in DecodePlatformMessage()
H A Dstandard_codec_buffer_operator.h34 bool ReadData(CodecData& resultData);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/sharedata/
H A Djs_share_data.cpp80 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 Dmetadata_reader.cpp42 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 Ddemuxer_unit_test.h38 void ReadData();
39 void ReadData(int readNum, int64_t &seekTime);
H A Ddemuxer_hevc_unit_test.cpp473 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 Ddemuxer_uri_unit_test.cpp599 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 Ddemuxer_unit_test.cpp217 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 Dpng_decoder.cpp873 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 Dhfp_ag_data_connection.cpp144 int HfpAgDataConnection::ReadData(Packet **pkt) const in ReadData() function in OHOS::bluetooth::HfpAgDataConnection
146 return rfcommConnection_.ReadData(pkt); in ReadData()
H A Dhfp_ag_rfcomm_connection.h105 int ReadData(Packet **pkt) const;
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/box/
H A Ditem_data_box.h53 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 Dhfp_hf_data_connection.cpp125 int HfpHfDataConnection::ReadData(Packet **pkt) const in ReadData() function in OHOS::bluetooth::HfpHfDataConnection
127 return rfcommConnection_.ReadData(pkt); in ReadData()
H A Dhfp_hf_profile.h117 int ReadData();
H A Dhfp_hf_rfcomm_connection.h105 int ReadData(Packet **pkt) const;
/foundation/ability/idl_tool/util/
H A Dfile.h58 bool ReadData(void* data, size_t size);
/foundation/barrierfree/accessibility/common/interface/include/
H A Daccessibility_element_operator_callback_stub.h32 std::vector<AccessibilityElementInfo> ReadData();
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/
H A Ditem_data_box.cpp96 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 Dpa_stream_test.cpp390 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 Dmock_accessibility_element_operator_callback_stub.cpp67 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 Daccessibility_element_operator_callback_stub.cpp67 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 Dfile.h59 size_t ReadData(void *data, size_t size) const;

Completed in 14 milliseconds

123