Lines Matching refs:LocalLogBuffer
47 LocalLogBuffer::FunctionLog::FunctionLog(string funcName) : mName(funcName) { in FunctionLog()
51 LocalLogBuffer::FunctionLog::FunctionLog(const FunctionLog& other) : in FunctionLog()
59 void LocalLogBuffer::FunctionLog::addArg(string kw, string arg) { in addArg()
64 void LocalLogBuffer::FunctionLog::addArg(string kw, vector<string> args) { in addArg()
75 void LocalLogBuffer::FunctionLog::addArg(string kw, uint64_t arg) { in addArg()
80 void LocalLogBuffer::FunctionLog::maybeAddArgsComma() { in maybeAddArgsComma()
88 void LocalLogBuffer::FunctionLog::setResult(bool success, string msg) { in setResult()
93 void LocalLogBuffer::FunctionLog::setResult(vector<unsigned int> ret) { in setResult()
103 void LocalLogBuffer::FunctionLog::setResult(uint64_t rx, uint64_t tx) { in setResult()
107 string LocalLogBuffer::FunctionLog::toString() { in toString()
113 LocalLogBuffer::LocalLogBuffer(string name, int maxLogs) : mName(name), in LocalLogBuffer() function in LocalLogBuffer
117 void LocalLogBuffer::addLog(FunctionLog log) { in addLog()
123 void LocalLogBuffer::toLogcat() { in toLogcat()