Home
last modified time | relevance | path

Searched refs:data_stream (Results 1 – 5 of 5) sorted by relevance

/external/dynamic_depth/internal/xmpmeta/
Dxmp_writer.cc131 std::ostringstream data_stream; in CreateStandardSectionXmpString() local
132 data_stream.write(XmpConst::Header(), strlen(XmpConst::Header())); in CreateStandardSectionXmpString()
133 data_stream.write(kCEmptyString, 1); in CreateStandardSectionXmpString()
134 data_stream.write(buffer.c_str(), buffer.length()); in CreateStandardSectionXmpString()
135 *value = data_stream.str(); in CreateStandardSectionXmpString()
156 std::ostringstream data_stream; in CreateExtendedSections() local
157 data_stream.write(XmpConst::ExtensionHeader(), in CreateExtendedSections()
159 data_stream.write(kCEmptyString, 1); in CreateExtendedSections()
160 data_stream.write(guid.c_str(), guid.length()); in CreateExtendedSections()
163 WriteIntTo4Bytes(buffer_length, &data_stream); in CreateExtendedSections()
[all …]
/external/python/setuptools/setuptools/tests/
Denvironment.py18 data_stream=0, env=None): argument
49 data = proc.communicate()[data_stream]
Dtest_egg_info.py444 data_stream=1,
462 data_stream=1,
486 data_stream=1,
515 data_stream=1,
535 data_stream=1,
577 data_stream=1,
/external/libbrillo/brillo/http/
Dhttp_connection_curl_test.cc319 auto data_stream = connection_->ExtractDataStream(nullptr); in TEST_F() local
320 ASSERT_NE(nullptr, data_stream.get()); in TEST_F()
/external/webrtc/pc/
Dwebrtc_sdp_unittest.cc1818 StreamParams data_stream; in AddRtpDataChannel() local
1819 data_stream.id = kDataChannelMsid; in AddRtpDataChannel()
1820 data_stream.cname = kDataChannelCname; in AddRtpDataChannel()
1821 data_stream.set_stream_ids({kDataChannelLabel}); in AddRtpDataChannel()
1822 data_stream.ssrcs.push_back(kDataChannelSsrc); in AddRtpDataChannel()
1823 data_desc_->AddStream(data_stream); in AddRtpDataChannel()