/openthread-latest/src/core/common/ |
D | log.hpp | 109 #define LogCrit(...) Logger::LogAtLevel<kLogLevelCrit>(kLogModuleName, __VA_ARGS__) 120 #define LogWarn(...) Logger::LogAtLevel<kLogLevelWarn>(kLogModuleName, __VA_ARGS__) 131 #define LogNote(...) Logger::LogAtLevel<kLogLevelNote>(kLogModuleName, __VA_ARGS__) 142 #define LogInfo(...) Logger::LogAtLevel<kLogLevelInfo>(kLogModuleName, __VA_ARGS__) 153 #define LogDebg(...) Logger::LogAtLevel<kLogLevelDebg>(kLogModuleName, __VA_ARGS__) 168 #define LogWarnOnError(aError, aText) Logger::LogOnError(kLogModuleName, aError, aText) 180 #define LogAt(aLogLevel, ...) Logger::LogInModule(kLogModuleName, aLogLevel, __VA_ARGS__) 191 #define LogAlways(...) Logger::LogInModule("", kLogLevelNone, __VA_ARGS__) 215 #define DumpCrit(aText, aData, aDataLength) Logger::Dump<kLogLevelCrit, kLogModuleName>(aText, aDat… 228 #define DumpWarn(aText, aData, aDataLength) Logger::Dump<kLogLevelWarn, kLogModuleName>(aText, aDat… [all …]
|
D | log.cpp | 67 template <LogLevel kLogLevel> void Logger::LogAtLevel(const char *aModuleName, const char *aFormat,… in LogAtLevel() 77 template void Logger::LogAtLevel<kLogLevelNone>(const char *aModuleName, const char *aFormat, ...); 78 template void Logger::LogAtLevel<kLogLevelCrit>(const char *aModuleName, const char *aFormat, ...); 79 template void Logger::LogAtLevel<kLogLevelWarn>(const char *aModuleName, const char *aFormat, ...); 80 template void Logger::LogAtLevel<kLogLevelNote>(const char *aModuleName, const char *aFormat, ...); 81 template void Logger::LogAtLevel<kLogLevelInfo>(const char *aModuleName, const char *aFormat, ...); 82 template void Logger::LogAtLevel<kLogLevelDebg>(const char *aModuleName, const char *aFormat, ...); 84 void Logger::LogInModule(const char *aModuleName, LogLevel aLogLevel, const char *aFormat, ...) in LogInModule() 93 void Logger::LogVarArgs(const char *aModuleName, LogLevel aLogLevel, const char *aFormat, va_list a… in LogVarArgs() 140 void Logger::LogOnError(const char *aModuleName, Error aError, const char *aText) in LogOnError() [all …]
|
/openthread-latest/src/core/api/ |
D | logging_api.cpp | 63 Logger::LogVarArgs(kPlatformModuleName, kLogLevelCrit, aFormat, args); in otLogCritPlat() 77 Logger::LogVarArgs(kPlatformModuleName, kLogLevelWarn, aFormat, args); in otLogWarnPlat() 90 Logger::LogVarArgs(kPlatformModuleName, kLogLevelNote, aFormat, args); in otLogNotePlat() 103 Logger::LogVarArgs(kPlatformModuleName, kLogLevelInfo, aFormat, args); in otLogInfoPlat() 116 Logger::LogVarArgs(kPlatformModuleName, kLogLevelDebg, aFormat, args); in otLogDebgPlat() 126 Logger::DumpInModule(kPlatformModuleName, kLogLevelCrit, aText, aData, aDataLength); in otDumpCritPlat() 137 Logger::DumpInModule(kPlatformModuleName, kLogLevelWarn, aText, aData, aDataLength); in otDumpWarnPlat() 148 Logger::DumpInModule(kPlatformModuleName, kLogLevelNote, aText, aData, aDataLength); in otDumpNotePlat() 159 Logger::DumpInModule(kPlatformModuleName, kLogLevelInfo, aText, aData, aDataLength); in otDumpInfoPlat() 170 Logger::DumpInModule(kPlatformModuleName, kLogLevelDebg, aText, aData, aDataLength); in otDumpDebgPlat() [all …]
|
/openthread-latest/src/lib/spinel/ |
D | logger.hpp | 38 class Logger class 41 explicit Logger(const char *aModuleName);
|
D | logger.cpp | 51 Logger::Logger(const char *aModuleName) in Logger() function in ot::Spinel::Logger 56 void Logger::LogIfFail(const char *aText, otError aError) in LogIfFail() 66 void Logger::LogCrit(const char *aFormat, ...) in LogCrit() 75 void Logger::LogWarn(const char *aFormat, ...) in LogWarn() 84 void Logger::LogNote(const char *aFormat, ...) in LogNote() 93 void Logger::LogInfo(const char *aFormat, ...) in LogInfo() 102 void Logger::LogDebg(const char *aFormat, ...) in LogDebg() 111 uint32_t Logger::Snprintf(char *aDest, uint32_t aSize, const char *aFormat, ...) in Snprintf() 123 void Logger::LogSpinelFrame(const uint8_t *aFrame, uint16_t aLength, bool aTx) in LogSpinelFrame()
|
D | spinel_driver.hpp | 58 class SpinelDriver : public otSpinelDriver, public Logger
|
D | spinel_driver.cpp | 47 : Logger("SpinelDriver") in SpinelDriver()
|
D | radio_spinel.hpp | 143 class RadioSpinel : private Logger
|
D | radio_spinel.cpp | 67 : Logger("RadioSpinel") in RadioSpinel()
|
/openthread-latest/src/posix/platform/ |
D | udp.hpp | 39 class Udp : public Mainloop::Source, public Logger<Udp>, private NonCopyable
|
D | daemon.hpp | 41 class Daemon : public Mainloop::Source, public Logger<Daemon>, private NonCopyable
|
D | resolver.hpp | 45 class Resolver : public Logger<Resolver>
|
D | logger.hpp | 53 template <typename Type> class Logger class
|
D | configuration.hpp | 55 class Configuration : public Logger<Configuration>
|
D | infra_if.hpp | 57 class InfraNetif : public Mainloop::Source, public Logger<InfraNetif>, private NonCopyable
|
D | radio.hpp | 54 class Radio : public Logger<Radio>
|
D | hdlc_interface.hpp | 51 class HdlcInterface : public ot::Spinel::SpinelInterface, public Logger<HdlcInterface>
|
D | mdns_socket.hpp | 49 class MdnsSocket : public Mainloop::Source, public Logger<MdnsSocket>, private NonCopyable
|
D | multicast_routing.hpp | 52 class MulticastRoutingManager : public Mainloop::Source, public Logger<MulticastRoutingManager>, pr…
|
D | spi_interface.hpp | 54 class SpiInterface : public ot::Spinel::SpinelInterface, public Logger<SpiInterface>
|
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | logging_util.py | 12 logger: logging.Logger, argument
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | code_size_compare.py | 173 logger: logging.Logger, argument 278 logger: logging.Logger, argument 433 def __init__(self, logger: logging.Logger) -> None: argument 488 def __init__(self, logger: logging.Logger) -> None: argument 718 logger: logging.Logger, argument
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 169 def set_logger(self, logger: logging.Logger): argument
|