Home | History | Annotate | Download | only in libnbaio

Lines Matching defs:log

28 #include <utils/Log.h>
90 void NBLog::Writer::log(const char *string)
99 log(EVENT_STRING, string, length);
126 log(EVENT_STRING, buffer, length);
137 log(EVENT_TIMESTAMP, &ts, sizeof(struct timespec));
146 log(EVENT_TIMESTAMP, &ts, sizeof(struct timespec));
149 void NBLog::Writer::log(Event event, const void *data, size_t length)
166 log(&entry, true /*trusted*/);
169 void NBLog::Writer::log(const NBLog::Entry *entry, bool trusted)
175 log(entry->mEvent, entry->mData, entry->mLength);
224 void NBLog::LockedWriter::log(const char *string)
227 Writer::log(string);