Home
last modified time | relevance | path

Searched refs:otLogWarnPlat (Results 1 – 14 of 14) sorted by relevance

/openthread-3.6.0/examples/apps/cli/
Dcli_uart.cpp306 …VerifyOrExit(rval >= 0 && rval < kTxBufferSize, otLogWarnPlat("Failed to format CLI output `%s`", … in CliUartOutput()
323 otLogWarnPlat("Failed to format CLI output `%s`", aFormat); in CliUartOutput()
347 otLogWarnPlat("Failed to output CLI: %s", otThreadErrorToString(error)); in CliUartOutput()
359 otLogWarnPlat("CLI output `%s` truncated", aFormat); in CliUartOutput()
/openthread-3.6.0/src/posix/platform/
Dnetif.cpp429otLogWarnPlat("[netif] Failed to send request#%u to %s %s/%u", sNetlinkSequence, (aIsAdded ? "add"… in UpdateUnicastLinux()
475 otLogWarnPlat("[netif] Failed to %s %s/%u: %s", (aIsAdded ? "add" : "remove"), in UpdateUnicast()
509 otLogWarnPlat("[netif] Ignoring %s failure (EINVAL) for MC LINKLOCAL address (%s)", in UpdateMulticast()
517otLogWarnPlat("[netif] %s failure (%d)", aIsAdded ? "IPV6_JOIN_GROUP" : "IPV6_LEAVE_GROUP", errno); in UpdateMulticast()
562 otLogWarnPlat("[netif] Failed to update state %s", otThreadErrorToString(error)); in SetLinkState()
725 otLogWarnPlat("[netif] Failed to delete an OMR route %s in kernel: %s", prefixString, in UpdateOmrRoutes()
748 otLogWarnPlat("[netif] Failed to add an OMR route %s in kernel: %s", prefixString, in UpdateOmrRoutes()
821otLogWarnPlat("[netif] Failed to delete an external route %s in kernel: %s", prefixString, in UpdateExternalRoutes()
829otLogWarnPlat("[netif] Successfully deleted an external route %s in kernel", prefixString); in UpdateExternalRoutes()
840 otLogWarnPlat("[netif] No buffer to add more external routes in kernel")); in UpdateExternalRoutes()
[all …]
Ddaemon.cpp100 VerifyOrExit(rval >= 0, otLogWarnPlat("Failed to format CLI output: %s", strerror(errno))); in OutputFormatV()
119 otLogWarnPlat("Failed to write CLI output: %s", strerror(errno)); in OutputFormatV()
163 otLogWarnPlat("Failed to initialize session socket: %s", strerror(errno)); in InitializeSessionSocket()
407 otLogWarnPlat("Daemon read: %s", strerror(errno)); in Process()
Dalarm.cpp99 otLogWarnPlat("Real time signal not enabled, microsecond timers may be inaccurate!"); in platformAlarmInit()
172 otLogWarnPlat("Failed to update microsecond timer: %s", strerror(errno)); in otPlatAlarmMicroStartAt()
191 otLogWarnPlat("Failed to stop microsecond timer: %s", strerror(errno)); in otPlatAlarmMicroStop()
Dspi_interface.cpp461otLogWarnPlat("SPI ioctl failed with EINVAL. Try adding `--spi-cs-delay=0` to command line argumen… in PushPullSpi()
492otLogWarnPlat("Slave did not respond to frame. (Header was all 0x%02X)", slaveHeader); in PushPullSpi()
502otLogWarnPlat("Garbage in header : %02X %02X %02X %02X %02X", spiRxFrame[0], spiRxFrame[1], in PushPullSpi()
521otLogWarnPlat("Garbage in header : %02X %02X %02X %02X %02X", spiRxFrame[0], spiRxFrame[1], spiRxF… in PushPullSpi()
689 otLogWarnPlat("Slave seems stuck."); in UpdateFdSet()
807 otLogWarnPlat("%s: %s", aString, strerror(errno)); in LogError()
Dinfra_if.cpp274 otLogWarnPlat("failed to send ICMPv6 message: %s", strerror(errno)); in SendIcmp6Nd()
280 otLogWarnPlat("failed to send ICMPv6 message: partially sent"); in SendIcmp6Nd()
335 otLogWarnPlat("failed to get netif addresses: %s", strerror(errno)); in CountAddresses()
428otLogWarnPlat("Border Routing/Backbone Router feature is disabled: infra interface is missing"); in SetInfraNetif()
557otLogWarnPlat("netlink NLMSG_ERROR response: seq=%u, error=%d", header->nlmsg_seq, errMsg->error); in ReceiveNetLinkMessage()
602 otLogWarnPlat("Failed to receive ICMPv6 message: %s", strerror(errno)); in ReceiveIcmp6Message()
Dfirewall.cpp127 otLogWarnPlat("Failed to update ipsets: %s", otThreadErrorToString(error)); in UpdateIpSets()
Dudp.cpp328 otLogWarnPlat("No backbone interface given, %s fails.", __func__); in otPlatUdpBindToNetif()
385 otLogWarnPlat("Failed to read socket bound device: %s", strerror(errno)); in otPlatUdpConnect()
399 otLogWarnPlat("Failed to bind to device: %s", strerror(errno)); in otPlatUdpConnect()
413otLogWarnPlat("Failed to connect to [%s]:%u: %s", Ip6AddressString(&aUdpSocket->mPeerName.mAddress… in otPlatUdpConnect()
Dtrel.cpp290 …VerifyOrExit(sFreeTxPacketHead != NULL, otLogWarnPlat("[trel] EnqueuePacket failed, queue is full"… in EnqueuePacket()
Dradio.cpp223 otLogWarnPlat("The RCP doesn't support setting the max transmit power"); in ProcessMaxPowerTable()
236 otLogWarnPlat("The RCP doesn't support setting the max transmit power"); in ProcessMaxPowerTable()
Dhdlc_interface.cpp717 otLogWarnPlat("Error decoding hdlc frame: %s", otThreadErrorToString(aError)); in HandleHdlcFrame()
Dmulticast_routing.cpp68otLogWarnPlat(OT_FIRST_ARG(__VA_ARGS__) ": %s" OT_REST_ARGS(__VA_ARGS__), otThreadErrorToString(_e…
/openthread-3.6.0/include/openthread/
Dlogging.h101 void otLogWarnPlat(const char *aFormat, ...) OT_TOOL_PRINTF_STYLE_FORMAT_ARG_CHECK(1, 2);
/openthread-3.6.0/src/core/api/
Dlogging_api.cpp76 void otLogWarnPlat(const char *aFormat, ...) in otLogWarnPlat() function