Searched refs:logData (Results 1 – 4 of 4) sorted by relevance
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/ |
H A D | log_buffer.cpp | 161 static bool LogMatchFilter(const LogFilter& filter, const HilogData& logData) in LogMatchFilter() argument 164 if (((static_cast<uint16_t>(0b01 << logData.type)) & filter.types) == 0) { in LogMatchFilter() 167 if (((static_cast<uint16_t>(0b01 << logData.level)) & filter.levels) == 0) { in LogMatchFilter() 192 if (strcmp(logData.tag, filter.tags[i]) == 0) { in LogMatchFilter() 203 if (logData.pid == filter.pids[i]) { in LogMatchFilter() 216 if (std::regex_search(logData.content, regExpress) == false) { in LogMatchFilter() 255 const HilogData logData(*headMsg); in Query() local 257 return logData; in Query() 262 const HilogData& logData = *reader->m_pos; in Query() local 264 if (LogMatchFilter(filter, logData)) { in Query() [all …]
|
H A D | log_persister.cpp | 261 int LogPersister::WriteLogData(const HilogData& logData) in WriteLogData() argument 264 .level = logData.level, in WriteLogData() 265 .type = logData.type, in WriteLogData() 266 .pid = logData.pid, in WriteLogData() 267 .tid = logData.tid, in WriteLogData() 268 .domain = logData.domain, in WriteLogData() 269 .tv_sec = logData.tv_sec, in WriteLogData() 270 .tv_nsec = logData.tv_nsec, in WriteLogData() 271 .mono_sec = logData.mono_sec, in WriteLogData() 272 .tag = logData.tag, in WriteLogData() [all …]
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_testapp/entry/src/main/ets/Utils/ |
H A D | LogData.ts | 177 let logData = new LogData(); 179 export default logData as LogData;
|
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/include/ |
H A D | log_persister.h | 82 int WriteLogData(const HilogData& logData);
|