Home
last modified time | relevance | path

Searched refs:buffer_copy (Results 1 – 6 of 6) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/
Dbuffer.hpp1143 inline std::size_t buffer_copy(const mutable_buffer& target, in buffer_copy() function
1173 inline std::size_t buffer_copy(const mutable_buffer& target, in buffer_copy() function
1176 return buffer_copy(target, static_cast<const const_buffer&>(source)); in buffer_copy()
1199 inline std::size_t buffer_copy(const mutable_buffer& target, in buffer_copy() function
1202 return buffer_copy(target, const_buffer(source)); in buffer_copy()
1225 inline std::size_t buffer_copy(const mutable_buffer& target, in buffer_copy() function
1228 return buffer_copy(target, const_buffer(source)); in buffer_copy()
1251 std::size_t buffer_copy(const mutable_buffer& target, in buffer_copy() function
1263 std::size_t bytes_copied = buffer_copy(target_buffer, source_buffer); in buffer_copy()
1290 inline std::size_t buffer_copy(const mutable_buffers_1& target, in buffer_copy() function
[all …]
/external/webrtc/talk/media/base/
Dfakenetworkinterface.h143 rtc::Buffer buffer_copy(*packet); in SendPacket()
145 if (!SetRtpSsrc(buffer_copy.data(), buffer_copy.size(), in SendPacket()
149 PostMessage(ST_RTP, buffer_copy); in SendPacket()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_common_test.cc228 char *buffer_copy = internal_strdup(buffs[i]); in TEST() local
229 RemoveANSIEscapeSequencesFromString(buffer_copy); in TEST()
230 EXPECT_STREQ(buffer_copy, buffs[i+1]); in TEST()
231 InternalFree(buffer_copy); in TEST()
/external/libvncserver/libvncclient/
Dzrle.c239 uint8_t* buffer_copy = buffer; in HandleZRLETile() local
415 return buffer-buffer_copy; in HandleZRLETile()
/external/compiler-rt/lib/asan/
Dasan_report.cc696 InternalScopedBuffer<char> buffer_copy(kErrorMessageBufferSize); in ~ScopedInErrorReport() local
699 internal_memcpy(buffer_copy.data(), in ~ScopedInErrorReport()
703 LogFullErrorReport(buffer_copy.data()); in ~ScopedInErrorReport()
706 error_report_callback(buffer_copy.data()); in ~ScopedInErrorReport()
/external/libchrome/base/
Dvalues.cc310 std::unique_ptr<char[]> buffer_copy(new char[size]); in CreateWithCopiedBuffer() local
311 memcpy(buffer_copy.get(), buffer, size); in CreateWithCopiedBuffer()
312 return base::MakeUnique<BinaryValue>(std::move(buffer_copy), size); in CreateWithCopiedBuffer()