Lines Matching refs:msg
34 const char* msg) { in gfx_stream_logger() argument
38 ABSL_LOG(INFO).AtLocation(file, line) << msg; in gfx_stream_logger()
41 ABSL_LOG(WARNING).AtLocation(file, line) << msg; in gfx_stream_logger()
44 ABSL_LOG(ERROR).AtLocation(file, line) << msg; in gfx_stream_logger()
47 ABSL_LOG(FATAL).AtLocation(file, line) << msg; in gfx_stream_logger()
50 VLOG(1).AtLocation(file, line) << msg; in gfx_stream_logger()
53 VLOG(2).AtLocation(file, line) << msg; in gfx_stream_logger()
56 ABSL_LOG(INFO).AtLocation(file, line) << msg; in gfx_stream_logger()
83 std::string_view msg(buffer, strlen); in OutputLog() local
88 ABSL_LOG(INFO).AtLocation(file, line) << msg; in OutputLog()
91 ABSL_LOG(WARNING).AtLocation(file, line) << msg; in OutputLog()
94 ABSL_LOG(ERROR).AtLocation(file, line) << msg; in OutputLog()
97 ABSL_LOG(FATAL).AtLocation(file, line) << msg; in OutputLog()
100 VLOG(1).AtLocation(file, line) << msg; in OutputLog()
103 VLOG(2).AtLocation(file, line) << msg; in OutputLog()
110 ABSL_LOG(INFO).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()
113 ABSL_LOG(WARNING).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()
116 ABSL_LOG(ERROR).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()
119 ABSL_LOG(FATAL).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()
122 VLOG(1).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()
125 VLOG(2).AtLocation(file, line).WithTimestamp(ts) << msg; in OutputLog()