HomeSort by relevance Sort by last modified time
    Searched defs:OpenCopyOf (Results 1 - 2 of 2) sorted by null

  /external/libbrillo/brillo/streams/
memory_stream.h 33 // - OpenCopyOf - overloads to construct a stream that copies the data from the
57 static StreamPtr OpenCopyOf(const void* buffer, size_t size, ErrorPtr* error);
58 static StreamPtr OpenCopyOf(std::string buffer, ErrorPtr* error);
59 static StreamPtr OpenCopyOf(const char* buffer, ErrorPtr* error);
62 inline static StreamPtr OpenCopyOf(std::vector<T> buffer, ErrorPtr* error) {
memory_stream.cc 29 StreamPtr MemoryStream::OpenCopyOf(const void* buffer,
44 StreamPtr MemoryStream::OpenCopyOf(std::string buffer, ErrorPtr* error) {
54 StreamPtr MemoryStream::OpenCopyOf(const char* buffer, ErrorPtr* error) {
55 return OpenCopyOf(buffer, std::strlen(buffer), error);

Completed in 563 milliseconds