Lines Matching defs:value
92 void EventLog::TagBuffer::writeInt32(int32_t value) {
94 const size_t needed = 1 + sizeof(value);
100 memcpy(&mStorage[mPos + 1], &value, sizeof(value));
104 void EventLog::TagBuffer::writeInt64(int64_t value) {
106 const size_t needed = 1 + sizeof(value);
112 memcpy(&mStorage[mPos + 1], &value, sizeof(value));
116 void EventLog::TagBuffer::writeString8(const String8& value) {
118 const int32_t stringLen = value.length();
126 memcpy(&mStorage[mPos + 5], value.string(), stringLen);