Lines Matching refs:LocalLogBuffer
48 LocalLogBuffer::FunctionLog::FunctionLog(string funcName) : mName(funcName) { in FunctionLog()
52 LocalLogBuffer::FunctionLog::FunctionLog(const FunctionLog& other) : in FunctionLog()
60 void LocalLogBuffer::FunctionLog::addArg(string kw, string arg) { in addArg()
65 void LocalLogBuffer::FunctionLog::addArg(string kw, vector<string> args) { in addArg()
76 void LocalLogBuffer::FunctionLog::addArg(string kw, uint64_t arg) { in addArg()
81 void LocalLogBuffer::FunctionLog::maybeAddArgsComma() { in maybeAddArgsComma()
89 void LocalLogBuffer::FunctionLog::setResult(bool success, string msg) { in setResult()
94 void LocalLogBuffer::FunctionLog::setResult(vector<unsigned int> ret) { in setResult()
104 void LocalLogBuffer::FunctionLog::setResult(uint64_t rx, uint64_t tx) { in setResult()
108 string LocalLogBuffer::FunctionLog::toString() { in toString()
114 LocalLogBuffer::LocalLogBuffer(string name, int maxLogs) : mName(name), in LocalLogBuffer() function in LocalLogBuffer
118 void LocalLogBuffer::addLog(FunctionLog log) { in addLog()
124 void LocalLogBuffer::toLogcat() { in toLogcat()
129 void LocalLogBuffer::toFd(int fd) { in toFd()