HomeSort by relevance Sort by last modified time
    Searched refs:OpenRef (Results 1 - 6 of 6) sorted by null

  /external/libbrillo/brillo/streams/
memory_stream.h 27 // - OpenRef - overloads for constructing the stream on a constant read-only
74 static StreamPtr OpenRef(const void* buffer, size_t size, ErrorPtr* error);
75 static StreamPtr OpenRef(const std::string& buffer, ErrorPtr* error);
76 static StreamPtr OpenRef(const char* buffer, ErrorPtr* error);
79 inline static StreamPtr OpenRef(const std::vector<T>& buffer,
memory_stream.cc 21 StreamPtr MemoryStream::OpenRef(const void* buffer,
38 StreamPtr MemoryStream::OpenRef(const std::string& buffer, ErrorPtr* error) {
50 StreamPtr MemoryStream::OpenRef(const char* buffer, ErrorPtr* error) {
51 return OpenRef(buffer, std::strlen(buffer), error);
memory_stream_unittest.cc 206 StreamPtr stream = MemoryStream::OpenRef(buffer, sizeof(buffer), nullptr);
234 StreamPtr stream = MemoryStream::OpenRef(str, nullptr);
258 StreamPtr stream = MemoryStream::OpenRef(str, nullptr);
282 StreamPtr stream = MemoryStream::OpenRef(data, nullptr);
345 stream = MemoryStream::OpenRef(buffer, nullptr);
  /external/libbrillo/brillo/http/
http_connection_fake.cc 111 return MemoryStream::OpenRef(response_.GetData(), error);
http_connection_curl_unittest.cc 179 StreamPtr stream = MemoryStream::OpenRef(request_data, nullptr);
227 StreamPtr stream = MemoryStream::OpenRef(request_data, nullptr);
http_form_data.cc 134 streams->push_back(MemoryStream::OpenRef("\r\n", nullptr));

Completed in 90 milliseconds