Searched refs:buffer_copy (Results 1 - 8 of 8) sorted by relevance

/external/parameter-framework/asio/include/asio/
H A Dbuffer.hpp495 * The @ref buffer_copy function may be used to copy raw bytes between
498 * In particular, when used with the @ref buffer_size, the @ref buffer_copy
504 * asio::buffer_copy(asio::buffer(data), buffers); @endcode
506 * Note that @ref buffer_copy is implemented in terms of @c memcpy, and
1096 /** @defgroup buffer_copy asio::buffer_copy
1098 * @brief The asio::buffer_copy function is used to copy bytes from a
1101 * The @c buffer_copy function is available in two forms:
1103 * @li A 2-argument form: @c buffer_copy(target, source)
1105 * @li A 3-argument form: @c buffer_copy(targe
1143 inline std::size_t buffer_copy(const mutable_buffer& target, function in namespace:asio
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbuffer.hpp495 * The @ref buffer_copy function may be used to copy raw bytes between
498 * In particular, when used with the @ref buffer_size, the @ref buffer_copy
504 * asio::buffer_copy(asio::buffer(data), buffers); @endcode
506 * Note that @ref buffer_copy is implemented in terms of @c memcpy, and
1096 /** @defgroup buffer_copy asio::buffer_copy
1098 * @brief The asio::buffer_copy function is used to copy bytes from a
1101 * The @c buffer_copy function is available in two forms:
1103 * @li A 2-argument form: @c buffer_copy(target, source)
1105 * @li A 3-argument form: @c buffer_copy(targe
1143 inline std::size_t buffer_copy(const mutable_buffer& target, function in namespace:asio
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cc228 char *buffer_copy = internal_strdup(buffs[i]); local
229 RemoveANSIEscapeSequencesFromString(buffer_copy);
230 EXPECT_STREQ(buffer_copy, buffs[i+1]);
231 InternalFree(buffer_copy);
/external/webrtc/talk/media/base/
H A Dfakenetworkinterface.h143 rtc::Buffer buffer_copy(*packet);
145 if (!SetRtpSsrc(buffer_copy.data(), buffer_copy.size(),
149 PostMessage(ST_RTP, buffer_copy);
/external/libvncserver/libvncclient/
H A Dzrle.c239 uint8_t* buffer_copy = buffer; local
415 return buffer-buffer_copy;
/external/compiler-rt/lib/asan/
H A Dasan_report.cc692 InternalScopedBuffer<char> buffer_copy(kErrorMessageBufferSize);
695 internal_memcpy(buffer_copy.data(),
700 RemoveANSIEscapeSequencesFromString(buffer_copy.data());
702 LogFullErrorReport(buffer_copy.data());
705 error_report_callback(buffer_copy.data());
/external/libchrome/base/
H A Dvalues.cc325 char* buffer_copy = new char[size]; local
326 memcpy(buffer_copy, buffer, size);
327 scoped_ptr<char[]> scoped_buffer_copy(buffer_copy);
/external/libweave/third_party/chromium/base/
H A Dvalues.cc310 char* buffer_copy = new char[size]; local
311 memcpy(buffer_copy, buffer, size);
312 scoped_ptr<char[]> scoped_buffer_copy(buffer_copy);

Completed in 231 milliseconds