/aosp_15_r20/prebuilts/go/linux-x86/src/log/ |
D | log.go | 57 type Logger struct { struct 58 outMu sync.Mutex 59 out io.Writer // destination for output 61 prefix atomic.Pointer[string] // prefix on each line to identify the logger (but see Lmsgprefix) 62 flag atomic.Int32 // properties 63 isDiscard atomic.Bool 80 func (l *Logger) SetOutput(w io.Writer) { 193 func (l *Logger) Output(calldepth int, s string) error { 202 func (l *Logger) output(pc uintptr, calldepth int, appendOutput func([]byte) []byte) error { 259 func (l *Logger) Print(v ...any) { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/log/slog/ |
D | logger.go | 61 func SetDefault(l *Logger) { 112 type Logger struct { struct 113 handler Handler // for structured logging 116 func (l *Logger) clone() *Logger { 122 func (l *Logger) Handler() Handler { return l.handler } 127 func (l *Logger) With(args ...any) *Logger { 142 func (l *Logger) WithGroup(name string) *Logger { 165 func (l *Logger) Enabled(ctx context.Context, level Level) bool { 189 func (l *Logger) Log(ctx context.Context, level Level, msg string, args ...any) { 194 func (l *Logger) LogAttrs(ctx context.Context, level Level, msg string, attrs ...Attr) { [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/bundle-logging-bridge/src/test/java/software/amazon/awssdk/thirdparty/org/slf4j/impl/internal/ |
H A D | LoggerAdapterTest.java | 319 … private TestCaseLogSFn(Function<software.amazon.awssdk.thirdparty.org.slf4j.Logger, LogSFn> logFn, in TestCaseLogSFn() 320 Function<Logger, LogSFn> verify) { in TestCaseLogSFn() 330 …private TestCaseLogSTFn(Function<software.amazon.awssdk.thirdparty.org.slf4j.Logger, LogSTFn> logF… in TestCaseLogSTFn() 331 Function<Logger, LogSTFn> verify) { in TestCaseLogSTFn() 341 …private TestCaseLogMSFn(Function<software.amazon.awssdk.thirdparty.org.slf4j.Logger, LogShadedMSFn… in TestCaseLogMSFn() 342 Function<Logger, LogMSFn> verify) { in TestCaseLogMSFn() 352 …private TestCaseLogMSTFn(Function<software.amazon.awssdk.thirdparty.org.slf4j.Logger, LogShadedMST… in TestCaseLogMSTFn() 353 Function<Logger, LogMSTFn> verify) { in TestCaseLogMSTFn() 363 …private TestCaseLogSOFn(Function<software.amazon.awssdk.thirdparty.org.slf4j.Logger, LogSOFn> logF… in TestCaseLogSOFn() 364 Function<Logger, LogSOFn> verify) { in TestCaseLogSOFn() [all …]
|
/aosp_15_r20/external/rust/crates/uefi/src/helpers/ |
D | logger.rs | 85 pub struct Logger { struct 89 impl Logger { impl 133 impl log::Log for Logger { implementation 178 unsafe impl Sync for Logger {} implementation 179 unsafe impl Send for Logger {} implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/uefi/src/helpers/ |
D | logger.rs | 85 pub struct Logger { struct 89 impl Logger { implementation 133 impl log::Log for Logger { implementation 178 unsafe impl Sync for Logger {} implementation 179 unsafe impl Send for Logger {} implementation
|
/aosp_15_r20/external/pigweed/pw_build/py/pw_build/ |
H A D | project_builder.py | 199 logger: logging.Logger = _LOG, 227 logger: logging.Logger = _LOG, 359 logger: logging.Logger = _LOG, 398 logger: logging.Logger = _LOG, 539 logging.Logger, 548 root_logger: logging.Logger = _LOG, 872 logger: logging.Logger = _LOG, 900 logger: logging.Logger = _LOG,
|
/aosp_15_r20/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/env/ |
H A D | Logger.java | 26 public final class Logger { class 49 public Logger(final Class<?> clazz) { in Logger() method in Logger 58 public Logger(final String messagePrefix) { in Logger() method in Logger 70 public Logger(final String tag, final String messagePrefix) { in Logger() method in Logger 79 public Logger() { in Logger() method in Logger 86 public Logger(final int minLogLevel) { in Logger() method in Logger
|
/aosp_15_r20/packages/modules/Virtualization/libs/libvmbase/src/ |
D | logger.rs | 25 struct Logger { struct 29 static LOGGER: Logger = Logger::new(); argument 31 impl Logger { implementation 41 impl Log for Logger { implementation
|
/aosp_15_r20/external/tink/go/testing/fakemonitoring/ |
H A D | fakemonitoring.go | 27 type Logger struct { struct 28 Context *monitoring.Context 29 client *Client 35 func (l *Logger) Log(keyID uint32, numBytes int) { 44 func (l *Logger) LogFailure() {
|
/aosp_15_r20/external/rust/android-crates-io/crates/env_logger/src/ |
D | logger.rs | 486 pub fn build(&mut self) -> Logger { in build() 530 pub struct Logger { struct 536 impl Logger { argument 603 impl Log for Logger { implementation 674 impl std::fmt::Debug for Logger { implementation
|
/aosp_15_r20/external/flashrom/util/flashrom_tester/src/ |
H A D | logger.rs | 39 struct Logger { struct 44 impl log::Log for Logger { implementation
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/ |
H A D | DevelopmentModeInlineAdvisor.cpp | 170 std::unique_ptr<TrainingLogger> Logger; member in __anonce5eabe20111::DevelopmentModeMLInlineAdvisor 182 TrainingLogger &Logger, 249 TrainingLogger &Logger; member in __anonce5eabe20111::LoggingMLInlineAdvice 333 std::unique_ptr<TrainingLogger> Logger) 415 std::unique_ptr<TrainingLogger> Logger; local
|
/aosp_15_r20/external/uwb/src/rust/uwb_core/src/uci/ |
H A D | uci_logger_factory.rs | 26 type Logger: UciLogger; typedef 31 fn build_logger(&mut self, chip_id: &str) -> Option<Self::Logger>; in build_logger() 38 type Logger = NopUciLogger; typedef
|
/aosp_15_r20/build/soong/ui/status/ |
H A D | log.go | 42 func NewVerboseLog(log logger.Logger, filename string) StatusOutput { 130 func NewErrorLog(log logger.Logger, filename string) StatusOutput { 196 func NewProtoErrorLog(log logger.Logger, filename string) StatusOutput { 246 func NewBuildProgressLog(log logger.Logger, filename string) StatusOutput {
|
/aosp_15_r20/external/setupcompat/main/java/com/google/android/setupcompat/util/ |
H A D | Logger.java | 28 public final class Logger { class 34 public Logger(Class<?> cls) { in Logger() method in Logger 38 public Logger(String prefix) { in Logger() method in Logger
|
/aosp_15_r20/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/ |
H A D | Logger.java | 30 public class Logger { class 51 private Logger() { in Logger() method in Logger 56 private Logger(String logPrefix) { in Logger() method in Logger
|
/aosp_15_r20/external/mbedtls/scripts/ |
H A D | code_size_compare.py | 173 logger: logging.Logger, 278 logger: logging.Logger, 433 def __init__(self, logger: logging.Logger) -> None: 488 def __init__(self, logger: logging.Logger) -> None: 718 logger: logging.Logger,
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/scripts/ |
H A D | code_size_compare.py | 173 logger: logging.Logger, 278 logger: logging.Logger, 433 def __init__(self, logger: logging.Logger) -> None: 488 def __init__(self, logger: logging.Logger) -> None: 718 logger: logging.Logger,
|
/aosp_15_r20/external/pigweed/pw_unit_test/py/pw_unit_test/ |
H A D | serial_test_runner.py | 87 def _log_subprocess_output(level, output: bytes, logger: logging.Logger): 142 test_output: bytes, logger: logging.Logger = _LOG 170 logger: logging.Logger = _LOG,
|
/aosp_15_r20/external/ComputeLibrary/src/core/utils/logging/ |
H A D | Logger.cpp | 32 Logger::Logger(std::string name, LogLevel log_level, std::shared_ptr<Printer> printer) in Logger() function in Logger 45 Logger::Logger(std::string name, LogLevel log_level, std::vector<std::shared_ptr<Printer>> printers) in Logger() function in Logger 58 Logger::Logger(std::string name, in Logger() function in Logger
|
/aosp_15_r20/packages/apps/Car/Settings/src/com/android/car/settings/common/ |
D | Logger.java | 34 public final class Logger { class 39 public Logger(Class<?> cls) { in Logger() method in Logger 43 public Logger(String prefix) { in Logger() method in Logger
|
/aosp_15_r20/packages/modules/AdServices/shared/testing-libraries/side-less/java/com/android/adservices/shared/testing/ |
D | Logger.java | 24 public final class Logger { class 29 public Logger(RealLogger realLogger, Class<?> clazz) { in Logger() method in Logger 33 public Logger(RealLogger realLogger, String tag) { in Logger() method in Logger
|
/aosp_15_r20/external/rust/cxx/tests/ui/ |
D | reserved_lifetime.rs | 4 type Logger; typedef 6 fn logger<'static>() -> Pin<&'static Logger>; in logger()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/cxx-1.0.120/tests/ui/ |
H A D | reserved_lifetime.rs | 4 type Logger; typedef 6 fn logger<'static>() -> Pin<&'static Logger>; in logger()
|
/aosp_15_r20/external/compiler-rt/test/tsan/ |
H A D | atexit.cc | 6 class Logger { class 8 Logger() { in Logger() function in Logger
|