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

  /system/core/logd/
LogBufferElement.h 35 class __attribute__((packed)) LogBufferElement {
58 LogBufferElement(log_id_t log_id, log_time realtime, uid_t uid, pid_t pid,
60 LogBufferElement(const LogBufferElement& elem);
61 ~LogBufferElement();
LogWhiteBlackList.h 25 #include "LogBufferElement.h"
49 int cmp(LogBufferElement* e) const {
70 bool naughty(LogBufferElement* element);
74 bool nice(LogBufferElement* element);
LogBufferElement.cpp 28 #include "LogBufferElement.h"
33 const log_time LogBufferElement::FLUSH_ERROR((uint32_t)-1, (uint32_t)-1);
34 atomic_int_fast64_t LogBufferElement::sequence(1);
36 LogBufferElement::LogBufferElement(log_id_t log_id, log_time realtime,
50 LogBufferElement::LogBufferElement(const LogBufferElement& elem)
62 LogBufferElement::~LogBufferElement() {
    [all...]
LogTimes.h 32 class LogBufferElement;
145 static int FilterFirstPass(const LogBufferElement* element, void* me);
146 static int FilterSecondPass(const LogBufferElement* element, void* me);
LogBuffer.h 29 #include "LogBufferElement.h"
76 typedef std::list<LogBufferElement*> LogBufferElementCollection;
103 LogBufferElement* lastLoggedElements[LOG_ID_MAX];
104 LogBufferElement* droppedElements[LOG_ID_MAX];
105 void log(LogBufferElement* elem);
125 int (*filter)(const LogBufferElement* element,
LogStatistics.h 39 #include "LogBufferElement.h"
120 inline iterator add(const TKey& key, const LogBufferElement* element) {
140 void subtract(TKey&& key, const LogBufferElement* element) {
147 void subtract(const TKey& key, const LogBufferElement* element) {
154 inline void drop(TKey key, const LogBufferElement* element) {
214 explicit EntryBase(const LogBufferElement* element)
222 inline void add(const LogBufferElement* element) {
225 inline bool subtract(const LogBufferElement* element) {
256 explicit EntryBaseDropped(const LogBufferElement* element)
264 inline void add(const LogBufferElement* element)
    [all...]
FlushCommand.h 22 class LogBufferElement;
LogBuffer.cpp 78 LogBufferElement* e = *it;
139 static enum match_type identical(LogBufferElement* elem,
140 LogBufferElement* last) {
212 LogBufferElement* elem =
213 new LogBufferElement(log_id, realtime, uid, pid, tid, msg, len);
240 LogBufferElement* currentLast = lastLoggedElements[log_id];
242 LogBufferElement* dropped = droppedElements[log_id];
379 lastLoggedElements[log_id] = new LogBufferElement(*elem);
388 void LogBuffer::log(LogBufferElement* elem) {
474 LogBufferElement* element = *it
    [all...]
LogTimes.cpp 164 if (start == LogBufferElement::FLUSH_ERROR) {
190 int LogTimeEntry::FilterFirstPass(const LogBufferElement* element, void* obj) {
218 int LogTimeEntry::FilterSecondPass(const LogBufferElement* element, void* obj) {
LogWhiteBlackList.cpp 253 bool PruneList::naughty(LogBufferElement* element) {
263 bool PruneList::nice(LogBufferElement* element) {
LogStatistics.cpp 82 void LogStatistics::addTotal(LogBufferElement* element) {
92 void LogStatistics::add(LogBufferElement* element) {
162 void LogStatistics::subtract(LogBufferElement* element) {
207 void LogStatistics::drop(LogBufferElement* element) {
758 ((sizeof(LogBufferElement) + sizeof(uint64_t) - 1) &
760 sizeof(std::list<LogBufferElement*>);
LogReader.cpp 29 #include "LogBufferElement.h"
156 static int callback(const LogBufferElement* element, void* obj) {
  /system/core/liblog/
local_logger.c 95 struct LogBufferElement {
168 struct LogBufferElement* element;
170 element = node_to_item(node, struct LogBufferElement, node);
186 struct LogBufferElement* element) {
199 struct LogBufferElement* e;
202 e = node_to_item(node, struct LogBufferElement, node);
293 struct LogBufferElement* element;
307 element = (struct LogBufferElement*)calloc(
308 1, sizeof(struct LogBufferElement) + len + 1);
366 struct LogBufferElement* element
    [all...]

Completed in 265 milliseconds