/external/angle/third_party/abseil-cpp/absl/log/ |
D | absl_log.h | 55 #define ABSL_LOG_EVERY_N_SEC(severity, n_seconds) \ argument 56 ABSL_LOG_INTERNAL_LOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 64 #define ABSL_PLOG_EVERY_N_SEC(severity, n_seconds) \ argument 65 ABSL_LOG_INTERNAL_PLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 73 #define ABSL_DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 74 ABSL_LOG_INTERNAL_DLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 82 #define ABSL_LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 83 ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) 91 #define ABSL_PLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 92 ABSL_LOG_INTERNAL_PLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) [all …]
|
D | log.h | 265 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument 266 ABSL_LOG_INTERNAL_LOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 274 #define PLOG_EVERY_N_SEC(severity, n_seconds) \ argument 275 ABSL_LOG_INTERNAL_PLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 283 #define DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 284 ABSL_LOG_INTERNAL_DLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 299 #define LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 300 ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) 308 #define PLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 309 ABSL_LOG_INTERNAL_PLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) [all …]
|
/external/cronet/third_party/abseil-cpp/absl/log/ |
D | absl_log.h | 52 #define ABSL_LOG_EVERY_N_SEC(severity, n_seconds) \ argument 53 ABSL_LOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 58 #define ABSL_PLOG_EVERY_N_SEC(severity, n_seconds) \ argument 59 ABSL_PLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 64 #define ABSL_DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 65 ABSL_DLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 73 #define ABSL_LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 74 ABSL_LOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) 82 #define ABSL_PLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 83 ABSL_PLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) [all …]
|
D | log.h | 259 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument 260 ABSL_LOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 265 #define PLOG_EVERY_N_SEC(severity, n_seconds) \ argument 266 ABSL_PLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 271 #define DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 272 ABSL_DLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds) 287 #define LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 288 ABSL_LOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) 296 #define PLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 297 ABSL_PLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds) [all …]
|
/external/angle/third_party/abseil-cpp/absl/log/internal/ |
D | log_impl.h | 78 #define ABSL_LOG_INTERNAL_LOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 79 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 97 #define ABSL_LOG_INTERNAL_PLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 98 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 115 #define ABSL_LOG_INTERNAL_DLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 117 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG##severity.InternalStream() 132 #define ABSL_LOG_INTERNAL_DLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 134 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG##severity.InternalStream() 150 n_seconds) \ argument 152 n_seconds) \ [all …]
|
/external/cronet/third_party/abseil-cpp/absl/log/internal/ |
D | log_impl.h | 78 #define ABSL_LOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 79 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 97 #define ABSL_PLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 98 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 115 #define ABSL_DLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 117 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG##severity.InternalStream() 132 #define ABSL_DLOG_EVERY_N_SEC_IMPL(severity, n_seconds) \ argument 134 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG##severity.InternalStream() 149 #define ABSL_LOG_IF_EVERY_N_SEC_IMPL(severity, condition, n_seconds) \ argument 151 n_seconds) \ [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/log/ |
D | log.h | 259 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument 260 ABSL_LOG_INTERNAL_CONDITION_##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 278 #define PLOG_EVERY_N_SEC(severity, n_seconds) \ argument 279 ABSL_LOG_INTERNAL_CONDITION_##severity(STATEFUL, true)(EveryNSec, n_seconds) \ 296 #define DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 298 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG_##severity.InternalStream() 313 #define DLOG_EVERY_N_SEC(severity, n_seconds) \ argument 315 (EveryNSec, n_seconds) ABSL_LOGGING_INTERNAL_LOG_##severity.InternalStream() 337 #define LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument 339 n_seconds) \ [all …]
|
/external/tensorflow/tensorflow/tsl/platform/default/ |
D | logging.h | 255 #define LOG_EVERY_N_SEC(severity, n_seconds) \ argument 256 LOGGING_INTERNAL_STATEFUL_CONDITION(EveryNSec, true, n_seconds) \
|
/external/python/absl-py/absl/logging/ |
D | __init__.py | 486 def log_every_n_seconds(level, msg, n_seconds, *args): argument 498 should_log = _seconds_have_elapsed(get_absl_logger().findCaller(), n_seconds)
|