Home
last modified time | relevance | path

Searched refs:SerializedLogEntry (Results 1 – 6 of 6) sorted by relevance

/system/core/logd/
DSerializedLogEntry.h34 class __attribute__((packed)) SerializedLogEntry {
36 SerializedLogEntry(uid_t uid, pid_t pid, pid_t tid, uint64_t sequence, log_time realtime, in SerializedLogEntry() function
44 SerializedLogEntry(const SerializedLogEntry& elem) = delete;
45 SerializedLogEntry& operator=(const SerializedLogEntry& elem) = delete;
46 ~SerializedLogEntry() { in ~SerializedLogEntry()
DSerializedLogChunk.h39 SerializedLogEntry* Log(uint64_t sequence, log_time realtime, uid_t uid, pid_t pid, pid_t tid,
57 const SerializedLogEntry* log_entry(int offset) const { in log_entry()
58 return reinterpret_cast<const SerializedLogEntry*>(data() + offset); in log_entry()
DSerializedFlushToState.h33 MinHeapElement(log_id_t log_id, const SerializedLogEntry* entry) in MinHeapElement()
36 const SerializedLogEntry* entry;
DSerializedLogChunk.cpp106 SerializedLogEntry* SerializedLogChunk::Log(uint64_t sequence, log_time realtime, uid_t uid, in Log()
109 auto* entry = new (new_log_address) SerializedLogEntry(uid, pid, tid, sequence, realtime, len); in Log()
DSerializedLogChunkTest.cpp33 size_t expected_total_len = sizeof(SerializedLogEntry) + sizeof(log_message); in TEST()
58 size_t individual_message_size = sizeof(SerializedLogEntry) + sizeof(log_message); in TEST()
DSerializedLogBuffer.cpp90 auto total_len = sizeof(SerializedLogEntry) + len; in Log()