OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outer_string
(Results
1 - 2
of
2
) sorted by null
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc
91
std::string
outer_string
= message.SerializeAsString();
local
94
util::PoloUtil::IntToBigEndianBytes(
outer_string
.length(), size_bytes);
96
std::vector<unsigned char> data(
outer_string
.length() + 4);
99
memcpy((buffer + 4), &
outer_string
[0],
outer_string
.length());
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc
400
std::string
outer_string
= message.SerializeAsString();
local
403
util::PoloUtil::IntToBigEndianBytes(
outer_string
.length(), size_bytes);
405
std::vector<uint8_t> data(
outer_string
.length() + 4);
409
std::copy(
outer_string
.begin(),
outer_string
.end(), iter + 4);
Completed in 44 milliseconds