| /openthread-latest/src/posix/platform/ |
| D | system.cpp | 81 ot::Posix::InfraNetif::Get().HandleBackboneStateChange(instance, aFlags); in processStateChange() 93 ot::Posix::RadioUrl url(aUrls.mUrls[i]); in get802154RadioUrl() 115 ot::Posix::RadioUrl url(aPlatformConfig->mCoprocessorUrls.mUrls[i]); in getTrelRadioUrl() 131 ot::Posix::InfraNetif::Get().SetInfraNetif(aInfraNetifName, aIcmp6Socket); in otSysSetInfraNetif() 148 ot::Posix::InfraNetif::Get().Init(); in platformInitRcpMode() 152 ot::Posix::MdnsSocket::Get().Init(); in platformInitRcpMode() 166 ot::Posix::Udp::Get().Init(otSysGetThreadNetifName()); in platformInitRcpMode() 168 ot::Posix::Udp::Get().Init(aPlatformConfig->mInterfaceName); in platformInitRcpMode() 225 … icmp6Sock = ot::Posix::InfraNetif::CreateIcmp6Socket(aPlatformConfig->mBackboneInterfaceName); in platformSetUp() 233 ot::Posix::InfraNetif::Get().SetUp(); in platformSetUp() [all …]
|
| D | spinel_manager.hpp | 42 namespace Posix { namespace 103 …static constexpr size_t kSpinelInterfaceRawSize = sizeof(Posix::SpiInterface) > sizeof(Posix::Hdlc… 104 ? sizeof(Posix::SpiInterface) 105 : sizeof(Posix::HdlcInterface); 107 static constexpr size_t kSpinelInterfaceRawSize = sizeof(Posix::HdlcInterface); 109 static constexpr size_t kSpinelInterfaceRawSize = sizeof(Posix::SpiInterface); 111 static constexpr size_t kSpinelInterfaceRawSize = sizeof(Posix::VendorInterface);
|
| D | radio.hpp | 49 namespace Posix { namespace 99 …ic constexpr size_t kSpinelInterfaceRawSize = sizeof(ot::Posix::SpiInterface) > sizeof(ot::Posix::… 100 ? sizeof(ot::Posix::SpiInterface) 101 : sizeof(ot::Posix::HdlcInterface); 103 static constexpr size_t kSpinelInterfaceRawSize = sizeof(ot::Posix::HdlcInterface); 105 static constexpr size_t kSpinelInterfaceRawSize = sizeof(ot::Posix::SpiInterface); 107 static constexpr size_t kSpinelInterfaceRawSize = sizeof(ot::Posix::VendorInterface);
|
| D | spinel_manager.cpp | 42 static ot::Posix::SpinelManager sSpinelManager; 45 namespace Posix { namespace 114 else if (Posix::SpiInterface::IsInterfaceNameMatch(aInterfaceName)) in CreateSpinelInterface() 206 ot::Posix::GetSpinelDriver().Process(aEvent); in virtualTimeSpinelProcess() 213 ot::Posix::GetSpinelDriver().Process(aContext); in platformSpinelManagerProcess() 221 if (ot::Posix::GetSpinelDriver().HasPendingFrame()) in platformSpinelManagerUpdateFdSet()
|
| D | udp.cpp | 62 using namespace ot::Posix::Ip6Utils; 282 ot::Posix::Udp::LogCrit("Failed to bind UDP socket: %s", strerror(errno)); in otPlatUdpBind() 324 ot::Posix::Udp::LogWarn("No backbone interface given, %s fails.", __func__); in otPlatUdpBindToNetif() 384 … ot::Posix::Udp::LogWarn("Failed to read socket bound device: %s", strerror(errno)); in otPlatUdpConnect() 398 ot::Posix::Udp::LogWarn("Failed to bind to device: %s", strerror(errno)); in otPlatUdpConnect() 412 ot::Posix::Udp::LogWarn("Failed to connect to [%s]:%u: %s", in otPlatUdpConnect() 497 ot::Posix::Udp::LogCrit("IPV6_JOIN_GROUP failed: %s", strerror(errno)); in otPlatUdpJoinMulticastGroup() 541 ot::Posix::Udp::LogCrit("IPV6_LEAVE_GROUP failed: %s", strerror(errno)); in otPlatUdpLeaveMulticastGroup() 548 namespace Posix { namespace
|
| D | infra_if.cpp | 100 …return ot::Posix::InfraNetif::Get().SendIcmp6Nd(aInfraIfIndex, *aDestAddress, aBuffer, aBufferLeng… in otPlatInfraIfSendIcmp6Nd() 107 return ot::Posix::InfraNetif::Get().DiscoverNat64Prefix(aInfraIfIndex); in otPlatInfraIfDiscoverNat64Prefix() 111 bool otSysInfraIfIsRunning(void) { return ot::Posix::InfraNetif::Get().IsRunning(); } in otSysInfraIfIsRunning() 113 const char *otSysGetInfraNetifName(void) { return ot::Posix::InfraNetif::Get().GetNetifName(); } in otSysGetInfraNetifName() 115 uint32_t otSysGetInfraNetifIndex(void) { return ot::Posix::InfraNetif::Get().GetNetifIndex(); } in otSysGetInfraNetifIndex() 117 uint32_t otSysGetInfraNetifFlags(void) { return ot::Posix::InfraNetif::Get().GetFlags(); } in otSysGetInfraNetifFlags() 121 ot::Posix::InfraNetif::Get().CountAddresses(*aAddressCounters); in otSysCountInfraNetifAddresses() 125 namespace Posix { namespace
|
| D | spinel_driver_getter.hpp | 41 namespace Posix { namespace
|
| D | utils.hpp | 35 namespace Posix { namespace
|
| D | firewall.hpp | 39 namespace Posix { namespace
|
| D | settings.hpp | 33 namespace Posix { namespace
|
| D | radio_url.hpp | 40 namespace Posix { namespace
|
| D | udp.hpp | 37 namespace Posix { namespace
|
| D | daemon.hpp | 39 namespace Posix { namespace
|
| D | mdns_socket.cpp | 50 return ot::Posix::MdnsSocket::Get().SetListeningEnabled(aInstance, aEnable, aInfraIfIndex); in otPlatMdnsSetListeningEnabled() 56 return ot::Posix::MdnsSocket::Get().SendMulticast(aMessage, aInfraIfIndex); in otPlatMdnsSendMulticast() 62 return ot::Posix::MdnsSocket::Get().SendUnicast(aMessage, aAddress); in otPlatMdnsSendUnicast() 66 namespace Posix { namespace 68 using namespace ot::Posix::Ip6Utils;
|
| D | mainloop.hpp | 40 namespace Posix { namespace
|
| D | config_file.hpp | 38 namespace Posix { namespace
|
| D | radio_url.cpp | 138 namespace Posix { namespace
|
| D | vendor_interface.hpp | 45 namespace Posix { namespace
|
| D | ip6_utils.hpp | 42 namespace Posix { namespace
|
| D | utils.cpp | 45 namespace Posix { namespace
|
| D | mainloop.cpp | 36 namespace Posix { namespace
|
| D | settings_file.hpp | 36 namespace Posix { namespace
|
| D | resolver.hpp | 43 namespace Posix { namespace
|
| D | logger.hpp | 42 namespace Posix { namespace
|
| /openthread-latest/tools/ot-fct/ |
| D | cli.hpp | 108 ot::Posix::ConfigFile mFactoryConfigFile; 109 ot::Posix::ConfigFile mProductConfigFile;
|