Home
last modified time | relevance | path

Searched refs:GetDirectBufferPointer (Results 1 – 4 of 4) sorted by relevance

/third_party/protobuf/src/google/protobuf/io/
Dcoded_stream.h213 bool GetDirectBufferPointer(const void** data, int* size);
967 bool GetDirectBufferPointer(void** data, int* size, uint8** pp);
1089 bool GetDirectBufferPointer(void** data, int* size) { in GetDirectBufferPointer() function
1090 return impl_.GetDirectBufferPointer(data, size, &cur_); in GetDirectBufferPointer()
Dcoded_stream_unittest.cc960 EXPECT_TRUE(coded_input.GetDirectBufferPointer(&ptr, &size)); in TEST_F()
965 EXPECT_TRUE(coded_input.GetDirectBufferPointer(&ptr, &size)); in TEST_F()
971 EXPECT_TRUE(coded_input.GetDirectBufferPointer(&ptr, &size)); in TEST_F()
977 EXPECT_TRUE(coded_input.GetDirectBufferPointer(&ptr, &size)); in TEST_F()
Dcoded_stream.cc233 bool CodedInputStream::GetDirectBufferPointer(const void** data, int* size) { in GetDirectBufferPointer() function in google::protobuf::io::CodedInputStream
744 bool EpsCopyOutputStream::GetDirectBufferPointer(void** data, int* size, in GetDirectBufferPointer() function in google::protobuf::io::EpsCopyOutputStream
/third_party/protobuf/src/google/protobuf/
Dmessage_lite.cc210 if (!cis_->GetDirectBufferPointer(data, size)) return false; in Next()