A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Logging

Logging functions and macros. More...

Macros

#define NS_LOG(level, msg)
 
#define NS_LOG_COMPONENT_DEFINE(name)   static ns3::LogComponent g_log = ns3::LogComponent (name)
 
#define NS_LOG_DEBUG(msg)   NS_LOG (ns3::LOG_DEBUG, msg)
 
#define NS_LOG_ERROR(msg)   NS_LOG (ns3::LOG_ERROR, msg)
 
#define NS_LOG_FUNCTION(parameters)
 
#define NS_LOG_FUNCTION_NOARGS()
 
#define NS_LOG_INFO(msg)   NS_LOG (ns3::LOG_INFO, msg)
 
#define NS_LOG_LOGIC(msg)   NS_LOG (ns3::LOG_LOGIC, msg)
 
#define NS_LOG_UNCOND(msg)
 
#define NS_LOG_WARN(msg)   NS_LOG (ns3::LOG_WARN, msg)
 

Functions

void ns3::LogComponentDisable (char const *name, enum LogLevel level)
 
void ns3::LogComponentDisableAll (enum LogLevel level)
 
void ns3::LogComponentEnable (char const *name, enum LogLevel level)
 
void ns3::LogComponentEnableAll (enum LogLevel level)
 
void ns3::LogComponentPrintList (void)
 

Detailed Description

Logging functions and macros.

LOG functionality: macros which allow developers to send information out on screen. All logging messages are disabled by default. To enable selected logging messages, use the ns3::LogComponentEnable function or use the NS_LOG environment variable

Use the environment variable NS_LOG to define a ':'-separated list of logging components to enable. For example (using bash syntax), NS_LOG="OlsrAgent" would enable one component at all log levels. NS_LOG="OlsrAgent:Ipv4L3Protocol" would enable two components, at all log levels, etc. NS_LOG="*" will enable all available log components at all levels.

To control more selectively the log levels for each component, use this syntax: NS_LOG='Component1=func|warn:Component2=error|debug' This example would enable the 'func', and 'warn' log levels for 'Component1' and the 'error' and 'debug' log levels for 'Component2'. The wildcard can be used here as well. For example NS_LOG='*=level_all|prefix' would enable all log levels and prefix all prints with the component and function names.

A note on NS_LOG_FUNCTION() and NS_LOG_FUNCTION_NOARGS(): generally, use of (at least) NS_LOG_FUNCTION(this) is preferred. Use NS_LOG_FUNCTION_NOARGS() only in static functions.

Macro Definition Documentation

#define NS_LOG (   level,
  msg 
)
Value:
do \
{ \
if (g_log.IsEnabled (level)) \
{ \
NS_LOG_APPEND_TIME_PREFIX; \
NS_LOG_APPEND_NODE_PREFIX; \
NS_LOG_APPEND_CONTEXT; \
NS_LOG_APPEND_FUNC_PREFIX; \
NS_LOG_APPEND_LEVEL_PREFIX (level); \
std::clog << msg << std::endl; \
} \
} \
while (false)
Parameters
levelthe log level
msgthe message to log

This macro allows you to log an arbitrary message at a specific log level. The log message is expected to be a C++ ostream message such as "my string" << aNumber << "my oth stream".

Typical usage looks like:

NS_LOG (LOG_DEBUG, "a number="<<aNumber<<", anotherNumber="<<anotherNumber);

Definition at line 216 of file log.h.

Referenced by ns3::UplinkSchedulerMBQoS::UplinkSchedWindowTimer().

#define NS_LOG_COMPONENT_DEFINE (   name)    static ns3::LogComponent g_log = ns3::LogComponent (name)
Parameters
namea string

Define a Log component with a specific name. This macro should be used at the top of every file in which you want to use the NS_LOG macro. This macro defines a new "log component" which can be later selectively enabled or disabled with the ns3::LogComponentEnable and ns3::LogComponentDisable functions or with the NS_LOG environment variable.

Definition at line 122 of file log.h.

#define NS_LOG_DEBUG (   msg)    NS_LOG (ns3::LOG_DEBUG, msg)
Parameters
msgthe message to log

Use NS_LOG to output a message of level LOG_DEBUG.

Definition at line 255 of file log.h.

Referenced by ns3::BridgeNetDevice::AddBridgePort(), ns3::UanChannel::AddDevice(), ns3::dsr::RouteCache::AddNeighbor(), ns3::dsr::RouteCache::AddRoute(), ns3::dsr::RouteCache::AddRoute_Link(), ns3::LteEnbRrc::AddUe(), ns3::Ipv6EndPointDemux::Allocate(), ns3::RandomVariableStreamHelper::AssignStreams(), ns3::UanPhyCalcSinrDual::CalcSinrDb(), ns3::UanPhyCalcSinrDefault::CalcSinrDb(), ns3::UanPhyCalcSinrFhFsk::CalcSinrDb(), ns3::BasicEnergySource::CalculateRemainingEnergy(), ns3::LiIonEnergySource::CalculateRemainingEnergy(), ns3::DcaTxop::Cancel(), ns3::dsr::DsrRouting::CancelLinkPacketTimer(), ns3::dsr::DsrRouting::CancelPassiveTimer(), ns3::dsr::DsrRouting::CancelRreqTimer(), ns3::AcousticModemEnergyModel::ChangeState(), ns3::WifiRadioEnergyModel::ChangeState(), ns3::UplinkSchedulerMBQoS::CheckDeadline(), ns3::dsr::DsrRouting::CheckSendBuffer(), ns3::dsr::RreqTable::CheckUniqueRreqId(), MeshTest::Configure(), BatteryLifetimeTest::ConstantLoadTest(), ns3::ObjectBase::ConstructSelf(), ns3::LteAmc::CreateCqiFeedbacks(), ns3::LteUePhy::CreateDlCqiFeedbackMessage(), ns3::EmuFdNetDeviceHelper::CreateFileDescriptor(), ns3::PlanetLabFdNetDeviceHelper::CreateFileDescriptor(), ns3::TapFdNetDeviceHelper::CreateFileDescriptor(), ns3::EmuNetDevice::CreateSocket(), ns3::LteEnbPhy::CreateSrsCqiReport(), ns3::TapBridge::CreateTap(), ns3::ApWifiMac::DeaggregateAmsduAndForward(), ns3::dsdv::RoutingProtocol::DeferredRouteOutput(), ns3::dsr::RouteCache::DeleteAllRoutesIncludeLink(), BasicEnergyDepletionTest::DepletionTestCase(), ns3::RadioBearerStatsCalculator::DlRxPdu(), ns3::LogDistancePropagationLossModel::DoCalcRxPower(), ns3::MinstrelWifiManager::DoGetRtsMode(), ns3::olsr::RoutingProtocol::DoInitialize(), ns3::RvBatteryModel::DoInitialize(), ns3::MinstrelWifiManager::DoReportDataFailed(), ns3::LenaTdBetFfMacSchedulerTestCase1::DoRun(), Ns3WimaxSimpleOFDMTestCase::DoRun(), BatteryLifetimeTest::DoRun(), ns3::RrcConnectionRequestTestCase::DoRun(), ns3::RrcConnectionSetupTestCase::DoRun(), ns3::RrcConnectionSetupCompleteTestCase::DoRun(), ns3::RrcConnectionReconfigurationCompleteTestCase::DoRun(), ns3::RrcConnectionReconfigurationTestCase::DoRun(), ns3::HandoverPreparationInfoTestCase::DoRun(), ns3::RrcConnectionReestablishmentRequestTestCase::DoRun(), ns3::RrcConnectionReestablishmentTestCase::DoRun(), ns3::RrcConnectionReestablishmentCompleteTestCase::DoRun(), ns3::RrcConnectionRejectTestCase::DoRun(), ns3::MeasurementReportTestCase::DoRun(), ns3::MeshPointDevice::DoSend(), ns3::dsr::DsrOptionRerr::DoSendError(), ns3::dsdv::RoutingProtocol::Drop(), ns3::olsr::RoutingProtocol::Dump(), ns3::UanPhyDual::EnergyDepletionHandler(), ns3::UanPhyGen::EnergyDepletionHandler(), ns3::UanMacAloha::Enqueue(), ns3::UanMacCw::Enqueue(), ns3::dsdv::PacketQueue::Enqueue(), ns3::dsdv::PacketQueue::Find(), ns3::MinstrelWifiManager::FindRate(), ns3::dsr::RouteCache::FindSameRoute(), ns3::dsr::DsrRouting::ForwardErrPacket(), ns3::aodv::RoutingProtocol::Forwarding(), ns3::dot11s::HwmpProtocol::ForwardUnicast(), ns3::dsr::DsrRouting::GetIPfromID(), ns3::Cost231PropagationLossModel::GetLoss(), ns3::LteEnbRrc::GetNewSrsConfigurationIndex(), ns3::RandomDiscPositionAllocator::GetNext(), ns3::UniformDiscPositionAllocator::GetNext(), ns3::olsr::MessageHeader::GetSerializedSize(), ns3::dsdv::RoutingProtocol::GetSettlingTime(), ns3::SSManager::GetSSRecord(), ns3::LteMiErrorModel::GetTbDecodificationStats(), ns3::LiIonEnergySource::GetVoltage(), ns3::AcousticModemEnergyModel::HandleEnergyDepletion(), ns3::WifiRadioEnergyModel::HandleEnergyDepletion(), ns3::BasicEnergySource::HandleEnergyDrainedEvent(), ns3::LiIonEnergySource::HandleEnergyDrainedEvent(), ns3::RvBatteryModel::HandleEnergyDrainedEvent(), ns3::SpectrumManager::HandoffEnded(), ns3::olsr::RoutingProtocol::HnaTimerExpire(), ns3::RttEstimator::IncreaseMultiplier(), ns3::dsr::DsrRouting::IncreaseRetransTimer(), ns3::MinstrelWifiManager::InitSampleTable(), ns3::WifiHelper::Install(), ns3::MobilityHelper::Install(), ns3::UanHelper::Install(), ns3::WifiHelper::InstallCR(), ns3::ArpCache::Entry::IsExpired(), ns3::SpectrumManager::IsPuInterfering(), ns3::dsr::DsrRouting::LinkScheduleTimerExpire(), ns3::olsr::RoutingProtocol::LinkSensing(), ns3::olsr::RoutingProtocol::LinkTupleUpdated(), ns3::Ipv6EndPointDemux::Lookup(), ns3::flame::FlameRtable::Lookup(), ns3::dot11s::HwmpRtable::LookupProactive(), ns3::dot11s::HwmpRtable::LookupReactive(), ns3::dsr::RreqTable::MarkLinkAsUnidirectional(), ns3::RttMeanDeviation::Measurement(), ns3::olsr::RoutingProtocol::MprComputation(), ns3::olsr::RoutingProtocol::NeighborLoss(), ns3::dsr::DsrRouting::NetworkScheduleTimerExpire(), ns3::UanMacCw::NotifyCcaEnd(), ns3::UanMacCw::NotifyCcaStart(), ns3::dsr::DsrRouting::NotifyDataReceipt(), ns3::dsr::DsrRouting::NotifyNewAggregate(), ns3::UanMacCw::NotifyRxEndError(), ns3::UanMacCw::NotifyRxEndOk(), ns3::UanMacCw::NotifyRxStart(), ns3::MacLow::NotifySensingStartNow(), ns3::MacLow::NotifySwitchingStartNow(), ns3::UanMacCw::NotifyTxStart(), ns3::dsr::DsrRouting::PassiveEntryCheck(), ns3::dsr::DsrRouting::PassiveScheduleTimerExpire(), ns3::MapScheduler::PeekNext(), ns3::dot11s::PeerManagementProtocol::PeerLinkStatus(), ns3::olsr::RoutingProtocol::PopulateMprSelectorSet(), ns3::olsr::RoutingProtocol::PopulateTwoHopNeighborSet(), ns3::MinstrelWifiManager::PrintSampleTable(), ns3::MinstrelWifiManager::PrintTable(), ns3::dsr::DsrOptions::PrintVector(), ns3::dsr::DsrRouting::PrintVector(), ns3::dsr::RouteCache::PrintVector(), ns3::dsr::DsrOptionRreq::Process(), ns3::dsr::DsrOptionRrep::Process(), ns3::dsr::DsrOptionSR::Process(), ns3::dsr::DsrOptionRerr::Process(), ns3::dsr::DsrOptionAckReq::Process(), ns3::olsr::RoutingProtocol::ProcessHello(), ns3::olsr::RoutingProtocol::ProcessMid(), ns3::olsr::RoutingProtocol::ProcessTc(), ns3::dsr::DsrRouting::PromiscReceive(), ns3::dsr::SendBuffer::Purge(), ns3::dsdv::PacketQueue::Purge(), ns3::dsr::RouteCache::PurgeLinkNode(), ns3::MinstrelWifiManager::RateInit(), ns3::Icmpv4L4Protocol::Receive(), ns3::UanTransducerHd::Receive(), ns3::MacRxMiddle::Receive(), ns3::AdhocWifiMac::Receive(), ns3::StaWifiMac::Receive(), ns3::ApWifiMac::Receive(), ns3::UdpL4Protocol::Receive(), ns3::MeshWifiInterfaceMac::Receive(), ns3::dsr::DsrRouting::Receive(), ns3::MacLow::ReceiveError(), ns3::MeshPointDevice::ReceiveFromDevice(), ns3::UdpL4Protocol::ReceiveIcmp(), ns3::TcpL4Protocol::ReceiveIcmp(), ns3::MacLow::ReceiveOk(), ns3::aodv::RoutingProtocol::RecvAodv(), ns3::dsdv::RoutingProtocol::RecvDsdv(), ns3::aodv::RoutingProtocol::RecvRequest(), ns3::TdMtFfMacScheduler::RefreshHarqProcesses(), ns3::TtaFfMacScheduler::RefreshHarqProcesses(), ns3::FdMtFfMacScheduler::RefreshHarqProcesses(), ns3::PfFfMacScheduler::RefreshHarqProcesses(), ns3::TdBetFfMacScheduler::RefreshHarqProcesses(), ns3::FdBetFfMacScheduler::RefreshHarqProcesses(), ns3::TdTbfqFfMacScheduler::RefreshHarqProcesses(), ns3::FdTbfqFfMacScheduler::RefreshHarqProcesses(), ns3::PssFfMacScheduler::RefreshHarqProcesses(), ns3::olsr::RoutingProtocol::RemoveLinkTuple(), ns3::MapScheduler::RemoveNext(), ns3::flame::FlameProtocol::RemoveRoutingStuff(), ns3::FlowMonitor::ReportDrop(), ns3::FlowMonitor::ReportFirstTx(), ns3::FlowMonitor::ReportLastRx(), ns3::flame::FlameProtocol::RequestRoute(), ns3::RttMeanDeviation::RetransmitTimeout(), ns3::dsr::DsrOptions::ReverseSearchNextHop(), ns3::dsr::DsrOptions::ReverseSearchNextTwoHop(), ns3::aodv::RoutingProtocol::RouteInput(), ns3::olsr::RoutingProtocol::RouteInput(), ns3::aodv::RoutingProtocol::RouteOutput(), ns3::dsdv::RoutingProtocol::RouteOutput(), ns3::Ipv4NixVectorRouting::RouteOutput(), ns3::olsr::RoutingProtocol::RouteOutput(), ns3::aodv::RoutingProtocol::RouteRequestTimerExpire(), ns3::dsr::DsrRouting::RouteRequestTimerExpire(), ns3::olsr::RoutingProtocol::RoutingTableComputation(), ns3::UanMacAloha::RxPacketError(), ns3::UanMacAloha::RxPacketGood(), ns3::dsr::DsrRouting::SalvagePacket(), ns3::BSSchedulerRtps::Schedule(), ns3::dsr::DsrRouting::ScheduleNetworkPacketRetry(), ns3::dsr::DsrRouting::SchedulePassivePacketRetry(), ns3::dsr::DsrRouting::ScheduleRreqRetry(), ns3::dsr::DsrOptions::SearchNextHop(), ns3::dsr::DsrRouting::SearchNextHop(), ns3::YansWifiChannel::Send(), ns3::dsr::DsrRouting::Send(), ns3::MeshWifiInterfaceMac::SendBeacon(), ns3::SubscriberStationNetDevice::SendBurst(), ns3::dsr::DsrRouting::SendErrorRequest(), ns3::olsr::RoutingProtocol::SendHello(), ns3::UanPhyDual::SendPacket(), ns3::UanPhyGen::SendPacket(), ns3::dsr::DsrRouting::SendPacketFromBuffer(), ns3::dsdv::RoutingProtocol::SendPacketFromQueue(), ns3::aodv::RoutingProtocol::SendPacketFromQueue(), ns3::dsdv::RoutingProtocol::SendPeriodicUpdate(), ns3::olsr::RoutingProtocol::SendQueuedMessages(), ns3::aodv::RoutingProtocol::SendRequest(), ns3::dsr::DsrRouting::SendRerrWhenBreaksLinkToNextHop(), ns3::Ipv4RawSocketImpl::SendTo(), ns3::Ipv6RawSocketImpl::SendTo(), ns3::dsdv::RoutingProtocol::SendTriggeredUpdate(), ns3::dsr::DsrRouting::SendUnreachError(), ns3::SpectrumManager::SenseEnded(), ns3::UanTransducerHd::SetChannel(), ns3::UanNetDevice::SetChannel(), ns3::YansWifiPhy::SetChannelNumber(), ns3::AcousticModemEnergyModel::SetEnergyDepletionCallback(), ns3::WifiRadioEnergyModel::SetEnergyDepletionCallback(), ns3::UanPhyDual::SetEnergyModelCallback(), ns3::Ipv4NixVectorRouting::SetIpv4(), ns3::olsr::RoutingProtocol::SetIpv4(), ns3::UanNetDevice::SetMac(), ns3::AcousticModemEnergyModel::SetMicroModemState(), ns3::UanNetDevice::SetPhy(), ns3::UanChannel::SetPropagationModel(), ns3::olsr::RoutingProtocol::SetRoutingTableAssociation(), ns3::UanNetDevice::SetTransducer(), ns3::WifiRadioEnergyModel::SetWifiRadioState(), ns3::AnimationInterface::StartAnimation(), ns3::FdNetDevice::StartDevice(), ns3::UanPhyGen::StartRxPacket(), ns3::YansWifiPhy::StartSensing(), ns3::LteEnbPhy::StartSubFrame(), ns3::MacLow::StartTransmission(), BasicEnergyUpdateTest::StateSwitchTest(), ns3::olsr::RoutingProtocol::TcTimerExpire(), ns3::dot11s::PeerManagementProtocol::TransmissionFailure(), ns3::dot11s::PeerManagementProtocol::TransmissionSuccess(), ns3::UanTransducerHd::Transmit(), ns3::SpectrumManager::TransmitEnded(), ns3::UanChannel::TxPacket(), ns3::RadioBearerStatsCalculator::UlRxPdu(), ns3::BasicEnergySource::UpdateEnergySource(), ns3::RvBatteryModel::UpdateEnergySource(), ns3::LiIonEnergySource::UpdateEnergySource(), ns3::OnoeWifiManager::UpdateMode(), ns3::aodv::RoutingProtocol::UpdateRouteLifeTime(), ns3::MinstrelWifiManager::UpdateStats(), and BatteryLifetimeTest::VariableLoadTest().

#define NS_LOG_FUNCTION (   parameters)
Value:
do \
{ \
if (g_log.IsEnabled (ns3::LOG_FUNCTION)) \
{ \
NS_LOG_APPEND_TIME_PREFIX; \
NS_LOG_APPEND_NODE_PREFIX; \
NS_LOG_APPEND_CONTEXT; \
std::clog << g_log.Name () << ":" \
<< __FUNCTION__ << "("; \
ns3::ParameterLogger (std::clog) << parameters; \
std::clog << ")" << std::endl; \
} \
} \
while (false)
Parameters
parametersthe parameters to output.

If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ", ".

Typical usage looks like:

NS_LOG_FUNCTION (aNumber<<anotherNumber);

And the output will look like:

Component:Function (aNumber, anotherNumber)

To facilitate function tracing, most functions should begin with (at least) NS_LOG_FUNCTION(this). Static functions should use NS_LOG_FUNCTION_NOARGS() instead.

Definition at line 311 of file log.h.

Referenced by ns3::RttEstimator::AckSeq(), ns3::aodv::RoutingProtocol::AckTimerExpire(), ns3::LteHelper::ActivateDataRadioBearer(), ns3::LteHelper::ActivateDedicatedEpsBearer(), ns3::EpcHelper::ActivateEpsBearer(), ns3::EpcUeNas::ActivateEpsBearer(), ns3::NodeList::Add(), ns3::EpcTftClassifier::Add(), ns3::Names::Add(), ns3::TcpRxBuffer::Add(), ns3::TcpTxBuffer::Add(), ns3::NdiscCache::Add(), ns3::ArpCache::Add(), ns3::ByteTagList::Add(), ns3::EpcTft::Add(), ns3::DeviceEnergyModelContainer::Add(), ns3::DcfManager::Add(), ns3::dsr::DsrRouting::AddAckReqHeader(), ns3::Ipv4Interface::AddAddress(), ns3::Ipv4L3Protocol::AddAddress(), ns3::Ipv6L3Protocol::AddAddress(), ns3::Node::AddApplication(), ns3::Ipv4GlobalRouting::AddASExternalRouteTo(), ns3::ByteTagList::AddAtEnd(), ns3::Packet::AddAtEnd(), ns3::Buffer::AddAtEnd(), ns3::ByteTagList::AddAtStart(), ns3::Buffer::AddAtStart(), ns3::GlobalRoutingLSA::AddAttachedRouter(), ns3::TypeId::AddAttribute(), ns3::Ipv6L3Protocol::AddAutoconfiguredAddress(), ns3::EpcMme::AddBearer(), ns3::EpcSgwPgwApplication::UeInfo::AddBearer(), ns3::Packet::AddByteTag(), ns3::SPFVertex::AddChild(), ns3::Radvd::AddConfiguration(), ns3::UeManager::AddDataRadioBearerInfo(), ns3::Node::AddDevice(), ns3::EpcHelper::AddEnb(), ns3::EpcMme::AddEnb(), ns3::EpcSgwPgwApplication::AddEnb(), ns3::olsr::RoutingProtocol::AddEntry(), ns3::LteSpectrumPhy::AddExpectedTb(), ns3::Ipv4L3Protocol::Fragments::AddFragment(), ns3::Packet::AddHeader(), ns3::CsmaNetDevice::AddHeader(), ns3::Ipv6StaticRouting::AddHostRouteTo(), ns3::Ipv4GlobalRouting::AddHostRouteTo(), ns3::Ipv4StaticRouting::AddHostRouteTo(), ns3::Ipv4L3Protocol::AddInterface(), ns3::Ipv6L3Protocol::AddInterface(), ns3::LteInterference::AddInterferenceChunkProcessor(), ns3::Ipv6L3Protocol::AddIpv6Interface(), ns3::LteNetDevice::AddLinkChangeCallback(), ns3::SimpleNetDevice::AddLinkChangeCallback(), ns3::NonCommunicatingNetDevice::AddLinkChangeCallback(), ns3::AlohaNoackNetDevice::AddLinkChangeCallback(), ns3::CsmaNetDevice::AddLinkChangeCallback(), ns3::GlobalRoutingLSA::AddLinkRecord(), ns3::Ipv6StaticRouting::AddMulticastRoute(), ns3::Ipv4StaticRouting::AddMulticastRoute(), ns3::NixVector::AddNeighborIndex(), ns3::Ipv6StaticRouting::AddNetworkRouteTo(), ns3::Ipv4StaticRouting::AddNetworkRouteTo(), ns3::Ipv4GlobalRouting::AddNetworkRouteTo(), ns3::PacketBurst::AddPacket(), ns3::Packet::AddPacketTag(), ns3::Packet::AddPaddingAtEnd(), ns3::RadvdInterface::AddPrefix(), ns3::SingleModelSpectrumChannel::AddPropagationLossModel(), ns3::MultiModelSpectrumChannel::AddPropagationLossModel(), ns3::Address::Address(), ns3::PbbAddressBlock::AddressBack(), ns3::PbbAddressBlock::AddressBegin(), ns3::PbbMessage::AddressBlockBack(), ns3::PbbMessage::AddressBlockBegin(), ns3::PbbMessage::AddressBlockClear(), ns3::PbbMessage::AddressBlockEmpty(), ns3::PbbMessage::AddressBlockEnd(), ns3::PbbMessage::AddressBlockErase(), ns3::PbbMessage::AddressBlockFront(), ns3::PbbMessage::AddressBlockPopBack(), ns3::PbbMessage::AddressBlockPopFront(), ns3::PbbMessage::AddressBlockPushBack(), ns3::PbbMessage::AddressBlockPushFront(), ns3::PbbMessage::AddressBlockSize(), ns3::PbbAddressBlock::AddressClear(), ns3::PbbAddressBlock::AddressEmpty(), ns3::PbbAddressBlock::AddressEnd(), ns3::PbbAddressBlock::AddressErase(), ns3::PbbAddressBlock::AddressFront(), ns3::PbbAddressBlock::AddressPopBack(), ns3::PbbAddressBlock::AddressPopFront(), ns3::PbbAddressBlock::AddressPushBack(), ns3::PbbAddressBlock::AddressPushFront(), ns3::PbbAddressBlock::AddressSize(), ns3::aodv::RoutingTable::AddRoute(), ns3::dsr::RouteCache::AddRoute(), ns3::dsr::RouteCache::AddRoute_Link(), ns3::Ipv4ListRouting::AddRoutingProtocol(), ns3::Ipv6ListRouting::AddRoutingProtocol(), ns3::LteInterference::AddRsPowerChunkProcessor(), ns3::SingleModelSpectrumChannel::AddRx(), ns3::MultiModelSpectrumChannel::AddRx(), ns3::SpectrumInterference::AddSignal(), ns3::LteInterference::AddSignal(), ns3::LteInterference::AddSinrChunkProcessor(), ns3::SingleModelSpectrumChannel::AddSpectrumPropagationLossModel(), ns3::TestCase::AddTestCase(), ns3::TypeId::AddTraceSource(), ns3::Packet::AddTrailer(), ns3::EpcHelper::AddUe(), ns3::EpcMme::AddUe(), ns3::EpcSgwPgwApplication::AddUe(), ns3::LteEnbRrc::AddUe(), ns3::CommandLine::AddValue(), ns3::NdiscCache::Entry::AddWaitingPacket(), ns3::EpcHelper::AddX2Interface(), ns3::EpcX2::AddX2Interface(), ns3::LteHelper::AddX2Interface(), ns3::MsduStandardAggregator::Aggregate(), ns3::Object::AggregateObject(), ns3::Ipv6EndPointDemux::Allocate(), ns3::SystemPath::Append(), ns3::EnergySource::AppendDeviceEnergyModel(), ns3::AsciiToIpv6Host(), ns3::Ipv6AddressHelper::Assign(), ns3::BriteTopologyHelper::AssignIpv4Addresses(), ns3::BriteTopologyHelper::AssignIpv6Addresses(), ns3::TraceFadingLossModel::AssignStreams(), ns3::UanMacAloha::AssignStreams(), ns3::Radvd::AssignStreams(), ns3::UanMacRcGw::AssignStreams(), ns3::LteUeMac::AssignStreams(), ns3::dot11s::HwmpProtocol::AssignStreams(), ns3::dsdv::RoutingProtocol::AssignStreams(), ns3::Backoff::AssignStreams(), ns3::UanMacCw::AssignStreams(), ns3::MinstrelWifiManager::AssignStreams(), ns3::aodv::RoutingProtocol::AssignStreams(), ns3::olsr::RoutingProtocol::AssignStreams(), ns3::OnOffApplication::AssignStreams(), ns3::Ipv6Extension::AssignStreams(), ns3::DcaTxop::AssignStreams(), ns3::MeshWifiInterfaceMac::AssignStreams(), ns3::dot11s::PeerManagementProtocol::AssignStreams(), ns3::EdcaTxopN::AssignStreams(), ns3::YansWifiPhy::AssignStreams(), ns3::UanMacRc::AssignStreams(), ns3::RedQueue::AssignStreams(), ns3::SimpleOfdmWimaxPhy::AssignStreams(), ns3::UanPhyGen::AssignStreams(), ns3::RateErrorModel::AssignStreams(), ns3::Ipv4GlobalRouting::AssignStreams(), ns3::WimaxHelper::AssignStreams(), ns3::UanPhyDual::AssignStreams(), ns3::BurstErrorModel::AssignStreams(), ns3::LteSpectrumPhy::AssignStreams(), ns3::AnimationInterface::AssignStreams(), ns3::dsr::DsrRouting::AssignStreams(), ns3::Ipv6AddressHelper::AssignWithoutAddress(), ns3::PointToPointChannel::Attach(), ns3::CsmaChannel::Attach(), ns3::PointToPointNetDevice::Attach(), ns3::CsmaNetDevice::Attach(), ns3::LteHelper::Attach(), ns3::LteHelper::AttachToClosestEnb(), ns3::PbbTlvBlock::Back(), ns3::PbbAddressTlvBlock::Back(), ns3::ObjectPtrContainerValue::Begin(), ns3::PbbTlvBlock::Begin(), ns3::DeviceEnergyModelContainer::Begin(), ns3::Config::MatchContainer::Begin(), ns3::ByteTagList::Begin(), ns3::PbbAddressTlvBlock::Begin(), ns3::Packet::BeginItem(), ns3::Ipv4RawSocketImpl::Bind(), ns3::UdpSocketImpl::Bind(), ns3::NscTcpSocketImpl::Bind(), ns3::TcpSocketBase::Bind(), ns3::PacketSocket::Bind(), ns3::GlobalValue::Bind(), ns3::Ipv6RawSocketImpl::Bind(), ns3::Ipv4RawSocketImpl::Bind6(), ns3::TcpSocketBase::Bind6(), ns3::PacketSocket::Bind6(), ns3::GlobalValue::BindFailSafe(), ns3::UdpSocketImpl::BindToNetDevice(), ns3::TcpSocketBase::BindToNetDevice(), ns3::Socket::BindToNetDevice(), ns3::NixVector::BitCount(), ns3::EnergySource::BreakDeviceEnergyModelRefCycle(), ns3::BreakpointFallback(), ns3::SystemCondition::Broadcast(), ns3::BriteTopologyHelper::BuildBriteEdgeInfoList(), ns3::BriteTopologyHelper::BuildBriteNodeInfoList(), ns3::GlobalRouteManagerImpl::BuildGlobalRoutingDatabase(), ns3::Ipv6L3Protocol::BuildHeader(), ns3::Building::Building(), ns3::LteEnbPhy::CalcChannelQualityForUe(), ns3::EthernetTrailer::CalcFcs(), ns3::CalculateDistance(), ns3::Buffer::Iterator::CalculateIpChecksum(), ns3::Icmpv6Header::CalculatePseudoHeaderChecksum(), ns3::BasicEnergySource::CalculateRemainingEnergy(), ns3::LiIonEnergySource::CalculateRemainingEnergy(), ns3::EnergySource::CalculateTotalCurrent(), ns3::DataRate::CalculateTxTime(), ns3::dsr::DsrRouting::CallCancelPacketTimer(), ns3::EventImpl::Cancel(), ns3::EventId::Cancel(), ns3::DcaTxop::Cancel(), ns3::Timer::Cancel(), ns3::dsr::DsrRouting::CancelLinkPacketTimer(), ns3::dsr::DsrRouting::CancelNetworkPacketTimer(), ns3::dsr::DsrRouting::CancelPacketTimerNextHop(), ns3::dsr::DsrRouting::CancelPassivePacketTimer(), ns3::dsr::DsrRouting::CancelPassiveTimer(), ns3::dsr::DsrRouting::CancelRreqTimer(), ns3::CandidateQueue::CandidateQueue(), ns3::EmpiricalVariable::CDF(), ns3::EmpiricalVariableImpl::CDF(), ns3::EmpiricalRandomVariable::CDF(), ns3::AcousticModemEnergyModel::ChangeState(), ns3::WifiRadioEnergyModel::ChangeState(), ns3::EnumChecker::Check(), ns3::Address::CheckCompatible(), ns3::dsr::DsrOptions::CheckDuplicates(), ns3::EthernetTrailer::CheckFcs(), ns3::dsr::RouteCache::CheckUniqueAckId(), ns3::EpcTftClassifier::Classify(), ns3::EpcSgwPgwApplication::UeInfo::Classify(), ns3::BlockAckManager::CleanupBuffers(), ns3::PcapFileWrapper::Clear(), ns3::PcapFile::Clear(), ns3::CandidateQueue::Clear(), ns3::PbbTlvBlock::Clear(), ns3::DeviceEnergyModelContainer::Clear(), ns3::PbbAddressTlvBlock::Clear(), ns3::GlobalRoutingLSA::ClearLinkRecords(), ns3::ArpCache::Entry::ClearRetries(), ns3::RttEstimator::ClearSent(), ns3::Ipv4RawSocketImpl::Close(), ns3::NscTcpSocketImpl::Close(), ns3::PcapFileWrapper::Close(), ns3::PcapFile::Close(), ns3::TcpSocketBase::Close(), ns3::PacketSocket::Close(), ns3::TcpSocketBase::CloseAndNotify(), ns3::Ipv4Address::CombineMask(), ns3::Ipv6Address::CombinePrefix(), ns3::CandidateQueue::CompareSPFVertex(), ns3::LteEnbRrc::ConfigureCell(), ns3::Ipv4RawSocketImpl::Connect(), ns3::TcpNewReno::Connect(), ns3::TcpReno::Connect(), ns3::TcpTahoe::Connect(), ns3::UdpSocketImpl::Connect(), ns3::NscTcpSocketImpl::Connect(), ns3::TcpWestwood::Connect(), ns3::TcpSocketBase::Connect(), ns3::EpcUeNas::Connect(), ns3::PacketSocket::Connect(), ns3::Ipv6RawSocketImpl::Connect(), ns3::Config::MatchContainer::Connect(), ns3::Config::Connect(), ns3::LteEnbRrc::ConnectionTimeout(), ns3::Config::MatchContainer::ConnectWithoutContext(), ns3::Config::ConnectWithoutContext(), ns3::ConstantRandomVariable::ConstantRandomVariable(), ns3::ConstantVariable::ConstantVariable(), ns3::ConstantVariableImpl::ConstantVariableImpl(), ns3::Object::Construct(), ns3::ObjectBase::ConstructSelf(), ns3::BriteTopologyHelper::ConstructTopology(), ns3::dsr::DsrOptions::ContainAddressAfter(), ns3::PacketSocketAddress::ConvertFrom(), ns3::Mac64Address::ConvertFrom(), ns3::Mac48Address::ConvertFrom(), ns3::InetSocketAddress::ConvertFrom(), ns3::Inet6SocketAddress::ConvertFrom(), ns3::Ipv4Address::ConvertFrom(), ns3::Ipv6Address::ConvertFrom(), ns3::Mac64Address::ConvertTo(), ns3::Inet6SocketAddress::ConvertTo(), ns3::Mac48Address::ConvertTo(), ns3::Ipv6Address::ConvertTo(), ns3::HalfDuplexIdealPhySignalParameters::Copy(), ns3::LteSpectrumSignalParameters::Copy(), ns3::PacketBurst::Copy(), ns3::EnumValue::Copy(), ns3::BooleanValue::Copy(), ns3::PointerValue::Copy(), ns3::ObjectPtrContainerValue::Copy(), ns3::DsrHelper::Copy(), ns3::NixVector::Copy(), ns3::LteSpectrumSignalParametersDataFrame::Copy(), ns3::SpectrumSignalParameters::Copy(), ns3::LteSpectrumSignalParametersDlCtrlFrame::Copy(), ns3::LteSpectrumSignalParametersUlSrsFrame::Copy(), ns3::EmptyAttributeValue::Copy(), ns3::Packet::Copy(), ns3::CallbackValue::Copy(), ns3::Address::CopyAllFrom(), ns3::Address::CopyAllTo(), ns3::Packet::CopyData(), ns3::Buffer::CopyData(), ns3::Mac64Address::CopyFrom(), ns3::Mac48Address::CopyFrom(), ns3::Address::CopyFrom(), ns3::TcpTxBuffer::CopyFromSequence(), ns3::GlobalRoutingLSA::CopyLinkRecords(), ns3::Mac64Address::CopyTo(), ns3::Mac48Address::CopyTo(), ns3::Address::CopyTo(), ns3::TcpWestwood::CountAck(), ns3::GridBuildingAllocator::Create(), ns3::DsrHelper::Create(), ns3::ObjectFactory::Create(), ns3::EnumChecker::Create(), ns3::BlockAckManager::CreateAgreement(), ns3::Icmpv6L4Protocol::CreateCache(), ns3::LteAmc::CreateCqiFeedbacks(), ns3::LteUePhy::CreateDlCqiFeedbackMessage(), ns3::PcapHelper::CreateFile(), ns3::EmuFdNetDeviceHelper::CreateFileDescriptor(), ns3::PlanetLabFdNetDeviceHelper::CreateFileDescriptor(), ns3::TapFdNetDeviceHelper::CreateFileDescriptor(), ns3::AsciiTraceHelper::CreateFileStream(), ns3::PacketMetadata::CreateFragment(), ns3::Packet::CreateFragment(), ns3::Buffer::CreateFragment(), ns3::LteSpectrumValueHelper::CreateNoisePowerSpectralDensity(), ns3::LteEnbPhy::CreatePuschCqiReport(), ns3::Ipv4L3Protocol::CreateRawSocket(), ns3::Ipv4RawSocketFactoryImpl::CreateSocket(), ns3::PacketSocketFactory::CreateSocket(), ns3::NscTcpL4Protocol::CreateSocket(), ns3::Socket::CreateSocket(), ns3::LteEnbPhy::CreateSrsCqiReport(), ns3::LteTestUePhy::CreateTxPowerSpectralDensity(), ns3::LteSpectrumValueHelper::CreateTxPowerSpectralDensity(), ns3::LteUePhy::CreateTxPowerSpectralDensity(), ns3::LteEnbPhy::CreateTxPowerSpectralDensity(), ns3::CsmaNetDevice::CsmaNetDevice(), ns3::dsr::DsrOptions::CutRoute(), ns3::DataRate::DataRate(), ns3::ApWifiMac::DeaggregateAmsduAndForward(), ns3::GlobalRouteManagerImpl::DebugSPFCalculate(), ns3::GlobalRouteManagerImpl::DebugUseLsdb(), ns3::LiIonEnergySource::DecreaseRemainingEnergy(), ns3::dsr::RouteCache::DecStability(), ns3::dsdv::RoutingProtocol::DeferredRouteOutput(), ns3::aodv::RoutingProtocol::DeferredRouteOutput(), ns3::EpcTftClassifier::Delete(), ns3::aodv::RoutingTableEntry::DeleteAllPrecursors(), ns3::aodv::RoutingTable::DeleteAllRoutesFromInterface(), ns3::dsr::RouteCache::DeleteAllRoutesIncludeLink(), ns3::GlobalRouteManagerImpl::DeleteGlobalRoutes(), ns3::aodv::RoutingTableEntry::DeletePrecursor(), ns3::Ipv4L3Protocol::DeleteRawSocket(), ns3::Ipv6L3Protocol::DeleteRawSocket(), ns3::aodv::RoutingTable::DeleteRoute(), ns3::dsr::RouteCache::DeleteRoute(), ns3::Queue::Dequeue(), ns3::dsr::DsrNetworkQueue::Dequeue(), ns3::dsdv::PacketQueue::Dequeue(), ns3::Queue::DequeueAll(), ns3::ArpCache::Entry::DequeuePending(), ns3::LteEnbPhy::DequeueUlDci(), ns3::FlowIdTag::Deserialize(), ns3::AmsduSubframeHeader::Deserialize(), ns3::LlcSnapHeader::Deserialize(), ns3::CtrlBAckRequestHeader::Deserialize(), ns3::Icmpv4Header::Deserialize(), ns3::ArpHeader::Deserialize(), ns3::SeqTsHeader::Deserialize(), ns3::Ipv4PacketInfoTag::Deserialize(), ns3::Icmpv4Echo::Deserialize(), ns3::RadiotapHeader::Deserialize(), ns3::EthernetTrailer::Deserialize(), ns3::Ipv4Address::Deserialize(), ns3::EthernetHeader::Deserialize(), ns3::CtrlBAckResponseHeader::Deserialize(), ns3::Ipv6Address::Deserialize(), ns3::Icmpv4DestinationUnreachable::Deserialize(), ns3::NixVector::Deserialize(), ns3::Icmpv4TimeExceeded::Deserialize(), ns3::PbbTlvBlock::Deserialize(), ns3::Icmpv6Header::Deserialize(), ns3::Address::Deserialize(), ns3::Ipv4Header::Deserialize(), ns3::Icmpv6OptionHeader::Deserialize(), ns3::PbbAddressTlvBlock::Deserialize(), ns3::Icmpv6NS::Deserialize(), ns3::Buffer::Deserialize(), ns3::Icmpv6NA::Deserialize(), ns3::PbbPacket::Deserialize(), ns3::Icmpv6RA::Deserialize(), ns3::Icmpv6RS::Deserialize(), ns3::SocketAddressTag::Deserialize(), ns3::SocketIpTtlTag::Deserialize(), ns3::Icmpv6Redirection::Deserialize(), ns3::SocketSetDontFragmentTag::Deserialize(), ns3::PbbMessage::Deserialize(), ns3::Icmpv6Echo::Deserialize(), ns3::Icmpv6DestinationUnreachable::Deserialize(), ns3::Icmpv6TooBig::Deserialize(), ns3::Icmpv6TimeExceeded::Deserialize(), ns3::Icmpv6ParameterError::Deserialize(), ns3::PbbAddressBlock::Deserialize(), ns3::Icmpv6OptionMtu::Deserialize(), ns3::Icmpv6OptionPrefixInformation::Deserialize(), ns3::PbbTlv::Deserialize(), ns3::Icmpv6OptionLinkLayerAddress::Deserialize(), ns3::Icmpv6OptionRedirected::Deserialize(), ns3::EnumValue::DeserializeFromString(), ns3::BooleanValue::DeserializeFromString(), ns3::PointerValue::DeserializeFromString(), ns3::ObjectPtrContainerValue::DeserializeFromString(), ns3::EmptyAttributeValue::DeserializeFromString(), ns3::CallbackValue::DeserializeFromString(), ns3::PbbMessage::DeserializeMessage(), ns3::DefaultSimulatorImpl::Destroy(), ns3::RealtimeSimulatorImpl::Destroy(), ns3::TcpSocketBase::Destroy(), ns3::TcpSocketBase::Destroy6(), ns3::BlockAckManager::DestroyAgreement(), ns3::CsmaChannel::Detach(), ns3::DeterministicRandomVariable::DeterministicRandomVariable(), ns3::DeterministicVariable::DeterministicVariable(), ns3::DeterministicVariableImpl::DeterministicVariableImpl(), ns3::DeviceEnergyModelContainer::DeviceEnergyModelContainer(), ns3::AthstatsWifiTraceSink::DevRxTrace(), ns3::AthstatsWifiTraceSink::DevTxTrace(), ns3::PcapFile::Diff(), ns3::ErrorModel::Disable(), ns3::TcpTxBuffer::DiscardUpTo(), ns3::RvBatteryModel::Discharge(), ns3::EpcUeNas::Disconnect(), ns3::Config::MatchContainer::Disconnect(), ns3::Config::Disconnect(), ns3::Config::MatchContainer::DisconnectWithoutContext(), ns3::Config::DisconnectWithoutContext(), ns3::GlobalRouter::DiscoverLSAs(), ns3::Object::Dispose(), ns3::EnergySource::DisposeDeviceModels(), ns3::PhyRxStatsCalculator::DlPhyReception(), ns3::PhyTxStatsCalculator::DlPhyTransmission(), ns3::RadioBearerStatsCalculator::DlRxPdu(), ns3::MacStatsCalculator::DlScheduling(), ns3::RadioBearerStatsCalculator::DlTxPdu(), ns3::EthernetTrailer::DoCalcFcs(), ns3::ConstantSpectrumPropagationLossModel::DoCalcRxPowerSpectralDensity(), ns3::TraceFadingLossModel::DoCalcRxPowerSpectralDensity(), ns3::TcpSocketBase::DoClose(), ns3::TcpSocketBase::DoConnect(), ns3::AarfWifiManager::DoCreateStation(), ns3::ConstantRateWifiManager::DoCreateStation(), ns3::AarfcdWifiManager::DoCreateStation(), ns3::CaraWifiManager::DoCreateStation(), ns3::AmrrWifiManager::DoCreateStation(), ns3::ArfWifiManager::DoCreateStation(), ns3::Icmpv6L4Protocol::DoDAD(), ns3::Object::DoDelete(), ns3::LteRlcTm::DoDispose(), ns3::LteRlcUm::DoDispose(), ns3::LteRlcAm::DoDispose(), ns3::Building::DoDispose(), ns3::LteHexGridEnbTopologyHelper::DoDispose(), ns3::LtePdcp::DoDispose(), ns3::LteTestUePhy::DoDispose(), ns3::LteSimpleNetDevice::DoDispose(), ns3::LteSimpleHelper::DoDispose(), ns3::RadioEnvironmentMapHelper::DoDispose(), ns3::EpcUeNas::DoDispose(), ns3::UdpEchoServer::DoDispose(), ns3::Ipv4RawSocketImpl::DoDispose(), ns3::LteTestRrc::DoDispose(), ns3::NodeListPriv::DoDispose(), ns3::LteUeMac::DoDispose(), ns3::ChannelListPriv::DoDispose(), ns3::V4Ping::DoDispose(), ns3::LteInterference::DoDispose(), ns3::LteUeRrcProtocolIdeal::DoDispose(), ns3::EpcSgwPgwApplication::DoDispose(), ns3::LteNetDevice::DoDispose(), ns3::LteEnbNetDevice::DoDispose(), ns3::LteRlc::DoDispose(), ns3::RemSpectrumPhy::DoDispose(), ns3::ShannonSpectrumErrorModel::DoDispose(), ns3::EpcEnbApplication::DoDispose(), ns3::EpcMme::DoDispose(), ns3::LteUeRrcProtocolReal::DoDispose(), ns3::LteHelper::DoDispose(), ns3::UdpClient::DoDispose(), ns3::LteEnbMac::DoDispose(), ns3::DefaultSimulatorImpl::DoDispose(), ns3::EpcHelper::DoDispose(), ns3::PacketBurst::DoDispose(), ns3::SingleModelSpectrumChannel::DoDispose(), ns3::FfMacScheduler::DoDispose(), ns3::LteEnbPhy::DoDispose(), ns3::LteUeNetDevice::DoDispose(), ns3::Icmpv4L4Protocol::DoDispose(), ns3::LteUePhy::DoDispose(), ns3::UdpServer::DoDispose(), ns3::RrFfMacScheduler::DoDispose(), ns3::BulkSendApplication::DoDispose(), ns3::ArpL3Protocol::DoDispose(), ns3::TdMtFfMacScheduler::DoDispose(), ns3::TtaFfMacScheduler::DoDispose(), ns3::FdMtFfMacScheduler::DoDispose(), ns3::EdcaTxopN::DoDispose(), ns3::RadioBearerStatsCalculator::DoDispose(), ns3::EpcX2::DoDispose(), ns3::PfFfMacScheduler::DoDispose(), ns3::Radvd::DoDispose(), ns3::RealtimeSimulatorImpl::DoDispose(), ns3::TdBetFfMacScheduler::DoDispose(), ns3::PacketSink::DoDispose(), ns3::Ipv4ListRouting::DoDispose(), ns3::FdBetFfMacScheduler::DoDispose(), ns3::SimpleNetDevice::DoDispose(), ns3::LteUeRrc::DoDispose(), ns3::SpectrumAnalyzer::DoDispose(), ns3::NscTcpL4Protocol::DoDispose(), ns3::TdTbfqFfMacScheduler::DoDispose(), ns3::FdTbfqFfMacScheduler::DoDispose(), ns3::PssFfMacScheduler::DoDispose(), ns3::LteEnbRrcProtocolIdeal::DoDispose(), ns3::SimpleDeviceEnergyModel::DoDispose(), ns3::SpectrumInterference::DoDispose(), ns3::UdpTraceClient::DoDispose(), ns3::BuildingsMobilityModel::DoDispose(), ns3::MultiModelSpectrumChannel::DoDispose(), ns3::BasicEnergySource::DoDispose(), ns3::LteEnbRrcProtocolReal::DoDispose(), ns3::PacketSocket::DoDispose(), ns3::OnOffApplication::DoDispose(), ns3::LteTestPdcp::DoDispose(), ns3::LtePhy::DoDispose(), ns3::Application::DoDispose(), ns3::ApWifiMac::DoDispose(), ns3::NonCommunicatingNetDevice::DoDispose(), ns3::UdpEchoClient::DoDispose(), ns3::WaveformGenerator::DoDispose(), ns3::LteRlcSm::DoDispose(), ns3::LiIonEnergySource::DoDispose(), ns3::Ipv4Interface::DoDispose(), ns3::MeshWifiInterfaceMac::DoDispose(), ns3::LteSpectrumPhy::DoDispose(), ns3::LteTestMac::DoDispose(), ns3::YansWifiPhy::DoDispose(), ns3::EnergySource::DoDispose(), ns3::DcaTxop::DoDispose(), ns3::FdNetDevice::DoDispose(), ns3::AcousticModemEnergyModel::DoDispose(), ns3::RvBatteryModel::DoDispose(), ns3::AlohaNoackNetDevice::DoDispose(), ns3::HalfDuplexIdealPhy::DoDispose(), ns3::Object::DoDispose(), ns3::Node::DoDispose(), ns3::Ipv4L3Protocol::DoDispose(), ns3::ArpCache::DoDispose(), ns3::RegularWifiMac::DoDispose(), ns3::WifiRadioEnergyModel::DoDispose(), ns3::Ipv4GlobalRouting::DoDispose(), ns3::EpcTestRrc::DoDispose(), ns3::Ipv4StaticRouting::DoDispose(), ns3::Icmpv6L4Protocol::DoDispose(), ns3::LteEnbRrc::DoDispose(), ns3::MacLow::DoDispose(), ns3::GlobalRouter::DoDispose(), ns3::Socket::DoDispose(), ns3::Ipv4L3Protocol::DoFragmentation(), StaticInformation::DoGather(), ns3::DeviceEnergyModel::DoGetCurrentA(), ns3::SimpleDeviceEnergyModel::DoGetCurrentA(), ns3::AcousticModemEnergyModel::DoGetCurrentA(), ns3::WifiRadioEnergyModel::DoGetCurrentA(), ns3::WallClockSynchronizer::DoGetCurrentRealtime(), ns3::AarfWifiManager::DoGetDataMode(), ns3::ConstantRateWifiManager::DoGetDataMode(), ns3::AarfcdWifiManager::DoGetDataMode(), ns3::CaraWifiManager::DoGetDataMode(), ns3::AmrrWifiManager::DoGetDataMode(), ns3::ArfWifiManager::DoGetDataMode(), ns3::WallClockSynchronizer::DoGetDrift(), ns3::BuildingsMobilityModel::DoGetPosition(), ns3::AarfWifiManager::DoGetRtsMode(), ns3::ConstantRateWifiManager::DoGetRtsMode(), ns3::AarfcdWifiManager::DoGetRtsMode(), ns3::CaraWifiManager::DoGetRtsMode(), ns3::AmrrWifiManager::DoGetRtsMode(), ns3::ArfWifiManager::DoGetRtsMode(), ns3::BuildingsMobilityModel::DoGetVelocity(), ns3::DcfManager::DoGrantAccess(), ns3::LteSimpleNetDevice::DoInitialize(), ns3::LteEnbPhy::DoInitialize(), ns3::LteUePhy::DoInitialize(), ns3::Ipv4ListRouting::DoInitialize(), ns3::LteUeRrc::DoInitialize(), ns3::UeManager::DoInitialize(), ns3::LteUeNetDevice::DoInitialize(), ns3::BasicEnergySource::DoInitialize(), ns3::LteSimpleHelper::DoInitialize(), ns3::Application::DoInitialize(), ns3::ApWifiMac::DoInitialize(), ns3::DcaTxop::DoInitialize(), ns3::LteRlcSm::DoInitialize(), ns3::LiIonEnergySource::DoInitialize(), ns3::EdcaTxopN::DoInitialize(), ns3::RvBatteryModel::DoInitialize(), ns3::Object::DoInitialize(), ns3::Node::DoInitialize(), ns3::RegularWifiMac::DoInitialize(), ns3::LteHelper::DoInitialize(), ns3::AarfcdWifiManager::DoNeedRts(), ns3::CaraWifiManager::DoNeedRts(), ns3::LteRlcTm::DoNotifyTxOpportunity(), ns3::LteRlcUm::DoNotifyTxOpportunity(), ns3::LteRlcAm::DoNotifyTxOpportunity(), ns3::FdNetDeviceFdReader::DoRead(), ns3::WallClockSynchronizer::DoRealtime(), ns3::LteTestPdcp::DoReceivePdcpPdu(), ns3::LteTestRrc::DoReceivePdcpSdu(), ns3::AarfWifiManager::DoReportDataFailed(), ns3::AarfcdWifiManager::DoReportDataFailed(), ns3::ArfWifiManager::DoReportDataFailed(), ns3::DcfManager::DoRestartAccessTimeoutIfNeeded(), ns3::LenaMimoTestCase::DoRun(), ns3::LteSpectrumModelTestCase::DoRun(), ns3::ItuR1411LosPropagationLossModelTestCase::DoRun(), ns3::ItuR1411NlosOverRooftopPropagationLossModelTestCase::DoRun(), ns3::Kun2600MhzPropagationLossModelTestCase::DoRun(), ns3::OkumuraHataPropagationLossModelTestCase::DoRun(), ns3::LenaRrFfMacSchedulerTestCase::DoRun(), ns3::LteRrcConnectionEstablishmentTestCase::DoRun(), ns3::BuildingsPathlossTestCase::DoRun(), ns3::ParabolicAntennaModelTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase1::DoRun(), ns3::CosineAntennaModelTestCase::DoRun(), ns3::BuildingsShadowingTestCase::DoRun(), LenaFdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LenaPssFfMacSchedulerTestCase1::DoRun(), LenaTdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), LenaTtaFfMacSchedulerTestCase::DoRun(), ns3::LteX2HandoverTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase2::DoRun(), ns3::RandomRoomPositionAllocatorTestCase::DoRun(), ns3::SpectrumIdealPhyTestCase::DoRun(), ns3::LteEpcE2eDataTestCase::DoRun(), ns3::BuildingsHelperOneTestCase::DoRun(), ns3::SameRoomPositionAllocatorTestCase::DoRun(), ns3::TestSuite::DoRun(), ns3::LteTestUePhy::DoSendMacPdu(), ns3::LteUePhy::DoSendMacPdu(), ns3::LteEnbPhy::DoSendMacPdu(), ns3::WallClockSynchronizer::DoSetCondition(), ns3::WallClockSynchronizer::DoSetOrigin(), ns3::BuildingsMobilityModel::DoSetPosition(), ns3::TestCase::DoSetup(), ns3::WallClockSynchronizer::DoSignal(), ns3::LteUeMac::DoSubframeIndication(), ns3::WallClockSynchronizer::DoSynchronize(), ns3::TestCase::DoTeardown(), ns3::LteRlcTm::DoTransmitPdcpPdu(), ns3::LteRlcUm::DoTransmitPdcpPdu(), ns3::LteRlcAm::DoTransmitPdcpPdu(), ns3::LteTestMac::DoTransmitPdu(), ns3::aodv::RequestQueue::DropPacketWithDst(), ns3::dsdv::PacketQueue::DropPacketWithDst(), ns3::DropTailQueue::DropTailQueue(), ns3::Ipv4Header::DscpTypeToString(), ns3::DsrHelper::DsrHelper(), ns3::DsrMainHelper::DsrMainHelper(), ns3::dsr::DsrNetworkQueue::DsrNetworkQueue(), ns3::TcpNewReno::DupAck(), ns3::TcpTahoe::DupAck(), ns3::TcpWestwood::DupAck(), ns3::Ipv4Header::EcnTypeToString(), ns3::EmpiricalRandomVariable::EmpiricalRandomVariable(), ns3::EmpiricalVariable::EmpiricalVariable(), ns3::EmpiricalVariableImpl::EmpiricalVariableImpl(), ns3::PbbTlvBlock::Empty(), ns3::CandidateQueue::Empty(), ns3::PbbAddressTlvBlock::Empty(), ns3::EmuNetDevice::EmuNetDevice(), ns3::ErrorModel::Enable(), ns3::SpectrumAnalyzerHelper::EnableAsciiAll(), ns3::Ipv4Header::EnableChecksum(), ns3::EthernetTrailer::EnableFcs(), ns3::InternetStackHelper::EnablePcapIpv4Internal(), ns3::InternetStackHelper::EnablePcapIpv6Internal(), ns3::SystemWallClockMs::End(), ns3::ObjectPtrContainerValue::End(), ns3::PbbTlvBlock::End(), ns3::DeviceEnergyModelContainer::End(), ns3::Config::MatchContainer::End(), ns3::PbbAddressTlvBlock::End(), ns3::LteEnbPhy::EndFrame(), ns3::SpectrumInterference::EndRx(), ns3::LteInterference::EndRx(), ns3::LteEnbPhy::EndSubFrame(), ns3::UanPhyGen::EnergyDepletionHandler(), ns3::StaWifiMac::Enqueue(), ns3::Queue::Enqueue(), ns3::AdhocWifiMac::Enqueue(), ns3::MeshWifiInterfaceMac::Enqueue(), ns3::ApWifiMac::Enqueue(), ns3::dsr::DsrNetworkQueue::Enqueue(), ns3::dsdv::PacketQueue::Enqueue(), ns3::ArpCache::Entry::Entry(), ns3::PcapFileWrapper::Eof(), ns3::PcapFile::Eof(), ns3::EpcEnbApplication::EpcEnbApplication(), ns3::EpcHelper::EpcHelper(), ns3::EpcMme::EpcMme(), ns3::EpcSgwPgwApplication::EpcSgwPgwApplication(), ns3::EpcUeNas::EpcUeNas(), ns3::EpcX2::EpcX2(), ns3::PbbTlvBlock::Erase(), ns3::PbbAddressTlvBlock::Erase(), ns3::PbbPacket::Erase(), ns3::ErlangRandomVariable::ErlangRandomVariable(), ns3::ErlangVariable::ErlangVariable(), ns3::ErlangVariableImpl::ErlangVariableImpl(), ns3::TcpWestwood::EstimateBW(), ns3::TcpSocketBase::EstimateRtt(), ns3::EthernetHeader::EthernetHeader(), ns3::EthernetTrailer::EthernetTrailer(), ns3::Synchronizer::EventEnd(), ns3::Synchronizer::EventStart(), ns3::BlockAckManager::ExistsAgreement(), ns3::BlockAckManager::ExistsAgreementInState(), ns3::LteRlcAm::ExpireReorderingTimer(), ns3::ExponentialRandomVariable::ExponentialRandomVariable(), ns3::ExponentialVariable::ExponentialVariable(), ns3::ExponentialVariableImpl::ExponentialVariableImpl(), ns3::TcpRxBuffer::Extract(), ns3::NixVector::ExtractNeighborIndex(), ns3::PcapFileWrapper::Fail(), ns3::PcapFile::Fail(), ns3::FdNetDevice::FdNetDevice(), ns3::FfMacScheduler::FfMacScheduler(), ns3::TapBridge::Filter(), ns3::TcpWestwood::Filtering(), ns3::CandidateQueue::Find(), ns3::MultiModelSpectrumChannel::FindAndEventuallyAddTxSpectrumModel(), ns3::Icmpv6L4Protocol::FindCache(), ns3::EnergySource::FindDeviceEnergyModels(), ns3::Packet::FindFirstMatchingByteTag(), ns3::Names::FindInternal(), ns3::Names::FindName(), ns3::Names::FindPath(), ns3::dsr::RouteCache::FindSameRoute(), ns3::aodv::RoutingProtocol::FindSocketWithInterfaceAddress(), ns3::dsr::RreqTable::FindSourceEntry(), ns3::ArpCache::Flush(), ns3::Icmpv6L4Protocol::ForgeEchoRequest(), ns3::Icmpv6L4Protocol::ForgeNA(), ns3::Icmpv6L4Protocol::ForgeNS(), ns3::Icmpv6L4Protocol::ForgeRS(), ns3::TcpWestwood::Fork(), ns3::Icmpv6L4Protocol::Forward(), ns3::dsr::DsrRouting::ForwardErrPacket(), ns3::aodv::RoutingProtocol::Forwarding(), ns3::dsr::DsrRouting::ForwardPacket(), ns3::FdNetDevice::ForwardUp(), ns3::Ipv6RawSocketImpl::ForwardUp(), ns3::EmuNetDevice::ForwardUp(), ns3::Ipv4L3Protocol::Fragments::Fragments(), ns3::PbbTlvBlock::Front(), ns3::PbbAddressTlvBlock::Front(), ns3::RttMeanDeviation::Gain(), ns3::GammaRandomVariable::GammaRandomVariable(), ns3::GammaVariable::GammaVariable(), ns3::GammaVariableImpl::GammaVariableImpl(), ns3::LteTestUePhy::GenerateCtrlCqiReport(), ns3::LteUePhy::GenerateCtrlCqiReport(), ns3::LteEnbPhy::GenerateCtrlCqiReport(), ns3::LteTestUePhy::GenerateDataCqiReport(), ns3::LteEnbPhy::GenerateDataCqiReport(), ns3::Ipv4Address::Get(), ns3::ObjectPtrContainerValue::Get(), ns3::ObjectPtrContainerAccessor::Get(), ns3::DeviceEnergyModelContainer::Get(), ns3::Config::MatchContainer::Get(), ns3::Ipv4Mask::Get(), ns3::PacketSink::GetAcceptedSockets(), ns3::DcfManager::GetAccessGrantStart(), ns3::LteHarqPhy::GetAccumulatedMiDl(), ns3::LteHarqPhy::GetAccumulatedMiUl(), ns3::LteNetDevice::GetAddress(), ns3::SimpleNetDevice::GetAddress(), ns3::NonCommunicatingNetDevice::GetAddress(), ns3::Ipv4Interface::GetAddress(), ns3::AlohaNoackNetDevice::GetAddress(), ns3::Ipv4L3Protocol::GetAddress(), ns3::Ipv6Interface::GetAddress(), ns3::Ipv6L3Protocol::GetAddress(), ns3::Icmpv6OptionLinkLayerAddress::GetAddress(), ns3::Ipv6Interface::GetAddressMatchingDestination(), ns3::GlobalRoutingLSA::GetAdvertisingRouter(), ns3::Object::GetAggregateIterator(), ns3::Ipv4RawSocketImpl::GetAllowBroadcast(), ns3::PacketSocket::GetAllowBroadcast(), ns3::RvBatteryModel::GetAlpha(), ns3::GammaRandomVariable::GetAlpha(), ns3::ZipfRandomVariable::GetAlpha(), ns3::ZetaRandomVariable::GetAlpha(), ns3::RadiotapHeader::GetAntennaNoisePower(), ns3::RadiotapHeader::GetAntennaSignalPower(), ns3::Node::GetApplication(), ns3::Ipv4Interface::GetArpCache(), ns3::GlobalRoutingLSA::GetAttachedRouter(), ns3::ObjectBase::GetAttribute(), ns3::TypeId::GetAttribute(), ns3::ObjectBase::GetAttributeFailSafe(), ns3::TypeId::GetAttributeFullName(), ns3::TypeId::GetAttributeN(), ns3::RvBatteryModel::GetBatteryLevel(), ns3::ApWifiMac::GetBeaconInterval(), ns3::RvBatteryModel::GetBeta(), ns3::GammaRandomVariable::GetBeta(), ns3::DataRate::GetBitRate(), ns3::ExponentialRandomVariable::GetBound(), ns3::ParetoRandomVariable::GetBound(), ns3::WeibullRandomVariable::GetBound(), ns3::NormalRandomVariable::GetBound(), ns3::Building::GetBoundaries(), ns3::Socket::GetBoundNetDevice(), ns3::LteNetDevice::GetBroadcast(), ns3::SimpleNetDevice::GetBroadcast(), ns3::NonCommunicatingNetDevice::GetBroadcast(), ns3::AlohaNoackNetDevice::GetBroadcast(), ns3::BuildingsMobilityModel::GetBuilding(), ns3::BurstErrorModel::GetBurstRate(), ns3::Ipv6Address::GetBytes(), ns3::Ipv6Prefix::GetBytes(), ns3::Packet::GetByteTagIterator(), ns3::LteSpectrumValueHelper::GetCarrierFrequency(), ns3::LteUeRrc::GetCellId(), ns3::LteNetDevice::GetChannel(), ns3::ChannelList::GetChannel(), ns3::SimpleNetDevice::GetChannel(), ns3::NonCommunicatingNetDevice::GetChannel(), ns3::AlohaNoackNetDevice::GetChannel(), ns3::LteSpectrumValueHelper::GetChannelBandwidth(), ns3::RadiotapHeader::GetChannelFlags(), ns3::RadiotapHeader::GetChannelFrequency(), ns3::GlobalValue::GetChecker(), ns3::Icmpv6Header::GetChecksum(), ns3::SPFVertex::GetChild(), ns3::Icmpv6Header::GetCode(), ns3::SpectrumConverter::GetCoefficient(), ns3::SystemCondition::GetCondition(), ns3::SequentialRandomVariable::GetConsecutive(), ns3::ConstantRandomVariable::GetConstant(), ns3::TypeId::GetConstructor(), ns3::LtePhy::GetControlMessages(), ns3::LteAmc::GetCqiFromSpectralEfficiency(), ns3::RadvdInterface::GetCurHopLimit(), ns3::Icmpv6RA::GetCurHopLimit(), ns3::DeviceEnergyModel::GetCurrentA(), ns3::Synchronizer::GetCurrentRealtime(), ns3::AcousticModemEnergyModel::GetCurrentState(), ns3::WifiRadioEnergyModel::GetCurrentState(), ns3::RvBatteryModel::GetCutoffVoltage(), ns3::UeManager::GetDataRadioBearerInfo(), ns3::UdpEchoClient::GetDataSize(), ns3::RadvdInterface::GetDefaultLifeTime(), ns3::RadvdInterface::GetDefaultPreference(), ns3::Ipv4StaticRouting::GetDefaultRoute(), ns3::Timer::GetDelay(), ns3::Timer::GetDelayLeft(), ns3::Simulator::GetDelayLeft(), ns3::Ipv4RoutingTableEntry::GetDest(), ns3::Ipv4Route::GetDestination(), ns3::EthernetHeader::GetDestination(), ns3::Ipv4Header::GetDestination(), ns3::Icmpv6Redirection::GetDestination(), ns3::Ipv4RoutingTableEntry::GetDestNetwork(), ns3::Ipv4RoutingTableEntry::GetDestNetworkMask(), ns3::SimpleChannel::GetDevice(), ns3::SingleModelSpectrumChannel::GetDevice(), ns3::Ipv4Interface::GetDevice(), ns3::ArpCache::GetDevice(), ns3::LtePhy::GetDevice(), ns3::Node::GetDevice(), ns3::HalfDuplexIdealPhy::GetDevice(), ns3::LteSpectrumPhy::GetDevice(), ns3::Buffer::Iterator::GetDistanceFrom(), ns3::SPFVertex::GetDistanceFromRoot(), ns3::LteUeRrc::GetDlBandwidth(), ns3::RadioBearerStatsCalculator::GetDlCellId(), ns3::RadioBearerStatsCalculator::GetDlDelay(), ns3::RadioBearerStatsCalculator::GetDlDelayStats(), ns3::RadioBearerStatsCalculator::GetDlPduSizeStats(), ns3::RadioBearerStatsCalculator::GetDlRxData(), ns3::RadioBearerStatsCalculator::GetDlRxPackets(), ns3::RadioBearerStatsCalculator::GetDlTxData(), ns3::RadioBearerStatsCalculator::GetDlTxPackets(), ns3::LteSpectrumValueHelper::GetDownlinkCarrierFrequency(), ns3::LteEnbPhy::GetDownlinkSubChannels(), ns3::Icmpv4L4Protocol::GetDownTarget(), ns3::Icmpv6L4Protocol::GetDownTarget(), ns3::Synchronizer::GetDrift(), ns3::Ipv4Header::GetDscp(), ns3::Ipv4Header::GetEcn(), ns3::DcfManager::GetEifsNoDifs(), ns3::SystemWallClockMs::GetElapsedReal(), ns3::SystemWallClockMs::GetElapsedSystem(), ns3::SystemWallClockMs::GetElapsedUser(), ns3::FdNetDevice::GetEncapsulationMode(), ns3::ByteTagIterator::Item::GetEnd(), ns3::BasicEnergySource::GetEnergyFraction(), ns3::RvBatteryModel::GetEnergyFraction(), ns3::LiIonEnergySource::GetEnergyFraction(), ns3::BasicEnergySource::GetEnergyUpdateInterval(), ns3::LiIonEnergySource::GetEnergyUpdateInterval(), ns3::EpcX2::GetEpcX2SapProvider(), ns3::LteEnbRrc::GetEpcX2SapUser(), ns3::UeManager::GetErabList(), ns3::Ipv4RawSocketImpl::GetErrno(), ns3::PacketSocket::GetErrno(), ns3::TestCase::GetErrorStatus(), ns3::dsr::RouteCache::GetExpireTime(), ns3::ErlangRandomVariable::GetExponentialValue(), ns3::EthernetTrailer::GetFcs(), ns3::PcapHelper::GetFilenameFromDevice(), ns3::AsciiTraceHelper::GetFilenameFromDevice(), ns3::PcapHelper::GetFilenameFromInterfacePair(), ns3::AsciiTraceHelper::GetFilenameFromInterfacePair(), ns3::Icmpv6RA::GetFlagH(), ns3::Icmpv6RA::GetFlagM(), ns3::Icmpv6NA::GetFlagO(), ns3::Icmpv6RA::GetFlagO(), ns3::Icmpv6NA::GetFlagR(), ns3::Icmpv6NA::GetFlagS(), ns3::Icmpv6RA::GetFlags(), ns3::Icmpv6OptionPrefixInformation::GetFlags(), ns3::BuildingsMobilityModel::GetFloorNumber(), ns3::Ipv4Header::GetFragmentOffset(), ns3::RadiotapHeader::GetFrameFlags(), ns3::MeshWifiInterfaceMac::GetFrequencyChannel(), ns3::IsotropicAntennaModel::GetGainDb(), ns3::CosineAntennaModel::GetGainDb(), ns3::ParabolicAntennaModel::GetGainDb(), ns3::Ipv4Route::GetGateway(), ns3::Ipv4RoutingTableEntry::GetGateway(), ns3::Ipv4MulticastRoute::GetGroup(), ns3::Ipv4MulticastRoutingTableEntry::GetGroup(), ns3::TypeId::GetGroupName(), ns3::LteHarqPhy::GetHarqProcessInfoDl(), ns3::LteHarqPhy::GetHarqProcessInfoUl(), ns3::EthernetHeader::GetHeaderSize(), ns3::RadvdInterface::GetHomeAgentLifeTime(), ns3::RadvdInterface::GetHomeAgentPreference(), ns3::PbbMessage::GetHopCount(), ns3::PbbMessage::GetHopLimit(), ns3::Ipv4L3Protocol::GetIcmp(), ns3::Channel::GetId(), ns3::Node::GetId(), ns3::Building::GetId(), ns3::Icmpv6Echo::GetId(), ns3::Ipv4Header::GetIdentification(), ns3::dsr::DsrOptions::GetIDfromIP(), ns3::AcousticModemEnergyModel::GetIdlePowerW(), ns3::LteNetDevice::GetIfIndex(), ns3::SimpleNetDevice::GetIfIndex(), ns3::NonCommunicatingNetDevice::GetIfIndex(), ns3::AlohaNoackNetDevice::GetIfIndex(), ns3::SequentialRandomVariable::GetIncrement(), ns3::PbbAddressTlv::GetIndexStart(), ns3::PbbAddressTlv::GetIndexStop(), ns3::TcpWestwood::GetInitialCwnd(), ns3::BasicEnergySource::GetInitialEnergy(), ns3::RvBatteryModel::GetInitialEnergy(), ns3::LiIonEnergySource::GetInitialEnergy(), ns3::GlobalRouter::GetInjectedRoute(), ns3::Ipv4MulticastRoutingTableEntry::GetInputInterface(), ns3::CtrlBAckRequestHeader::GetInstanceTypeId(), ns3::ArpHeader::GetInstanceTypeId(), ns3::Icmpv4Header::GetInstanceTypeId(), ns3::Ipv4PacketInfoTag::GetInstanceTypeId(), ns3::Icmpv4Echo::GetInstanceTypeId(), ns3::Object::GetInstanceTypeId(), ns3::Icmpv4DestinationUnreachable::GetInstanceTypeId(), ns3::Icmpv6Header::GetInstanceTypeId(), ns3::Icmpv4TimeExceeded::GetInstanceTypeId(), ns3::Ipv4Header::GetInstanceTypeId(), ns3::Icmpv6OptionHeader::GetInstanceTypeId(), ns3::Icmpv6NS::GetInstanceTypeId(), ns3::Icmpv6NA::GetInstanceTypeId(), ns3::Icmpv6RA::GetInstanceTypeId(), ns3::Icmpv6RS::GetInstanceTypeId(), ns3::Icmpv6Redirection::GetInstanceTypeId(), ns3::Icmpv6Echo::GetInstanceTypeId(), ns3::Icmpv6DestinationUnreachable::GetInstanceTypeId(), ns3::Icmpv6TooBig::GetInstanceTypeId(), ns3::Icmpv6TimeExceeded::GetInstanceTypeId(), ns3::Icmpv6ParameterError::GetInstanceTypeId(), ns3::Icmpv6OptionMtu::GetInstanceTypeId(), ns3::Icmpv6OptionPrefixInformation::GetInstanceTypeId(), ns3::Icmpv6OptionLinkLayerAddress::GetInstanceTypeId(), ns3::Icmpv6OptionRedirected::GetInstanceTypeId(), ns3::RandomVariable::GetInteger(), ns3::UniformVariable::GetInteger(), ns3::UniformRandomVariable::GetInteger(), ns3::ConstantRandomVariable::GetInteger(), ns3::SequentialRandomVariable::GetInteger(), ns3::ExponentialRandomVariable::GetInteger(), ns3::ParetoRandomVariable::GetInteger(), ns3::WeibullRandomVariable::GetInteger(), ns3::NormalRandomVariable::GetInteger(), ns3::IntEmpiricalVariableImpl::GetInteger(), ns3::LogNormalRandomVariable::GetInteger(), ns3::GammaRandomVariable::GetInteger(), ns3::ErlangRandomVariable::GetInteger(), ns3::TriangularRandomVariable::GetInteger(), ns3::ZipfRandomVariable::GetInteger(), ns3::ZetaRandomVariable::GetInteger(), ns3::DeterministicRandomVariable::GetInteger(), ns3::EmpiricalRandomVariable::GetInteger(), ns3::RadvdInterface::GetInterface(), ns3::ArpCache::GetInterface(), ns3::Ipv4RoutingTableEntry::GetInterface(), ns3::Ipv6L3Protocol::GetInterface(), ns3::Ipv4L3Protocol::GetInterfaceForAddress(), ns3::Ipv6L3Protocol::GetInterfaceForAddress(), ns3::Ipv4L3Protocol::GetInterfaceForDevice(), ns3::Ipv6L3Protocol::GetInterfaceForDevice(), ns3::Ipv4L3Protocol::GetInterfaceForPrefix(), ns3::Ipv6L3Protocol::GetInterfaceForPrefix(), ns3::Ipv4Mask::GetInverse(), ns3::dsr::DsrRouting::GetIPfromMAC(), ns3::InetSocketAddress::GetIpv4(), ns3::ArpCache::Entry::GetIpv4Address(), ns3::Ipv6Address::GetIpv4MappedAddress(), ns3::Inet6SocketAddress::GetIpv6(), ns3::Icmpv6NS::GetIpv6Target(), ns3::Icmpv6NA::GetIpv6Target(), ns3::ErlangRandomVariable::GetK(), ns3::ErlangRandomVariable::GetLambda(), ns3::Address::GetLength(), ns3::Icmpv6OptionHeader::GetLength(), ns3::EthernetHeader::GetLengthType(), ns3::RvBatteryModel::GetLifetime(), ns3::Icmpv6RA::GetLifeTime(), ns3::GlobalRoutingLinkRecord::GetLinkData(), ns3::GlobalRoutingLinkRecord::GetLinkId(), ns3::RadvdInterface::GetLinkMtu(), ns3::GlobalRoutingLSA::GetLinkRecord(), ns3::GlobalRoutingLSA::GetLinkStateId(), ns3::GlobalRoutingLinkRecord::GetLinkType(), ns3::ListErrorModel::GetList(), ns3::ReceiveListErrorModel::GetList(), ns3::PacketSink::GetListeningSocket(), ns3::aodv::RoutingTable::GetListOfDestinationWithNextHop(), ns3::ItuR1238PropagationLossModel::GetLoss(), ns3::OhBuildingsPropagationLossModel::GetLoss(), ns3::ItuR1411LosPropagationLossModel::GetLoss(), ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetLoss(), ns3::UdpServer::GetLost(), ns3::SPFVertex::GetLSA(), ns3::GlobalRouteManagerLSDB::GetLSA(), ns3::GlobalRouter::GetLSA(), ns3::GlobalRouteManagerLSDB::GetLSAByLinkData(), ns3::GlobalRoutingLSA::GetLSType(), ns3::LteEnbRrc::GetLteEnbCmacSapUser(), ns3::LteEnbPhy::GetLteEnbCphySapProvider(), ns3::LteEnbRrc::GetLteEnbCphySapUser(), ns3::LteEnbRrc::GetLteEnbRrcSapProvider(), ns3::LteRlc::GetLteMacSapUser(), ns3::LtePdcp::GetLtePdcpSapProvider(), ns3::LteRlc::GetLteRlcSapProvider(), ns3::LtePdcp::GetLteRlcSapUser(), ns3::LteUeRrc::GetLteUeCmacSapUser(), ns3::LteUePhy::GetLteUeCphySapProvider(), ns3::LteUeRrc::GetLteUeCphySapUser(), ns3::LteUePhy::GetLteUePhySapProvider(), ns3::LteUeRrc::GetLteUeRrcSapProvider(), ns3::LteEnbNetDevice::GetMac(), ns3::ArpCache::Entry::GetMacAddress(), ns3::Config::MatchContainer::GetMatchedPath(), ns3::UniformRandomVariable::GetMax(), ns3::SequentialRandomVariable::GetMax(), ns3::TriangularRandomVariable::GetMax(), ns3::UdpTraceClient::GetMaxPacketSize(), ns3::RadvdInterface::GetMaxRtrAdvInterval(), ns3::LteAmc::GetMcsFromCqi(), ns3::ExponentialRandomVariable::GetMean(), ns3::ParetoRandomVariable::GetMean(), ns3::NormalRandomVariable::GetMean(), ns3::TriangularRandomVariable::GetMean(), ns3::Ipv4Interface::GetMetric(), ns3::GlobalRoutingLinkRecord::GetMetric(), ns3::Ipv4L3Protocol::GetMetric(), ns3::Ipv4StaticRouting::GetMetric(), ns3::Ipv6L3Protocol::GetMetric(), ns3::UniformRandomVariable::GetMin(), ns3::SequentialRandomVariable::GetMin(), ns3::TriangularRandomVariable::GetMin(), ns3::RadvdInterface::GetMinDelayBetweenRAs(), ns3::RadvdInterface::GetMinRtrAdvInterval(), ns3::HalfDuplexIdealPhy::GetMobility(), ns3::LteSpectrumPhy::GetMobility(), ns3::DropTailQueue::GetMode(), ns3::LteNetDevice::GetMtu(), ns3::SimpleNetDevice::GetMtu(), ns3::NonCommunicatingNetDevice::GetMtu(), ns3::AlohaNoackNetDevice::GetMtu(), ns3::Ipv4L3Protocol::GetMtu(), ns3::Ipv6L3Protocol::GetMtu(), ns3::Icmpv6TooBig::GetMtu(), ns3::Icmpv6OptionMtu::GetMtu(), ns3::LogNormalRandomVariable::GetMu(), ns3::LteNetDevice::GetMulticast(), ns3::SimpleNetDevice::GetMulticast(), ns3::MeshPointDevice::GetMulticast(), ns3::BridgeNetDevice::GetMulticast(), ns3::Mac48Address::GetMulticast(), ns3::NonCommunicatingNetDevice::GetMulticast(), ns3::EmuNetDevice::GetMulticast(), ns3::AlohaNoackNetDevice::GetMulticast(), ns3::PointToPointNetDevice::GetMulticast(), ns3::TapBridge::GetMulticast(), ns3::WimaxNetDevice::GetMulticast(), ns3::CsmaNetDevice::GetMulticast(), ns3::Ipv6StaticRouting::GetMulticastRoute(), ns3::Ipv4StaticRouting::GetMulticastRoute(), ns3::ObjectPtrContainerValue::GetN(), ns3::DeviceEnergyModelContainer::GetN(), ns3::Config::MatchContainer::GetN(), ns3::ZipfRandomVariable::GetN(), ns3::Ipv4Interface::GetNAddresses(), ns3::Ipv4L3Protocol::GetNAddresses(), ns3::Ipv6L3Protocol::GetNAddresses(), ns3::TypeId::GetName(), ns3::TestCase::GetName(), ns3::Node::GetNApplications(), ns3::GlobalRoutingLSA::GetNAttachedRouters(), ns3::BlockAckManager::GetNBufferedPackets(), ns3::Queue::GetNBytes(), ns3::SPFVertex::GetNChildren(), ns3::SimpleChannel::GetNDevices(), ns3::SingleModelSpectrumChannel::GetNDevices(), ns3::Node::GetNDevices(), ns3::Ipv4L3Protocol::GetNetDevice(), ns3::Ipv6L3Protocol::GetNetDevice(), ns3::RadvdPrefix::GetNetwork(), ns3::GlobalRoutingLSA::GetNetworkLSANetworkMask(), ns3::LteEnbRrc::GetNewSrsConfigurationIndex(), ns3::RandomRoomPositionAllocator::GetNext(), ns3::SameRoomPositionAllocator::GetNext(), ns3::BlockAckManager::GetNextPacket(), ns3::BlockAckManager::GetNextPacketSize(), ns3::GlobalRouter::GetNInjectedRoutes(), ns3::Ipv4L3Protocol::GetNInterfaces(), ns3::GlobalRoutingLSA::GetNLinkRecords(), ns3::Ipv4StaticRouting::GetNMulticastRoutes(), ns3::Ipv4RawSocketImpl::GetNode(), ns3::SimpleDeviceEnergyModel::GetNode(), ns3::NodeList::GetNode(), ns3::LteNetDevice::GetNode(), ns3::SimpleNetDevice::GetNode(), ns3::PacketSocket::GetNode(), ns3::Application::GetNode(), ns3::NonCommunicatingNetDevice::GetNode(), ns3::EnergySource::GetNode(), ns3::AlohaNoackNetDevice::GetNode(), ns3::GlobalRoutingLSA::GetNode(), ns3::dsr::DsrOptions::GetNodeWithAddress(), ns3::dsr::DsrRouting::GetNodeWithAddress(), ns3::LteUePhy::GetNoiseFigure(), ns3::LteEnbPhy::GetNoiseFigure(), ns3::GammaRandomVariable::GetNormalValue(), ns3::Ipv4MulticastRoutingTableEntry::GetNOutputInterfaces(), ns3::PacketBurst::GetNPackets(), ns3::Queue::GetNPackets(), ns3::BlockAckManager::GetNRetryNeededPackets(), ns3::SPFVertex::GetNRootExitDirections(), ns3::Ipv4GlobalRouting::GetNRoutes(), ns3::Ipv4StaticRouting::GetNRoutes(), ns3::Ipv4ListRouting::GetNRoutingProtocols(), ns3::Ipv6ListRouting::GetNRoutingProtocols(), ns3::GlobalRouter::GetNumLSAs(), ns3::RvBatteryModel::GetNumOfTerms(), ns3::RvBatteryModel::GetOpenCircuitVoltage(), ns3::Synchronizer::GetOrigin(), ns3::Ipv4MulticastRoute::GetOrigin(), ns3::Ipv4MulticastRoutingTableEntry::GetOrigin(), ns3::PbbMessage::GetOriginatorAddress(), ns3::Ipv4Route::GetOutputDevice(), ns3::Ipv4MulticastRoutingTableEntry::GetOutputInterface(), ns3::Ipv4MulticastRoutingTableEntry::GetOutputInterfaces(), ns3::Ipv4MulticastRoute::GetOutputTtl(), ns3::Ipv4MulticastRoute::GetOutputTtlMap(), ns3::Ipv4L3Protocol::Fragments::GetPacket(), ns3::Icmpv6DestinationUnreachable::GetPacket(), ns3::Icmpv6TooBig::GetPacket(), ns3::Icmpv6TimeExceeded::GetPacket(), ns3::Icmpv6ParameterError::GetPacket(), ns3::Icmpv6OptionRedirected::GetPacket(), ns3::PacketBurst::GetPackets(), ns3::Packet::GetPacketTagIterator(), ns3::EthernetHeader::GetPacketType(), ns3::UdpServer::GetPacketWindowSize(), ns3::TypeId::GetParent(), ns3::Ipv4MulticastRoute::GetParent(), ns3::SPFVertex::GetParent(), ns3::Ipv4L3Protocol::Fragments::GetPartialPacket(), ns3::Config::MatchContainer::GetPath(), ns3::LteGlobalPathlossDatabase::GetPathloss(), ns3::WifiPhy::GetPayloadDurationMicroSeconds(), ns3::Ipv4Header::GetPayloadSize(), ns3::LteMiErrorModel::GetPcfichPdcchError(), ns3::LteEnbNetDevice::GetPhy(), ns3::NonCommunicatingNetDevice::GetPhy(), ns3::AlohaNoackNetDevice::GetPhy(), ns3::WifiRadioEnergyModel::GetPhyListener(), ns3::InetSocketAddress::GetPort(), ns3::Inet6SocketAddress::GetPort(), ns3::EthernetHeader::GetPreambleSfd(), ns3::aodv::RoutingTableEntry::GetPrecursors(), ns3::RadvdPrefix::GetPreferredLifeTime(), ns3::Icmpv6OptionPrefixInformation::GetPreferredTime(), ns3::Icmpv6OptionPrefixInformation::GetPrefix(), ns3::RadvdInterface::GetPrefixes(), ns3::RadvdPrefix::GetPrefixLength(), ns3::Ipv4Mask::GetPrefixLength(), ns3::Ipv6Prefix::GetPrefixLength(), ns3::Icmpv6OptionPrefixInformation::GetPrefixLength(), ns3::Ipv6L3Protocol::GetProtocol(), ns3::Ipv4L3Protocol::GetProtocol(), ns3::Ipv4Header::GetProtocol(), ns3::Icmpv4L4Protocol::GetProtocolNumber(), ns3::Icmpv6L4Protocol::GetProtocolNumber(), ns3::Icmpv6ParameterError::GetPtr(), ns3::UeManager::GetRadioResourceConfigForHandoverPreparationInfo(), ns3::HalfDuplexIdealPhy::GetRate(), ns3::RadiotapHeader::GetRate(), ns3::RateErrorModel::GetRate(), ns3::RadvdInterface::GetReachableTime(), ns3::Icmpv6RA::GetReachableTime(), ns3::UdpServer::GetReceived(), ns3::TypeId::GetRegistered(), ns3::NixVector::GetRemainingBits(), ns3::BasicEnergySource::GetRemainingEnergy(), ns3::RvBatteryModel::GetRemainingEnergy(), ns3::LiIonEnergySource::GetRemainingEnergy(), ns3::Icmpv6NS::GetReserved(), ns3::Icmpv6NA::GetReserved(), ns3::Icmpv6RS::GetReserved(), ns3::Icmpv6Redirection::GetReserved(), ns3::Icmpv6OptionMtu::GetReserved(), ns3::Icmpv6OptionPrefixInformation::GetReserved(), ns3::Icmpv6RA::GetRetransmissionTime(), ns3::RadvdInterface::GetRetransTimer(), ns3::ArpCache::Entry::GetRetries(), ns3::LteUeRrc::GetRnti(), ns3::BuildingsMobilityModel::GetRoomNumberX(), ns3::BuildingsMobilityModel::GetRoomNumberY(), ns3::SPFVertex::GetRootExitDirection(), ns3::Config::GetRootNamespaceObject(), ns3::Ipv6StaticRouting::GetRoute(), ns3::Ipv4GlobalRouting::GetRoute(), ns3::Ipv4StaticRouting::GetRoute(), ns3::GlobalRouter::GetRouterId(), ns3::Ipv4ListRouting::GetRoutingProtocol(), ns3::Ipv6ListRouting::GetRoutingProtocol(), ns3::Ipv4L3Protocol::GetRoutingProtocol(), ns3::UeManager::GetRrcConnectionReconfigurationForHandover(), ns3::HalfDuplexIdealPhy::GetRxAntenna(), ns3::Ipv4RawSocketImpl::GetRxAvailable(), ns3::TcpSocketBase::GetRxAvailable(), ns3::PacketSocket::GetRxAvailable(), ns3::AcousticModemEnergyModel::GetRxPowerW(), ns3::RvBatteryModel::GetSamplingInterval(), ns3::WeibullRandomVariable::GetScale(), ns3::SeqTsHeader::GetSeq(), ns3::Icmpv6Echo::GetSeq(), ns3::BlockAckManager::GetSeqNumOfNextRetryPacket(), ns3::PbbPacket::GetSequenceNumber(), ns3::PbbMessage::GetSequenceNumber(), ns3::FlowIdTag::GetSerializedSize(), ns3::AmsduSubframeHeader::GetSerializedSize(), ns3::LlcSnapHeader::GetSerializedSize(), ns3::CtrlBAckRequestHeader::GetSerializedSize(), ns3::Icmpv4Header::GetSerializedSize(), ns3::ArpHeader::GetSerializedSize(), ns3::SeqTsHeader::GetSerializedSize(), ns3::RadiotapHeader::GetSerializedSize(), ns3::Ipv4PacketInfoTag::GetSerializedSize(), ns3::Icmpv4Echo::GetSerializedSize(), ns3::EthernetTrailer::GetSerializedSize(), ns3::EthernetHeader::GetSerializedSize(), ns3::CtrlBAckResponseHeader::GetSerializedSize(), ns3::NixVector::GetSerializedSize(), ns3::Icmpv4DestinationUnreachable::GetSerializedSize(), ns3::Icmpv4TimeExceeded::GetSerializedSize(), ns3::PbbTlvBlock::GetSerializedSize(), ns3::Icmpv6Header::GetSerializedSize(), ns3::Address::GetSerializedSize(), ns3::Ipv4Header::GetSerializedSize(), ns3::Icmpv6OptionHeader::GetSerializedSize(), ns3::PbbAddressTlvBlock::GetSerializedSize(), ns3::Icmpv6NS::GetSerializedSize(), ns3::Packet::GetSerializedSize(), ns3::Buffer::GetSerializedSize(), ns3::Icmpv6NA::GetSerializedSize(), ns3::PbbPacket::GetSerializedSize(), ns3::Icmpv6RA::GetSerializedSize(), ns3::Icmpv6RS::GetSerializedSize(), ns3::SocketAddressTag::GetSerializedSize(), ns3::SocketIpTtlTag::GetSerializedSize(), ns3::Icmpv6Redirection::GetSerializedSize(), ns3::SocketSetDontFragmentTag::GetSerializedSize(), ns3::PbbMessage::GetSerializedSize(), ns3::Icmpv6Echo::GetSerializedSize(), ns3::Icmpv6DestinationUnreachable::GetSerializedSize(), ns3::Icmpv6TooBig::GetSerializedSize(), ns3::Icmpv6TimeExceeded::GetSerializedSize(), ns3::Icmpv6ParameterError::GetSerializedSize(), ns3::PbbAddressBlock::GetSerializedSize(), ns3::Icmpv6OptionMtu::GetSerializedSize(), ns3::Icmpv6OptionPrefixInformation::GetSerializedSize(), ns3::PbbTlv::GetSerializedSize(), ns3::Icmpv6OptionLinkLayerAddress::GetSerializedSize(), ns3::Icmpv6OptionRedirected::GetSerializedSize(), ns3::dsdv::RoutingProtocol::GetSettlingTime(), ns3::ParetoRandomVariable::GetShape(), ns3::WeibullRandomVariable::GetShape(), ns3::LogNormalRandomVariable::GetSigma(), ns3::PacketBurst::GetSize(), ns3::dsr::DsrNetworkQueue::GetSize(), ns3::Buffer::Iterator::GetSize(), ns3::AcousticModemEnergyModel::GetSleepPowerW(), ns3::BulkSendApplication::GetSocket(), ns3::OnOffApplication::GetSocket(), ns3::Ipv4RawSocketImpl::GetSocketType(), ns3::PacketSocket::GetSocketType(), ns3::Ipv4RawSocketImpl::GetSockName(), ns3::TcpSocketBase::GetSockName(), ns3::PacketSocket::GetSockName(), ns3::Ipv4Route::GetSource(), ns3::EthernetHeader::GetSource(), ns3::Ipv4Header::GetSource(), ns3::LteAmc::GetSpectralEfficiencyFromCqi(), ns3::LteSpectrumValueHelper::GetSpectrumModel(), ns3::LteEnbRrc::GetSrsPeriodicity(), ns3::TcpWestwood::GetSSThresh(), ns3::ByteTagIterator::Item::GetStart(), ns3::Timer::GetState(), ns3::LteUeRrc::GetState(), ns3::Ipv6StaticRoutingHelper::GetStaticRouting(), ns3::Ipv4StaticRoutingHelper::GetStaticRouting(), ns3::GlobalRoutingLSA::GetStatus(), ns3::RandomVariableStream::GetStream(), ns3::OutputStreamWrapper::GetStream(), ns3::LteUePhy::GetSubChannelsForReception(), ns3::LteUePhy::GetSubChannelsForTransmission(), ns3::Ipv4Address::GetSubnetDirectedBroadcast(), ns3::BasicEnergySource::GetSupplyVoltage(), ns3::RvBatteryModel::GetSupplyVoltage(), ns3::LiIonEnergySource::GetSupplyVoltage(), ns3::PcapFile::GetSwapMode(), ns3::Node::GetSystemId(), ns3::ByteTagIterator::Item::GetTag(), ns3::PacketTagIterator::Item::GetTag(), ns3::Icmpv6Redirection::GetTarget(), ns3::LteUeNetDevice::GetTargetEnb(), ns3::LteMiErrorModel::GetTbDecodificationStats(), ns3::LteAmc::GetTbSizeFromMcs(), ns3::TestSuite::GetTestType(), ns3::Ipv4Header::GetTos(), ns3::Queue::GetTotalDroppedBytes(), ns3::Queue::GetTotalDroppedPackets(), ns3::SimpleDeviceEnergyModel::GetTotalEnergyConsumption(), ns3::AcousticModemEnergyModel::GetTotalEnergyConsumption(), ns3::WifiRadioEnergyModel::GetTotalEnergyConsumption(), ns3::Queue::GetTotalReceivedBytes(), ns3::Queue::GetTotalReceivedPackets(), ns3::PacketSink::GetTotalRx(), ns3::TypeId::GetTraceSource(), ns3::TypeId::GetTraceSourceN(), ns3::EthernetTrailer::GetTrailerSize(), ns3::SeqTsHeader::GetTs(), ns3::RadiotapHeader::GetTsft(), ns3::LtePhy::GetTti(), ns3::Ipv4Header::GetTtl(), ns3::Ipv4RawSocketImpl::GetTxAvailable(), ns3::TcpSocketBase::GetTxAvailable(), ns3::PacketSocket::GetTxAvailable(), ns3::LteEnbPhy::GetTxPower(), ns3::LteUePhy::GetTxPower(), ns3::AcousticModemEnergyModel::GetTxPowerW(), ns3::Icmpv6Header::GetType(), ns3::PbbMessage::GetType(), ns3::PbbTlv::GetType(), ns3::PbbTlv::GetTypeExt(), ns3::ObjectFactory::GetTypeId(), ns3::LteEnbRrc::GetUeManager(), ns3::TypeId::GetUid(), ns3::Packet::GetUid(), ns3::LteUeRrc::GetUlBandwidth(), ns3::RadioBearerStatsCalculator::GetUlCellId(), ns3::RadioBearerStatsCalculator::GetUlDelay(), ns3::RadioBearerStatsCalculator::GetUlDelayStats(), ns3::LteUeRrc::GetUlEarfcn(), ns3::RadioBearerStatsCalculator::GetUlPduSizeStats(), ns3::RadioBearerStatsCalculator::GetUlRxData(), ns3::RadioBearerStatsCalculator::GetUlRxPackets(), ns3::RadioBearerStatsCalculator::GetUlTxData(), ns3::RadioBearerStatsCalculator::GetUlTxPackets(), ns3::EnumChecker::GetUnderlyingTypeInformation(), ns3::RateErrorModel::GetUnit(), ns3::LteSpectrumValueHelper::GetUplinkCarrierFrequency(), ns3::RadvdPrefix::GetValidLifeTime(), ns3::Icmpv6OptionPrefixInformation::GetValidTime(), ns3::RandomVariable::GetValue(), ns3::GlobalValue::GetValue(), ns3::UniformVariable::GetValue(), ns3::UniformVariableImpl::GetValue(), ns3::UniformRandomVariable::GetValue(), ns3::ConstantRandomVariable::GetValue(), ns3::ConstantVariableImpl::GetValue(), ns3::SequentialRandomVariable::GetValue(), ns3::SequentialVariableImpl::GetValue(), ns3::ExponentialRandomVariable::GetValue(), ns3::ExponentialVariableImpl::GetValue(), ns3::GammaVariable::GetValue(), ns3::ErlangVariable::GetValue(), ns3::ParetoRandomVariable::GetValue(), ns3::ParetoVariableImpl::GetValue(), ns3::WeibullVariableImpl::GetValue(), ns3::WeibullRandomVariable::GetValue(), ns3::NormalVariableImpl::GetValue(), ns3::NormalRandomVariable::GetValue(), ns3::EmpiricalVariableImpl::GetValue(), ns3::LogNormalRandomVariable::GetValue(), ns3::DeterministicVariableImpl::GetValue(), ns3::LogNormalVariableImpl::GetValue(), ns3::GammaRandomVariable::GetValue(), ns3::GammaVariableImpl::GetValue(), ns3::PbbTlv::GetValue(), ns3::ErlangVariableImpl::GetValue(), ns3::ErlangRandomVariable::GetValue(), ns3::TriangularVariableImpl::GetValue(), ns3::ZipfVariableImpl::GetValue(), ns3::TriangularRandomVariable::GetValue(), ns3::ZetaVariableImpl::GetValue(), ns3::ZipfRandomVariable::GetValue(), ns3::ZetaRandomVariable::GetValue(), ns3::DeterministicRandomVariable::GetValue(), ns3::EmpiricalRandomVariable::GetValue(), ns3::GlobalValue::GetValueByName(), ns3::GlobalValue::GetValueByNameFailSafe(), ns3::EnumChecker::GetValueTypeName(), ns3::NormalRandomVariable::GetVariance(), ns3::Icmpv6L4Protocol::GetVersion(), ns3::PbbPacket::GetVersion(), ns3::SPFVertex::GetVertexId(), ns3::SPFVertex::GetVertexType(), ns3::LiIonEnergySource::GetVoltage(), ns3::GlobalRouteManagerLSDB::GlobalRouteManagerLSDB(), ns3::GlobalRouter::GlobalRouter(), ns3::GlobalRoutingLinkRecord::GlobalRoutingLinkRecord(), ns3::GlobalRoutingLSA::GlobalRoutingLSA(), ns3::GlobalValue::GlobalValue(), ns3::HalfDuplexIdealPhySignalParameters::HalfDuplexIdealPhySignalParameters(), ns3::Icmpv6L4Protocol::HandleDestinationUnreachable(), ns3::Icmpv6L4Protocol::HandleEchoRequest(), ns3::AcousticModemEnergyModel::HandleEnergyDepletion(), ns3::WifiRadioEnergyModel::HandleEnergyDepletion(), ns3::BasicEnergySource::HandleEnergyDrainedEvent(), ns3::LiIonEnergySource::HandleEnergyDrainedEvent(), ns3::RvBatteryModel::HandleEnergyDrainedEvent(), ns3::Ipv4L3Protocol::HandleFragmentsTimeout(), ns3::Icmpv6L4Protocol::HandleNA(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::Icmpv6L4Protocol::HandlePacketTooBig(), ns3::Icmpv6L4Protocol::HandleParameterError(), ns3::Icmpv6L4Protocol::HandleRA(), ns3::Ping6::HandleRead(), ns3::Radvd::HandleRead(), ns3::Icmpv6L4Protocol::HandleRedirection(), ns3::Icmpv6L4Protocol::HandleRS(), ns3::Icmpv6L4Protocol::HandleTimeExceeded(), ns3::ArpCache::HandleWaitReplyTimeout(), ns3::LteHelper::HandoverRequest(), ns3::RrFfMacScheduler::HarqProcessAvailability(), ns3::TdMtFfMacScheduler::HarqProcessAvailability(), ns3::TtaFfMacScheduler::HarqProcessAvailability(), ns3::FdMtFfMacScheduler::HarqProcessAvailability(), ns3::PfFfMacScheduler::HarqProcessAvailability(), ns3::TdBetFfMacScheduler::HarqProcessAvailability(), ns3::FdBetFfMacScheduler::HarqProcessAvailability(), ns3::TdTbfqFfMacScheduler::HarqProcessAvailability(), ns3::FdTbfqFfMacScheduler::HarqProcessAvailability(), ns3::PssFfMacScheduler::HarqProcessAvailability(), ns3::TypeId::HasConstructor(), ns3::ObjectPtrContainerAccessor::HasGetter(), ns3::PbbMessage::HasHopCount(), ns3::PbbMessage::HasHopLimit(), ns3::PbbAddressTlv::HasIndexStart(), ns3::PbbAddressTlv::HasIndexStop(), ns3::Ipv6StaticRouting::HasNetworkDest(), ns3::Object::AggregateIterator::HasNext(), ns3::PacketTagIterator::HasNext(), ns3::PbbMessage::HasOriginatorAddress(), ns3::BlockAckManager::HasOtherFragments(), ns3::BlockAckManager::HasPackets(), ns3::PbbPacket::HasSequenceNumber(), ns3::PbbMessage::HasSequenceNumber(), ns3::ObjectPtrContainerAccessor::HasSetter(), ns3::PbbTlv::HasTypeExt(), ns3::EnumChecker::HasUnderlyingTypeInformation(), ns3::PbbTlv::HasValue(), ns3::aodv::RoutingProtocol::HelloTimerExpire(), ns3::Icmpv6DestinationUnreachable::Icmpv6DestinationUnreachable(), ns3::Icmpv6Echo::Icmpv6Echo(), ns3::Icmpv6Header::Icmpv6Header(), ns3::Icmpv6L4Protocol::Icmpv6L4Protocol(), ns3::Icmpv6NA::Icmpv6NA(), ns3::Icmpv6NS::Icmpv6NS(), ns3::Icmpv6OptionHeader::Icmpv6OptionHeader(), ns3::Icmpv6OptionLinkLayerAddress::Icmpv6OptionLinkLayerAddress(), ns3::Icmpv6OptionMtu::Icmpv6OptionMtu(), ns3::Icmpv6OptionPrefixInformation::Icmpv6OptionPrefixInformation(), ns3::Icmpv6OptionRedirected::Icmpv6OptionRedirected(), ns3::Icmpv6ParameterError::Icmpv6ParameterError(), ns3::Icmpv6RA::Icmpv6RA(), ns3::Icmpv6Redirection::Icmpv6Redirection(), ns3::Icmpv6RS::Icmpv6RS(), ns3::Icmpv6TimeExceeded::Icmpv6TimeExceeded(), ns3::Icmpv6TooBig::Icmpv6TooBig(), ns3::dsr::DsrOptions::IfDuplicates(), ns3::RttEstimator::IncreaseMultiplier(), ns3::LiIonEnergySource::IncreaseRemainingEnergy(), ns3::dsr::DsrRouting::IncreaseRetransTimer(), ns3::ArpCache::Entry::IncrementRetries(), ns3::dsr::RouteCache::IncStability(), ns3::CtrlBAckResponseHeader::IndexInBitmap(), ns3::Inet6SocketAddress::Inet6SocketAddress(), ns3::InetSocketAddress::InetSocketAddress(), ns3::SPFVertex::InheritAllRootExitDirections(), ns3::PcapFileWrapper::Init(), ns3::PcapFile::Init(), ns3::Object::Initialize(), ns3::GlobalRouteManagerLSDB::Initialize(), ns3::TcpWestwood::InitializeCwnd(), ns3::EnergySource::InitializeDeviceModels(), ns3::GlobalRouteManagerImpl::InitializeRoutes(), ns3::GlobalRouter::InjectRoute(), ns3::MapScheduler::Insert(), ns3::ListScheduler::Insert(), ns3::CalendarScheduler::Insert(), ns3::Ipv6L3Protocol::Insert(), ns3::Ipv4L3Protocol::Insert(), ns3::PbbTlvBlock::Insert(), ns3::PbbAddressTlvBlock::Insert(), ns3::GlobalRouteManagerLSDB::Insert(), ns3::aodv::RoutingTableEntry::InsertPrecursor(), ns3::RadioEnvironmentMapHelper::Install(), ns3::TapBridgeHelper::Install(), ns3::SpectrumAnalyzerHelper::Install(), ns3::LteSimpleHelper::InstallEnbDevice(), ns3::LteHelper::InstallEnbDevice(), ns3::MeshWifiInterfaceMac::InstallPlugin(), ns3::LteSimpleHelper::InstallUeDevice(), ns3::LteHelper::InstallUeDevice(), ns3::aodv::RoutingTableEntry::Invalidate(), ns3::aodv::RoutingTable::InvalidateRoutesWithDst(), ns3::EventImpl::Invoke(), ns3::Ipv6L3Protocol::IpForward(), ns3::Ipv6L3Protocol::IpMulticastForward(), ns3::Ipv4Address::Ipv4Address(), ns3::Ipv4GlobalRouting::Ipv4GlobalRouting(), ns3::Ipv4Interface::Ipv4Interface(), ns3::Ipv4Mask::Ipv4Mask(), ns3::Ipv4MulticastRoutingTableEntry::Ipv4MulticastRoutingTableEntry(), ns3::Ipv4RoutingTableEntry::Ipv4RoutingTableEntry(), ns3::Ipv6Address::Ipv6Address(), ns3::Ipv6AddressHelper::Ipv6AddressHelper(), ns3::Ipv6Interface::Ipv6Interface(), ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(), ns3::Ipv6Prefix::Ipv6Prefix(), ns3::ArpCache::Entry::IsAlive(), ns3::Ipv6Address::IsAllHostsMulticast(), ns3::Ipv6Address::IsAllNodesMulticast(), ns3::Ipv6Address::IsAllRoutersMulticast(), ns3::Icmpv6L4Protocol::IsAlwaysDad(), ns3::RandomVariableStream::IsAntithetic(), ns3::Ipv6Address::IsAny(), ns3::RadvdPrefix::IsAutonomousFlag(), ns3::LteNetDevice::IsBridge(), ns3::SimpleNetDevice::IsBridge(), ns3::NonCommunicatingNetDevice::IsBridge(), ns3::AlohaNoackNetDevice::IsBridge(), ns3::LteNetDevice::IsBroadcast(), ns3::SimpleNetDevice::IsBroadcast(), ns3::Mac48Address::IsBroadcast(), ns3::NonCommunicatingNetDevice::IsBroadcast(), ns3::Ipv4Address::IsBroadcast(), ns3::AlohaNoackNetDevice::IsBroadcast(), ns3::EventImpl::IsCancelled(), ns3::Ipv4Header::IsChecksumOk(), ns3::TypeId::IsChildOf(), ns3::ErrorModel::IsCorrupt(), ns3::ArpCache::Entry::IsDead(), ns3::Ipv4RoutingTableEntry::IsDefault(), ns3::Ipv4L3Protocol::IsDestinationAddress(), ns3::Ipv4Header::IsDontFragment(), ns3::Ipv4Interface::IsDown(), ns3::MapScheduler::IsEmpty(), ns3::ListScheduler::IsEmpty(), ns3::Queue::IsEmpty(), ns3::HeapScheduler::IsEmpty(), ns3::CalendarScheduler::IsEmpty(), ns3::GlobalRoutingLSA::IsEmpty(), ns3::ErrorModel::IsEnabled(), ns3::Buffer::Iterator::IsEnd(), ns3::Ipv4L3Protocol::Fragments::IsEntire(), ns3::Ipv6Address::IsEqual(), ns3::Ipv4Mask::IsEqual(), ns3::EventId::IsExpired(), ns3::ArpCache::Entry::IsExpired(), ns3::Timer::IsExpired(), ns3::Ipv4Interface::IsForwarding(), ns3::Ipv4L3Protocol::IsForwarding(), ns3::Ipv6L3Protocol::IsForwarding(), ns3::Ipv4RoutingTableEntry::IsGateway(), ns3::Mac48Address::IsGroup(), ns3::RadvdInterface::IsHomeAgentFlag(), ns3::RadvdInterface::IsHomeAgentInfo(), ns3::Ipv4RoutingTableEntry::IsHost(), ns3::CtrlBAckResponseHeader::IsInBitmap(), ns3::BuildingsMobilityModel::IsIndoor(), ns3::RadvdInterface::IsIntervalOpt(), ns3::Address::IsInvalid(), ns3::Ipv6Address::IsIpv4MappedAddress(), ns3::Ipv4Header::IsLastFragment(), ns3::Ipv6Address::IsLinkLocal(), ns3::Ipv6Address::IsLinkLocalMulticast(), ns3::LteNetDevice::IsLinkUp(), ns3::SimpleNetDevice::IsLinkUp(), ns3::NonCommunicatingNetDevice::IsLinkUp(), ns3::AlohaNoackNetDevice::IsLinkUp(), ns3::Ipv6Address::IsLocalhost(), ns3::Ipv4Address::IsLocalMulticast(), ns3::AarfWifiManager::IsLowLatency(), ns3::ConstantRateWifiManager::IsLowLatency(), ns3::AmrrWifiManager::IsLowLatency(), ns3::CaraWifiManager::IsLowLatency(), ns3::AarfcdWifiManager::IsLowLatency(), ns3::ArfWifiManager::IsLowLatency(), ns3::RadvdInterface::IsManagedFlag(), ns3::Ipv4Mask::IsMatch(), ns3::Ipv6Prefix::IsMatch(), ns3::PacketSocketAddress::IsMatchingType(), ns3::Mac64Address::IsMatchingType(), ns3::Mac48Address::IsMatchingType(), ns3::InetSocketAddress::IsMatchingType(), ns3::Inet6SocketAddress::IsMatchingType(), ns3::Ipv4Address::IsMatchingType(), ns3::Address::IsMatchingType(), ns3::Ipv6Address::IsMatchingType(), ns3::RadvdInterface::IsMobRtrSupportFlag(), ns3::LteNetDevice::IsMulticast(), ns3::SimpleNetDevice::IsMulticast(), ns3::NonCommunicatingNetDevice::IsMulticast(), ns3::Ipv4Address::IsMulticast(), ns3::AlohaNoackNetDevice::IsMulticast(), ns3::Ipv6Address::IsMulticast(), ns3::PbbAddressTlv::IsMultivalue(), ns3::aodv::RoutingProtocol::IsMyOwnAddress(), ns3::dsr::RouteCache::IsNeighbor(), ns3::Ipv4RoutingTableEntry::IsNetwork(), ns3::RadvdPrefix::IsOnLinkFlag(), ns3::RadvdInterface::IsOtherConfigFlag(), ns3::BuildingsMobilityModel::IsOutdoor(), ns3::LteNetDevice::IsPointToPoint(), ns3::SimpleNetDevice::IsPointToPoint(), ns3::NonCommunicatingNetDevice::IsPointToPoint(), ns3::AlohaNoackNetDevice::IsPointToPoint(), ns3::Socket::IsRecvPktInfo(), ns3::RadvdPrefix::IsRouterAddrFlag(), ns3::EventId::IsRunning(), ns3::Timer::IsRunning(), ns3::RadvdInterface::IsSendAdvert(), ns3::Ipv6Address::IsSolicitedMulticast(), ns3::RadvdInterface::IsSourceLLAddress(), ns3::Buffer::Iterator::IsStart(), ns3::AcousticModemEnergyModel::IsStateTransitionValid(), ns3::TestCase::IsStatusFailure(), ns3::TestCase::IsStatusSuccess(), ns3::Ipv4Address::IsSubnetDirectedBroadcast(), ns3::Timer::IsSuspended(), ns3::Ipv4Interface::IsUp(), ns3::Ipv4L3Protocol::IsUp(), ns3::Ipv6L3Protocol::IsUp(), ns3::SPFVertex::IsVertexProcessed(), ns3::ArpCache::Entry::IsWaitReply(), ns3::SystemPath::Join(), ns3::dsr::DsrRouting::LinkScheduleTimerExpire(), ns3::Ipv4RawSocketImpl::Listen(), ns3::TcpNewReno::Listen(), ns3::TcpReno::Listen(), ns3::TcpTahoe::Listen(), ns3::NscTcpSocketImpl::Listen(), ns3::TcpWestwood::Listen(), ns3::TcpSocketBase::Listen(), ns3::PacketSocket::Listen(), ns3::Ipv6L3Protocol::LocalDeliver(), ns3::SystemMutex::Lock(), ns3::LogNormalRandomVariable::LogNormalRandomVariable(), ns3::LogNormalVariable::LogNormalVariable(), ns3::LogNormalVariableImpl::LogNormalVariableImpl(), ns3::dsdv::RoutingProtocol::LookForQueuedPackets(), ns3::ArpL3Protocol::Lookup(), ns3::Ipv6EndPointDemux::Lookup(), ns3::NdiscCache::Lookup(), ns3::ArpCache::Lookup(), ns3::Icmpv6L4Protocol::Lookup(), ns3::TypeId::LookupAttributeByName(), ns3::TypeId::LookupByName(), ns3::TypeId::LookupByNameFailSafe(), ns3::lookuphash(), ns3::Ipv6EndPointDemux::LookupLocal(), ns3::Config::LookupMatches(), ns3::Ipv6EndPointDemux::LookupPortLocal(), ns3::aodv::RoutingTableEntry::LookupPrecursor(), ns3::aodv::RoutingTable::LookupRoute(), ns3::dsr::RouteCache::LookupRoute(), ns3::dsr::RouteCache::LookupRoute_Link(), ns3::Ipv6StaticRouting::LookupStatic(), ns3::TypeId::LookupTraceSourceByName(), ns3::aodv::RoutingTable::LookupValidRoute(), ns3::aodv::RoutingProtocol::LoopbackRoute(), ns3::LteEnbPhy::LteEnbPhy(), ns3::LteEnbRrc::LteEnbRrc(), ns3::LtePhy::LtePhy(), ns3::LteSpectrumSignalParameters::LteSpectrumSignalParameters(), ns3::LteSpectrumSignalParametersDataFrame::LteSpectrumSignalParametersDataFrame(), ns3::LteSpectrumSignalParametersDlCtrlFrame::LteSpectrumSignalParametersDlCtrlFrame(), ns3::LteSpectrumSignalParametersUlSrsFrame::LteSpectrumSignalParametersUlSrsFrame(), ns3::LteTestUePhy::LteTestUePhy(), ns3::LteUeNetDevice::LteUeNetDevice(), ns3::LteUePhy::LteUePhy(), ns3::LteUeRrc::LteUeRrc(), ns3::Mac48Address::Mac48Address(), ns3::Mac64Address::Mac64Address(), ns3::MacStatsCalculator::MacStatsCalculator(), ns3::Ipv6Address::MakeAutoconfiguredAddress(), ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(), ns3::SystemPath::MakeDirectories(), ns3::Ipv6Address::MakeIpv4MappedAddress(), ns3::Ipv6Address::MakeSolicitedAddress(), ns3::LteMiErrorModel::MappingMiBler(), ns3::EdcaTxopN::MapSrcAddressForAggregation(), ns3::ArpCache::Entry::MarkAlive(), ns3::ArpCache::Entry::MarkDead(), ns3::NdiscCache::Entry::MarkIncomplete(), ns3::aodv::RoutingTable::MarkLinkAsUnidirectional(), ns3::NdiscCache::Entry::MarkReachable(), ns3::NdiscCache::Entry::MarkStale(), ns3::ArpCache::Entry::MarkWaitReply(), ns3::EpcTft::PacketFilter::Matches(), ns3::EpcTft::Matches(), ns3::RttMeanDeviation::Measurement(), ns3::SPFVertex::MergeParent(), ns3::SPFVertex::MergeRootExitDirections(), ns3::MeshWifiInterfaceMac::MeshWifiInterfaceMac(), ns3::PbbPacket::MessageBack(), ns3::PbbPacket::MessageBegin(), ns3::PbbPacket::MessageClear(), ns3::PbbPacket::MessageEmpty(), ns3::PbbPacket::MessageEnd(), ns3::PbbPacket::MessageFront(), ns3::PbbPacket::MessagePopBack(), ns3::PbbPacket::MessagePopFront(), ns3::PbbPacket::MessagePushBack(), ns3::PbbPacket::MessagePushFront(), ns3::PbbPacket::MessageSize(), ns3::LteMiErrorModel::Mib(), ns3::olsr::RoutingProtocol::MprComputation(), ns3::UdpSocketImpl::MulticastJoinGroup(), ns3::UdpSocketImpl::MulticastLeaveGroup(), ns3::TypeId::MustHideFromDocumentation(), ns3::Synchronizer::NanosecondToTimeStep(), ns3::LteNetDevice::NeedsArp(), ns3::SimpleNetDevice::NeedsArp(), ns3::NonCommunicatingNetDevice::NeedsArp(), ns3::AlohaNoackNetDevice::NeedsArp(), ns3::TcpNewReno::NewAck(), ns3::TcpReno::NewAck(), ns3::TcpTahoe::NewAck(), ns3::TcpWestwood::NewAck(), ns3::Ipv6AddressHelper::NewAddress(), ns3::ConstantVariableImpl::NewConstant(), ns3::Ipv6AddressHelper::NewNetwork(), ns3::Object::AggregateIterator::Next(), ns3::ByteTagIterator::Next(), ns3::PacketTagIterator::Next(), ns3::Node::Node(), ns3::NormalRandomVariable::NormalRandomVariable(), ns3::NormalVariable::NormalVariable(), ns3::NormalVariableImpl::NormalVariableImpl(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::dsdv::RoutingProtocol::NotifyAddAddress(), ns3::Ipv4StaticRouting::NotifyAddAddress(), ns3::Ipv4ListRouting::NotifyAddAddress(), ns3::Ipv4GlobalRouting::NotifyAddAddress(), ns3::Ipv6ListRouting::NotifyAddAddress(), ns3::Ipv6ListRouting::NotifyAddRoute(), ns3::BlockAckManager::NotifyAgreementEstablished(), ns3::BlockAckManager::NotifyAgreementUnsuccessful(), ns3::EdcaTxopN::NotifyChannelSwitching(), ns3::DcaTxop::NotifyChannelSwitching(), ns3::ObjectBase::NotifyConstructionCompleted(), ns3::EnergySource::NotifyEnergyDrained(), ns3::BlockAckManager::NotifyGotBlockAck(), ns3::aodv::RoutingProtocol::NotifyInterfaceDown(), ns3::Ipv4StaticRouting::NotifyInterfaceDown(), ns3::Ipv4ListRouting::NotifyInterfaceDown(), ns3::Ipv4GlobalRouting::NotifyInterfaceDown(), ns3::Ipv6ListRouting::NotifyInterfaceDown(), ns3::Ipv6StaticRouting::NotifyInterfaceDown(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::dsdv::RoutingProtocol::NotifyInterfaceUp(), ns3::Ipv4StaticRouting::NotifyInterfaceUp(), ns3::Ipv4ListRouting::NotifyInterfaceUp(), ns3::Ipv4GlobalRouting::NotifyInterfaceUp(), ns3::Ipv6ListRouting::NotifyInterfaceUp(), ns3::WifiRadioEnergyModelPhyListener::NotifyMaybeCcaBusyStart(), ns3::DcfManager::NotifyMaybeCcaBusyStartNow(), ns3::BlockAckManager::NotifyMpduTransmission(), ns3::DcfManager::NotifyNavResetNow(), ns3::DcfManager::NotifyNavStartNow(), ns3::Icmpv4L4Protocol::NotifyNewAggregate(), ns3::ArpL3Protocol::NotifyNewAggregate(), ns3::UdpL4Protocol::NotifyNewAggregate(), ns3::Icmpv6L4Protocol::NotifyNewAggregate(), ns3::Object::NotifyNewAggregate(), ns3::Ipv4L3Protocol::NotifyNewAggregate(), ns3::dsr::DsrRouting::NotifyNewAggregate(), ns3::AlohaNoackNetDevice::NotifyReceptionEndError(), ns3::AlohaNoackNetDevice::NotifyReceptionEndOk(), ns3::AlohaNoackNetDevice::NotifyReceptionStart(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::Ipv4StaticRouting::NotifyRemoveAddress(), ns3::Ipv4ListRouting::NotifyRemoveAddress(), ns3::Ipv4GlobalRouting::NotifyRemoveAddress(), ns3::Ipv6ListRouting::NotifyRemoveAddress(), ns3::Ipv6ListRouting::NotifyRemoveRoute(), ns3::Ipv6StaticRouting::NotifyRemoveRoute(), ns3::WifiRadioEnergyModelPhyListener::NotifyRxEndError(), ns3::DcfManager::NotifyRxEndErrorNow(), ns3::WifiRadioEnergyModelPhyListener::NotifyRxEndOk(), ns3::DcfManager::NotifyRxEndOkNow(), ns3::WifiRadioEnergyModelPhyListener::NotifyRxStart(), ns3::DcfManager::NotifyRxStartNow(), ns3::WifiRadioEnergyModelPhyListener::NotifySensingStart(), ns3::WifiRadioEnergyModelPhyListener::NotifySwitchingStart(), ns3::DcfManager::NotifySwitchingStartNow(), ns3::AlohaNoackNetDevice::NotifyTransmissionEnd(), ns3::WifiRadioEnergyModelPhyListener::NotifyTxStart(), ns3::DcfManager::NotifyTxStartNow(), ns3::NscTcpSocketImpl::NscTcpSocketImpl(), ns3::PendingData::OffsetFromSeq(), ns3::PcapFileWrapper::Open(), ns3::PcapFile::Open(), ns3::AthstatsWifiTraceSink::Open(), ns3::GlobalRoutingLSA::operator=(), ns3::Packet::Packet(), ns3::dsr::DsrRouting::PacketNewRoute(), ns3::ParetoRandomVariable::ParetoRandomVariable(), ns3::ParetoVariable::ParetoVariable(), ns3::ParetoVariableImpl::ParetoVariableImpl(), ns3::CommandLine::Parse(), ns3::dsr::DsrRouting::PassiveEntryCheck(), ns3::dsr::DsrRouting::PassiveScheduleTimerExpire(), ns3::Queue::Peek(), ns3::RandomVariableStream::Peek(), ns3::Packet::PeekData(), ns3::Buffer::PeekData(), ns3::Packet::PeekHeader(), ns3::MapScheduler::PeekNext(), ns3::ListScheduler::PeekNext(), ns3::HeapScheduler::PeekNext(), ns3::CalendarScheduler::PeekNext(), ns3::Packet::PeekPacketTag(), ns3::Packet::PeekTrailer(), ns3::TcpSocketBase::PeerClose(), ns3::LteEnbPhy::PhyPduReceived(), ns3::AthstatsWifiTraceSink::PhyRxErrorTrace(), ns3::AthstatsWifiTraceSink::PhyRxOkTrace(), ns3::PhyRxStatsCalculator::PhyRxStatsCalculator(), ns3::AthstatsWifiTraceSink::PhyStateTrace(), ns3::PhyStatsCalculator::PhyStatsCalculator(), ns3::PhyTxStatsCalculator::PhyTxStatsCalculator(), ns3::AthstatsWifiTraceSink::PhyTxTrace(), ns3::Watchdog::Ping(), ns3::PointToPointNetDevice::PointToPointNetDevice(), ns3::CandidateQueue::Pop(), ns3::PbbTlvBlock::PopBack(), ns3::PbbAddressTlvBlock::PopBack(), ns3::PbbTlvBlock::PopFront(), ns3::PbbAddressTlvBlock::PopFront(), ns3::olsr::RoutingProtocol::PopulateMprSelectorSet(), ns3::PbbAddressBlock::PrefixBack(), ns3::PbbAddressBlock::PrefixBegin(), ns3::PbbAddressBlock::PrefixClear(), ns3::PbbAddressBlock::PrefixEmpty(), ns3::PbbAddressBlock::PrefixEnd(), ns3::PbbAddressBlock::PrefixErase(), ns3::PbbAddressBlock::PrefixFront(), ns3::PbbAddressBlock::PrefixInsert(), ns3::PbbAddressBlock::PrefixPopBack(), ns3::PbbAddressBlock::PrefixPopFront(), ns3::PbbAddressBlock::PrefixPushBack(), ns3::PbbAddressBlock::PrefixPushFront(), ns3::PbbAddressBlock::PrefixSize(), ns3::UeManager::PrepareHandover(), ns3::FlowIdTag::Print(), ns3::AmsduSubframeHeader::Print(), ns3::LlcSnapHeader::Print(), ns3::CtrlBAckRequestHeader::Print(), ns3::ArpHeader::Print(), ns3::SeqTsHeader::Print(), ns3::Icmpv4Header::Print(), ns3::Ipv4PacketInfoTag::Print(), ns3::LteGlobalPathlossDatabase::Print(), ns3::Icmpv4Echo::Print(), ns3::EthernetTrailer::Print(), ns3::RadiotapHeader::Print(), ns3::Ipv4Address::Print(), ns3::EthernetHeader::Print(), ns3::CtrlBAckResponseHeader::Print(), ns3::Icmpv4DestinationUnreachable::Print(), ns3::Icmpv4TimeExceeded::Print(), ns3::Ipv6Address::Print(), ns3::Icmpv6Header::Print(), ns3::PbbTlvBlock::Print(), ns3::Ipv4Header::Print(), ns3::Ipv4Mask::Print(), ns3::Icmpv6OptionHeader::Print(), ns3::PbbAddressTlvBlock::Print(), ns3::GlobalRoutingLSA::Print(), ns3::Icmpv6NS::Print(), ns3::Ipv6Prefix::Print(), ns3::Packet::Print(), ns3::Icmpv6NA::Print(), ns3::PbbPacket::Print(), ns3::Icmpv6RA::Print(), ns3::Icmpv6RS::Print(), ns3::SocketAddressTag::Print(), ns3::SocketIpTtlTag::Print(), ns3::Icmpv6Redirection::Print(), ns3::SocketSetDontFragmentTag::Print(), ns3::PbbMessage::Print(), ns3::Icmpv6Echo::Print(), ns3::Icmpv6DestinationUnreachable::Print(), ns3::Icmpv6TooBig::Print(), ns3::Icmpv6TimeExceeded::Print(), ns3::Icmpv6ParameterError::Print(), ns3::Icmpv6OptionMtu::Print(), ns3::PbbAddressBlock::Print(), ns3::Icmpv6OptionPrefixInformation::Print(), ns3::PbbTlv::Print(), ns3::Icmpv6OptionLinkLayerAddress::Print(), ns3::Icmpv6OptionRedirected::Print(), ns3::Packet::PrintByteTags(), ns3::Packet::PrintPacketTags(), ns3::dsr::RouteCache::PrintRouteVector(), ns3::Ipv4StaticRouting::PrintRoutingTable(), ns3::Ipv4ListRouting::PrintRoutingTable(), ns3::Ipv4GlobalRouting::PrintRoutingTable(), ns3::Ipv6ListRouting::PrintRoutingTable(), ns3::Ipv6StaticRouting::PrintRoutingTable(), ns3::dsr::DsrOptions::PrintVector(), ns3::dsr::DsrRouting::PrintVector(), ns3::dsr::RouteCache::PrintVector(), ns3::dsr::DsrRouting::PriorityScheduler(), ns3::Ipv6OptionPad1::Process(), ns3::Ipv6OptionPadn::Process(), ns3::Ipv6ExtensionHopByHop::Process(), ns3::Ipv6OptionJumbogram::Process(), ns3::Ipv6ExtensionDestination::Process(), ns3::dsr::DsrOptionPad1::Process(), ns3::Ipv6OptionRouterAlert::Process(), ns3::Ipv6ExtensionFragment::Process(), ns3::dsr::DsrOptionPadn::Process(), ns3::dsr::DsrOptionRreq::Process(), ns3::dsr::DsrOptionRrep::Process(), ns3::Ipv6ExtensionRouting::Process(), ns3::dsr::DsrOptionSR::Process(), ns3::dsr::DsrOptionRerr::Process(), ns3::Ipv6ExtensionLooseRouting::Process(), ns3::dsr::DsrOptionAckReq::Process(), ns3::Ipv6ExtensionESP::Process(), ns3::dsr::DsrOptionAck::Process(), ns3::Ipv6ExtensionAH::Process(), ns3::TcpSocketBase::ProcessClosing(), ns3::TcpSocketBase::ProcessEstablished(), ns3::Ipv4L3Protocol::ProcessFragment(), ns3::aodv::RoutingProtocol::ProcessHello(), ns3::olsr::RoutingProtocol::ProcessHello(), ns3::TcpSocketBase::ProcessLastAck(), ns3::TcpSocketBase::ProcessListen(), ns3::Ipv6Extension::ProcessOptions(), ns3::TcpSocketBase::ProcessSynRcvd(), ns3::TcpSocketBase::ProcessSynSent(), ns3::TcpSocketBase::ProcessWait(), ns3::CsmaChannel::PropagationCompleteEvent(), ns3::aodv::RoutingTable::Purge(), ns3::dsr::RouteCache::PurgeLinkNode(), ns3::CandidateQueue::Push(), ns3::PbbTlvBlock::PushBack(), ns3::PbbAddressTlvBlock::PushBack(), ns3::PbbTlvBlock::PushFront(), ns3::PbbAddressTlvBlock::PushFront(), ns3::DcaTxop::Queue(), ns3::LteEnbPhy::QueueUlDci(), ns3::RadioBearerStatsCalculator::RadioBearerStatsCalculator(), ns3::Radvd::Radvd(), ns3::RadvdInterface::RadvdInterface(), ns3::RadvdPrefix::RadvdPrefix(), ns3::TagBuffer::Read(), ns3::PcapFile::Read(), ns3::Buffer::Iterator::Read(), ns3::TagBuffer::ReadDouble(), ns3::SystemPath::ReadFiles(), ns3::PacketMetadata::ReadItems(), ns3::Buffer::Iterator::ReadLsbtohU16(), ns3::Buffer::Iterator::ReadLsbtohU32(), ns3::Buffer::Iterator::ReadLsbtohU64(), ns3::Buffer::Iterator::ReadNtohU64(), ns3::Buffer::Iterator::ReadU32(), ns3::TagBuffer::ReadU64(), ns3::Buffer::Iterator::ReadU64(), ns3::Synchronizer::Realtime(), ns3::CsmaChannel::Reattach(), ns3::dsr::RouteCache::RebuildBestRouteTable(), ns3::Icmpv4L4Protocol::Receive(), ns3::MacRxMiddle::Receive(), ns3::ArpL3Protocol::Receive(), ns3::AdhocWifiMac::Receive(), ns3::NscTcpL4Protocol::Receive(), ns3::LteNetDevice::Receive(), ns3::StaWifiMac::Receive(), ns3::ApWifiMac::Receive(), ns3::UdpL4Protocol::Receive(), ns3::TcpL4Protocol::Receive(), ns3::PointToPointNetDevice::Receive(), ns3::Ipv6L3Protocol::Receive(), ns3::Ipv4L3Protocol::Receive(), ns3::CsmaNetDevice::Receive(), ns3::RegularWifiMac::Receive(), ns3::Icmpv6L4Protocol::Receive(), ns3::dsr::DsrRouting::Receive(), ns3::LteEnbMac::ReceiveBsrMessage(), ns3::FdNetDevice::ReceiveCallback(), ns3::TcpWestwood::ReceivedAck(), ns3::TcpSocketBase::ReceivedAck(), ns3::LteEnbMac::ReceiveDlCqiLteControlMessage(), ns3::MacLow::ReceiveError(), ns3::IpL4Protocol::ReceiveIcmp(), ns3::UdpL4Protocol::ReceiveIcmp(), ns3::TcpL4Protocol::ReceiveIcmp(), ns3::Icmpv6L4Protocol::ReceiveLLA(), ns3::LteEnbPhy::ReceiveLteControlMessage(), ns3::LteEnbPhy::ReceiveLteControlMessageList(), ns3::LteUePhy::ReceiveLteDlHarqFeedback(), ns3::LteEnbPhy::ReceiveLteUlHarqFeedback(), ns3::MacLow::ReceiveOk(), ns3::UeManager::RecordDataRadioBearersToBeStarted(), ns3::Ipv4RawSocketImpl::Recv(), ns3::UdpSocketImpl::Recv(), ns3::TcpSocketBase::Recv(), ns3::PacketSocket::Recv(), ns3::Ipv6RawSocketImpl::Recv(), ns3::Socket::Recv(), ns3::aodv::RoutingProtocol::RecvAodv(), ns3::dsdv::RoutingProtocol::RecvDsdv(), ns3::aodv::RoutingProtocol::RecvError(), ns3::Ipv4RawSocketImpl::RecvFrom(), ns3::UdpSocketImpl::RecvFrom(), ns3::NscTcpSocketImpl::RecvFrom(), ns3::TcpSocketBase::RecvFrom(), ns3::PacketSocket::RecvFrom(), ns3::Ipv6RawSocketImpl::RecvFrom(), ns3::Socket::RecvFrom(), ns3::EpcEnbApplication::RecvFromLteSocket(), ns3::EpcSgwPgwApplication::RecvFromS1uSocket(), ns3::EpcEnbApplication::RecvFromS1uSocket(), ns3::EpcSgwPgwApplication::RecvFromTunDevice(), ns3::EpcX2::RecvFromX2cSocket(), ns3::EpcX2::RecvFromX2uSocket(), ns3::UeManager::RecvHandoverPreparationFailure(), ns3::UeManager::RecvHandoverRequestAck(), ns3::aodv::RoutingProtocol::RecvReply(), ns3::aodv::RoutingProtocol::RecvReplyAck(), ns3::aodv::RoutingProtocol::RecvRequest(), ns3::UeManager::RecvSnStatusTransfer(), ns3::RrFfMacScheduler::RefreshHarqProcesses(), ns3::TdMtFfMacScheduler::RefreshHarqProcesses(), ns3::TtaFfMacScheduler::RefreshHarqProcesses(), ns3::FdMtFfMacScheduler::RefreshHarqProcesses(), ns3::PfFfMacScheduler::RefreshHarqProcesses(), ns3::TdBetFfMacScheduler::RefreshHarqProcesses(), ns3::FdBetFfMacScheduler::RefreshHarqProcesses(), ns3::TdTbfqFfMacScheduler::RefreshHarqProcesses(), ns3::FdTbfqFfMacScheduler::RefreshHarqProcesses(), ns3::PssFfMacScheduler::RefreshHarqProcesses(), ns3::Node::RegisterDeviceAdditionListener(), ns3::Node::RegisterProtocolHandler(), ns3::Config::RegisterRootNamespaceObject(), ns3::FatalImpl::RegisterStream(), ns3::UeManager::ReleaseDataRadioBearer(), ns3::MapScheduler::Remove(), ns3::ListScheduler::Remove(), ns3::PacketTagList::Remove(), ns3::CalendarScheduler::Remove(), ns3::Ipv6L3Protocol::Remove(), ns3::Ipv4L3Protocol::Remove(), ns3::Timer::Remove(), ns3::Ipv4Interface::RemoveAddress(), ns3::Ipv4L3Protocol::RemoveAddress(), ns3::Ipv6Interface::RemoveAddress(), ns3::Ipv6L3Protocol::RemoveAddress(), ns3::Packet::RemoveAllByteTags(), ns3::Packet::RemoveAllPacketTags(), ns3::Packet::RemoveAtEnd(), ns3::Buffer::RemoveAtEnd(), ns3::Packet::RemoveAtStart(), ns3::Buffer::RemoveAtStart(), ns3::Ipv6L3Protocol::RemoveAutoconfiguredAddress(), ns3::UeManager::RemoveDataRadioBearerInfo(), ns3::Packet::RemoveHeader(), ns3::GlobalRouter::RemoveInjectedRoute(), ns3::dsr::RouteCache::RemoveLastEntry(), ns3::Ipv6StaticRouting::RemoveMulticastRoute(), ns3::Ipv4StaticRouting::RemoveMulticastRoute(), ns3::MapScheduler::RemoveNext(), ns3::ListScheduler::RemoveNext(), ns3::HeapScheduler::RemoveNext(), ns3::CalendarScheduler::RemoveNext(), ns3::Packet::RemovePacketTag(), ns3::Ipv6StaticRouting::RemoveRoute(), ns3::Ipv4GlobalRouting::RemoveRoute(), ns3::Ipv4StaticRouting::RemoveRoute(), ns3::LteEnbRrc::RemoveSrsConfigurationIndex(), ns3::PendingData::RemoveToSeq(), ns3::Packet::RemoveTrailer(), ns3::LteEnbRrc::RemoveUe(), ns3::Names::Rename(), ns3::CandidateQueue::Reorder(), ns3::PacketMetadata::ReplaceTail(), ns3::PhyStatsCalculator::ReportCurrentCellRsrpSinr(), ns3::LteTestUePhy::ReportInterference(), ns3::PhyStatsCalculator::ReportInterference(), ns3::LteEnbPhy::ReportInterference(), ns3::LteTestUePhy::ReportRsReceivedPower(), ns3::LteUePhy::ReportRsReceivedPower(), ns3::PhyStatsCalculator::ReportUeSinr(), ns3::DcfManager::RequestAccess(), ns3::aodv::RoutingProtocol::RerrRateLimitTimerExpire(), ns3::RttEstimator::Reset(), ns3::ErrorModel::Reset(), ns3::RttMeanDeviation::Reset(), ns3::LteSpectrumPhy::Reset(), ns3::LteHarqPhy::ResetDlHarqProcessStatus(), ns3::RttEstimator::ResetMultiplier(), ns3::Queue::ResetStatistics(), ns3::LteHarqPhy::ResetUlHarqProcessStatus(), ns3::RegularWifiMac::RestartAccess(), ns3::DcaTxop::RestartAccessIfNeeded(), ns3::Timer::Resume(), ns3::TcpNewReno::Retransmit(), ns3::TcpTahoe::Retransmit(), ns3::TcpWestwood::Retransmit(), ns3::RttMeanDeviation::RetransmitTimeout(), ns3::dsr::DsrOptions::ReverseRoutes(), ns3::dsr::DsrOptions::ReverseSearchNextHop(), ns3::dsr::DsrOptions::ReverseSearchNextTwoHop(), ns3::aodv::RoutingProtocol::RouteInput(), ns3::Ipv4StaticRouting::RouteInput(), ns3::Ipv4ListRouting::RouteInput(), ns3::Ipv4GlobalRouting::RouteInput(), ns3::Ipv6ListRouting::RouteInput(), ns3::olsr::RoutingProtocol::RouteInput(), ns3::Ipv6StaticRouting::RouteInput(), ns3::Ipv6L3Protocol::RouteInputError(), ns3::aodv::RoutingProtocol::RouteOutput(), ns3::dsdv::RoutingProtocol::RouteOutput(), ns3::Ipv4StaticRouting::RouteOutput(), ns3::Ipv4ListRouting::RouteOutput(), ns3::Ipv4GlobalRouting::RouteOutput(), ns3::Ipv6ListRouting::RouteOutput(), ns3::olsr::RoutingProtocol::RouteOutput(), ns3::Ipv6StaticRouting::RouteOutput(), ns3::dsr::DsrRouting::RouteRequestTimerExpire(), ns3::aodv::RoutingProtocol::RreqRateLimitTimerExpire(), ns3::DefaultSimulatorImpl::Run(), ns3::RealtimeSimulatorImpl::Run(), ns3::RvBatteryModel::RvModelAFunction(), ns3::dsr::DsrRouting::SalvagePacket(), ns3::DefaultSimulatorImpl::Schedule(), ns3::RealtimeSimulatorImpl::Schedule(), ns3::Timer::Schedule(), ns3::BlockAckManager::ScheduleBlockAckReqIfNeeded(), ns3::dsr::DsrRouting::ScheduleCachedReply(), ns3::RealtimeSimulatorImpl::ScheduleDestroy(), ns3::dsr::DsrRouting::ScheduleInitialReply(), ns3::dsr::DsrRouting::ScheduleInterRequest(), ns3::dsr::DsrRouting::ScheduleLinkPacketRetry(), ns3::RealtimeSimulatorImpl::ScheduleNow(), ns3::dsr::DsrRouting::SchedulePassivePacketRetry(), ns3::dsr::DsrRouting::Scheduler(), ns3::UeManager::ScheduleRrcConnectionReconfiguration(), ns3::aodv::RoutingProtocol::ScheduleRreqRetry(), ns3::dsr::DsrRouting::ScheduleRreqRetry(), ns3::Ping6::ScheduleTransmit(), ns3::Radvd::ScheduleTransmit(), ns3::DefaultSimulatorImpl::ScheduleWithContext(), ns3::RealtimeSimulatorImpl::ScheduleWithContext(), ns3::DistributedSimulatorImpl::ScheduleWithContext(), ns3::dsr::DsrOptions::SearchNextHop(), ns3::dsr::DsrRouting::SearchNextHop(), ns3::Ipv4L3Protocol::SelectSourceAddress(), ns3::Ipv4RawSocketImpl::Send(), ns3::LteSimpleNetDevice::Send(), ns3::LoopbackNetDevice::Send(), ns3::LteEnbNetDevice::Send(), ns3::LteUeNetDevice::Send(), ns3::UdpSocketImpl::Send(), ns3::NscTcpSocketImpl::Send(), ns3::ErrorNetDevice::Send(), ns3::SimpleNetDevice::Send(), ns3::UdpL4Protocol::Send(), ns3::TcpSocketBase::Send(), ns3::PacketSocket::Send(), ns3::TcpL4Protocol::Send(), ns3::NonCommunicatingNetDevice::Send(), ns3::EpcUeNas::Send(), ns3::Radvd::Send(), ns3::Ipv4Interface::Send(), ns3::FdNetDevice::Send(), ns3::AlohaNoackNetDevice::Send(), ns3::Ipv6L3Protocol::Send(), ns3::Ipv4L3Protocol::Send(), ns3::Ipv6RawSocketImpl::Send(), ns3::Ipv6Interface::Send(), ns3::EmuNetDevice::Send(), ns3::TapBridge::Send(), ns3::dsr::DsrRouting::Send(), ns3::CsmaNetDevice::Send(), ns3::Socket::Send(), ns3::dsr::DsrRouting::SendAck(), ns3::RegularWifiMac::SendAddBaResponse(), ns3::MeshWifiInterfaceMac::SendBeacon(), ns3::LteEnbPhy::SendControlChannels(), ns3::UeManager::SendData(), ns3::LteEnbRrc::SendData(), ns3::TcpSocketBase::SendDataPacket(), ns3::Icmpv6L4Protocol::SendEchoReply(), ns3::TcpSocketBase::SendEmptyPacket(), ns3::Icmpv6L4Protocol::SendErrorDestinationUnreachable(), ns3::Icmpv6L4Protocol::SendErrorParameterError(), ns3::dsr::DsrRouting::SendErrorRequest(), ns3::Icmpv6L4Protocol::SendErrorTimeExceeded(), ns3::Icmpv6L4Protocol::SendErrorTooBig(), ns3::LoopbackNetDevice::SendFrom(), ns3::ErrorNetDevice::SendFrom(), ns3::SimpleNetDevice::SendFrom(), ns3::NonCommunicatingNetDevice::SendFrom(), ns3::FdNetDevice::SendFrom(), ns3::AlohaNoackNetDevice::SendFrom(), ns3::EmuNetDevice::SendFrom(), ns3::TapBridge::SendFrom(), ns3::CsmaNetDevice::SendFrom(), ns3::dsr::DsrRouting::SendGratuitousReply(), ns3::LteEnbRrc::SendHandoverRequest(), ns3::aodv::RoutingProtocol::SendHello(), ns3::olsr::RoutingProtocol::SendHello(), ns3::dsr::DsrRouting::SendInitialRequest(), ns3::Icmpv6L4Protocol::SendMessage(), ns3::Icmpv6L4Protocol::SendNA(), ns3::Icmpv6L4Protocol::SendNS(), ns3::YansWifiPhy::SendPacket(), ns3::dsr::DsrRouting::SendPacket(), ns3::dsr::DsrRouting::SendPacketFromBuffer(), ns3::aodv::RoutingProtocol::SendPacketFromQueue(), ns3::TcpSocketBase::SendPendingData(), ns3::dsdv::RoutingProtocol::SendPeriodicUpdate(), ns3::dsr::DsrRouting::SendRealDown(), ns3::Ipv6L3Protocol::SendRealOut(), ns3::Icmpv6L4Protocol::SendRedirection(), ns3::aodv::RoutingProtocol::SendReply(), ns3::dsr::DsrRouting::SendReply(), ns3::aodv::RoutingProtocol::SendReplyAck(), ns3::aodv::RoutingProtocol::SendReplyByIntermediateNode(), ns3::aodv::RoutingProtocol::SendRequest(), ns3::dsr::DsrRouting::SendRequest(), ns3::aodv::RoutingProtocol::SendRerrMessage(), ns3::aodv::RoutingProtocol::SendRerrWhenBreaksLinkToNextHop(), ns3::dsr::DsrRouting::SendRerrWhenBreaksLinkToNextHop(), ns3::aodv::RoutingProtocol::SendRerrWhenNoRouteToForward(), ns3::Icmpv6L4Protocol::SendRS(), ns3::TcpSocketBase::SendRST(), ns3::LteUePhy::SendSrs(), ns3::LteEnbRrc::SendSystemInformation(), ns3::olsr::RoutingProtocol::SendTc(), ns3::Ipv4RawSocketImpl::SendTo(), ns3::UdpSocketImpl::SendTo(), ns3::NscTcpSocketImpl::SendTo(), ns3::PacketSocket::SendTo(), ns3::Ipv6RawSocketImpl::SendTo(), ns3::Socket::SendTo(), ns3::EpcEnbApplication::SendToLteSocket(), ns3::EpcSgwPgwApplication::SendToS1uSocket(), ns3::EpcEnbApplication::SendToS1uSocket(), ns3::EpcSgwPgwApplication::SendToTunDevice(), ns3::dsdv::RoutingProtocol::SendTriggeredUpdate(), ns3::UeManager::SendUeContextRelease(), ns3::dsr::DsrRouting::SendUnreachError(), ns3::Ipv4L3Protocol::SendWithHeader(), ns3::RttEstimator::SentSeq(), ns3::SequentialRandomVariable::SequentialRandomVariable(), ns3::SequentialVariable::SequentialVariable(), ns3::SequentialVariableImpl::SequentialVariableImpl(), ns3::FlowIdTag::Serialize(), ns3::AmsduSubframeHeader::Serialize(), ns3::LlcSnapHeader::Serialize(), ns3::CtrlBAckRequestHeader::Serialize(), ns3::Icmpv4Header::Serialize(), ns3::ArpHeader::Serialize(), ns3::SeqTsHeader::Serialize(), ns3::Ipv4PacketInfoTag::Serialize(), ns3::RadiotapHeader::Serialize(), ns3::Icmpv4Echo::Serialize(), ns3::Ipv4Address::Serialize(), ns3::EthernetTrailer::Serialize(), ns3::Ipv6Address::Serialize(), ns3::EthernetHeader::Serialize(), ns3::CtrlBAckResponseHeader::Serialize(), ns3::Icmpv4DestinationUnreachable::Serialize(), ns3::NixVector::Serialize(), ns3::Icmpv4TimeExceeded::Serialize(), ns3::PbbTlvBlock::Serialize(), ns3::Icmpv6Header::Serialize(), ns3::Address::Serialize(), ns3::Ipv4Header::Serialize(), ns3::Icmpv6OptionHeader::Serialize(), ns3::PbbAddressTlvBlock::Serialize(), ns3::Icmpv6NS::Serialize(), ns3::Buffer::Serialize(), ns3::Icmpv6NA::Serialize(), ns3::PbbPacket::Serialize(), ns3::Icmpv6RA::Serialize(), ns3::Icmpv6RS::Serialize(), ns3::SocketAddressTag::Serialize(), ns3::SocketIpTtlTag::Serialize(), ns3::Icmpv6Redirection::Serialize(), ns3::SocketSetDontFragmentTag::Serialize(), ns3::PbbMessage::Serialize(), ns3::Icmpv6Echo::Serialize(), ns3::Icmpv6DestinationUnreachable::Serialize(), ns3::Icmpv6TooBig::Serialize(), ns3::Icmpv6TimeExceeded::Serialize(), ns3::Icmpv6ParameterError::Serialize(), ns3::PbbAddressBlock::Serialize(), ns3::Icmpv6OptionMtu::Serialize(), ns3::Icmpv6OptionPrefixInformation::Serialize(), ns3::PbbTlv::Serialize(), ns3::Icmpv6OptionLinkLayerAddress::Serialize(), ns3::Icmpv6OptionRedirected::Serialize(), ns3::EnumValue::SerializeToString(), ns3::BooleanValue::SerializeToString(), ns3::PointerValue::SerializeToString(), ns3::ObjectPtrContainerValue::SerializeToString(), ns3::EmptyAttributeValue::SerializeToString(), ns3::CallbackValue::SerializeToString(), ns3::ObjectFactory::Set(), ns3::Ipv4Address::Set(), ns3::Ipv6Address::Set(), ns3::ObjectPtrContainerAccessor::Set(), ns3::Config::MatchContainer::Set(), ns3::Ipv4Mask::Set(), ns3::Config::Set(), ns3::Socket::SetAcceptCallback(), ns3::RegularWifiMac::SetAckTimeout(), ns3::AdhocWifiMac::SetAddress(), ns3::LteNetDevice::SetAddress(), ns3::SimpleNetDevice::SetAddress(), ns3::ApWifiMac::SetAddress(), ns3::NonCommunicatingNetDevice::SetAddress(), ns3::Ipv6InterfaceAddress::SetAddress(), ns3::RegularWifiMac::SetAddress(), ns3::EmuNetDevice::SetAddress(), ns3::AlohaNoackNetDevice::SetAddress(), ns3::TapBridge::SetAddress(), ns3::Icmpv6OptionLinkLayerAddress::SetAddress(), ns3::GlobalRoutingLSA::SetAdvertisingRouter(), ns3::Ipv4RawSocketImpl::SetAllowBroadcast(), ns3::PacketSocket::SetAllowBroadcast(), ns3::RvBatteryModel::SetAlpha(), ns3::SpectrumAnalyzer::SetAntenna(), ns3::WaveformGenerator::SetAntenna(), ns3::HalfDuplexIdealPhy::SetAntenna(), ns3::LteSpectrumPhy::SetAntenna(), ns3::RadiotapHeader::SetAntennaNoisePower(), ns3::RadiotapHeader::SetAntennaSignalPower(), ns3::RandomVariableStream::SetAntithetic(), ns3::ArpCache::SetArpRequestCallback(), ns3::StaWifiMac::SetAssocRequestTimeout(), ns3::FdNetDeviceHelper::SetAttribute(), ns3::ObjectBase::SetAttribute(), ns3::ObjectBase::SetAttributeFailSafe(), ns3::TypeId::SetAttributeInitialValue(), ns3::RadvdPrefix::SetAutonomousFlag(), ns3::CsmaNetDevice::SetBackoffParams(), ns3::Ipv6AddressHelper::SetBase(), ns3::Ipv6Interface::SetBaseReachableTime(), ns3::MeshWifiInterfaceMac::SetBeaconGeneration(), ns3::MeshWifiInterfaceMac::SetBeaconInterval(), ns3::ApWifiMac::SetBeaconInterval(), ns3::RvBatteryModel::SetBeta(), ns3::BlockAckManager::SetBlockAckThreshold(), ns3::BlockAckManager::SetBlockAckType(), ns3::Building::SetBoundaries(), ns3::TapBridge::SetBridgedNetDevice(), ns3::RegularWifiMac::SetBssid(), ns3::GridBuildingAllocator::SetBuildingAttribute(), ns3::Building::SetBuildingType(), ns3::BurstErrorModel::SetBurstRate(), ns3::dsr::RouteCache::SetCacheType(), ns3::LteStatsCalculator::SetCellIdPath(), ns3::WifiRadioEnergyModelPhyListener::SetChangeStateCallback(), ns3::SpectrumAnalyzerHelper::SetChannel(), ns3::SpectrumAnalyzer::SetChannel(), ns3::NonCommunicatingNetDevice::SetChannel(), ns3::HalfDuplexIdealPhy::SetChannel(), ns3::AlohaNoackNetDevice::SetChannel(), ns3::LteSpectrumPhy::SetChannel(), ns3::RadiotapHeader::SetChannelFrequencyAndFlags(), ns3::Icmpv6Header::SetChecksum(), ns3::Socket::SetCloseCallbacks(), ns3::Icmpv6Header::SetCode(), ns3::SystemCondition::SetCondition(), ns3::Synchronizer::SetCondition(), ns3::Socket::SetConnectCallback(), ns3::ConstantVariable::SetConstant(), ns3::RegularWifiMac::SetCtsTimeout(), ns3::Ipv6Interface::SetCurHopLimit(), ns3::RadvdInterface::SetCurHopLimit(), ns3::Icmpv6RA::SetCurHopLimit(), ns3::SimpleDeviceEnergyModel::SetCurrentA(), ns3::RttEstimator::SetCurrentEstimate(), ns3::RvBatteryModel::SetCutoffVoltage(), ns3::TestCase::SetDataDir(), ns3::EmuNetDevice::SetDataRate(), ns3::Socket::SetDataSentCallback(), ns3::UdpEchoClient::SetDataSize(), ns3::Config::SetDefault(), ns3::Config::SetDefaultFailSafe(), ns3::RadvdInterface::SetDefaultLifeTime(), ns3::Ipv6StaticRouting::SetDefaultMulticastRoute(), ns3::Ipv4StaticRouting::SetDefaultMulticastRoute(), ns3::RadvdInterface::SetDefaultPreference(), ns3::Ipv6StaticRouting::SetDefaultRoute(), ns3::Ipv4StaticRouting::SetDefaultRoute(), ns3::Ipv6L3Protocol::SetDefaultTclass(), ns3::Ipv6L3Protocol::SetDefaultTtl(), ns3::Ipv4L3Protocol::SetDefaultTtl(), ns3::Timer::SetDelay(), ns3::Ipv4Route::SetDestination(), ns3::EthernetHeader::SetDestination(), ns3::Ipv4Header::SetDestination(), ns3::Icmpv6Redirection::SetDestination(), ns3::SpectrumAnalyzer::SetDevice(), ns3::RemSpectrumPhy::SetDevice(), ns3::ArpCache::SetDevice(), ns3::LtePhy::SetDevice(), ns3::Ipv6Interface::SetDevice(), ns3::HalfDuplexIdealPhy::SetDevice(), ns3::NdiscCache::SetDevice(), ns3::LteSpectrumPhy::SetDevice(), ns3::SpectrumAnalyzerHelper::SetDeviceAttribute(), ns3::SPFVertex::SetDistanceFromRoot(), ns3::Ipv4Header::SetDontFragment(), ns3::Ipv4Interface::SetDown(), ns3::Ipv4L3Protocol::SetDown(), ns3::Ipv6L3Protocol::SetDown(), ns3::LtePhy::SetDownlinkChannel(), ns3::LteEnbPhy::SetDownlinkSubChannels(), ns3::Icmpv4L4Protocol::SetDownTarget(), ns3::UdpL4Protocol::SetDownTarget(), ns3::Icmpv6L4Protocol::SetDownTarget(), ns3::Ipv4Header::SetDscp(), ns3::Ipv4Header::SetEcn(), ns3::RegularWifiMac::SetEifsNoDifs(), ns3::DcfManager::SetEifsNoDifs(), ns3::LteHelper::SetEnbAntennaModelAttribute(), ns3::LteHelper::SetEnbAntennaModelType(), ns3::LteHelper::SetEnbDeviceAttribute(), ns3::FdNetDevice::SetEncapsulationMode(), ns3::CsmaNetDevice::SetEncapsulationMode(), ns3::EmuNetDevice::SetEncapsulationMode(), ns3::AcousticModemEnergyModel::SetEnergyDepletionCallback(), ns3::WifiRadioEnergyModel::SetEnergyDepletionCallback(), ns3::UanPhyGen::SetEnergyModelCallback(), ns3::SimpleDeviceEnergyModel::SetEnergySource(), ns3::AcousticModemEnergyModel::SetEnergySource(), ns3::WifiRadioEnergyModel::SetEnergySource(), ns3::BasicEnergySource::SetEnergyUpdateInterval(), ns3::LiIonEnergySource::SetEnergyUpdateInterval(), ns3::aodv::RoutingTable::SetEntryState(), ns3::LteHelper::SetEpcHelper(), ns3::LteEnbRrc::SetEpcX2SapProvider(), ns3::EpcX2::SetEpcX2SapUser(), ns3::SpectrumInterference::SetErrorModel(), ns3::Building::SetExtWallsType(), ns3::LteHelper::SetFadingModel(), ns3::EthernetTrailer::SetFcs(), ns3::UdpEchoClient::SetFill(), ns3::Icmpv6RA::SetFlagH(), ns3::Icmpv6RA::SetFlagM(), ns3::Icmpv6NA::SetFlagO(), ns3::Icmpv6RA::SetFlagO(), ns3::Icmpv6NA::SetFlagR(), ns3::Icmpv6NA::SetFlagS(), ns3::Icmpv6RA::SetFlags(), ns3::Icmpv6OptionPrefixInformation::SetFlags(), ns3::Ipv4Interface::SetForwarding(), ns3::Ipv6Interface::SetForwarding(), ns3::Ipv4L3Protocol::SetForwarding(), ns3::Ipv6L3Protocol::SetForwarding(), ns3::RegularWifiMac::SetForwardUpCallback(), ns3::Ipv4Header::SetFragmentOffset(), ns3::RadiotapHeader::SetFrameFlags(), ns3::Ipv4Route::SetGateway(), ns3::HalfDuplexIdealPhy::SetGenericPhyRxEndErrorCallback(), ns3::HalfDuplexIdealPhy::SetGenericPhyRxEndOkCallback(), ns3::HalfDuplexIdealPhy::SetGenericPhyRxStartCallback(), ns3::HalfDuplexIdealPhy::SetGenericPhyTxEndCallback(), ns3::AlohaNoackNetDevice::SetGenericPhyTxStartCallback(), ns3::Config::SetGlobal(), ns3::Config::SetGlobalFailSafe(), ns3::Ipv4MulticastRoute::SetGroup(), ns3::TypeId::SetGroupName(), ns3::TcpTxBuffer::SetHeadSequence(), ns3::RadvdInterface::SetHomeAgentFlag(), ns3::RadvdInterface::SetHomeAgentInfo(), ns3::RadvdInterface::SetHomeAgentLifeTime(), ns3::RadvdInterface::SetHomeAgentPreference(), ns3::PbbMessage::SetHopCount(), ns3::PbbMessage::SetHopLimit(), ns3::Icmpv6Echo::SetId(), ns3::Ipv4Header::SetIdentification(), ns3::AcousticModemEnergyModel::SetIdlePowerW(), ns3::LteNetDevice::SetIfIndex(), ns3::SimpleNetDevice::SetIfIndex(), ns3::NonCommunicatingNetDevice::SetIfIndex(), ns3::AlohaNoackNetDevice::SetIfIndex(), ns3::CsmaNetDevice::SetIfIndex(), ns3::Simulator::SetImplementation(), ns3::LteUeRrc::SetImsi(), ns3::LteStatsCalculator::SetImsiPath(), ns3::PbbAddressTlv::SetIndexStart(), ns3::PbbAddressTlv::SetIndexStop(), ns3::BuildingsMobilityModel::SetIndoor(), ns3::BasicEnergySource::SetInitialEnergy(), ns3::LiIonEnergySource::SetInitialEnergy(), ns3::LiIonEnergySource::SetInitialSupplyVoltage(), ns3::CsmaNetDevice::SetInterframeGap(), ns3::RadvdInterface::SetIntervalOpt(), ns3::Ipv6L3Protocol::SetIpForward(), ns3::InetSocketAddress::SetIpv4(), ns3::Ipv4StaticRouting::SetIpv4(), ns3::Ipv4ListRouting::SetIpv4(), ns3::Ipv4GlobalRouting::SetIpv4(), ns3::ArpCache::Entry::SetIpv4Address(), ns3::Inet6SocketAddress::SetIpv6(), ns3::Ipv6ListRouting::SetIpv6(), ns3::Ipv6StaticRouting::SetIpv6(), ns3::NdiscCache::Entry::SetIpv6Address(), ns3::Icmpv6NS::SetIpv6Target(), ns3::Icmpv6NA::SetIpv6Target(), ns3::Ipv4Header::SetLastFragment(), ns3::LtePdcp::SetLcId(), ns3::LteRlc::SetLcId(), ns3::Icmpv6OptionHeader::SetLength(), ns3::EthernetHeader::SetLengthType(), ns3::Icmpv6RA::SetLifeTime(), ns3::GlobalRoutingLinkRecord::SetLinkData(), ns3::RegularWifiMac::SetLinkDownCallback(), ns3::GlobalRoutingLinkRecord::SetLinkId(), ns3::RadvdInterface::SetLinkMtu(), ns3::GlobalRoutingLSA::SetLinkStateId(), ns3::GlobalRoutingLinkRecord::SetLinkType(), ns3::AdhocWifiMac::SetLinkUpCallback(), ns3::ApWifiMac::SetLinkUpCallback(), ns3::MeshWifiInterfaceMac::SetLinkUpCallback(), ns3::RegularWifiMac::SetLinkUpCallback(), ns3::ListErrorModel::SetList(), ns3::ReceiveListErrorModel::SetList(), ns3::Ping6::SetLocal(), ns3::SPFVertex::SetLSA(), ns3::GlobalRoutingLSA::SetLSType(), ns3::LteEnbRrc::SetLteEnbCmacSapProvider(), ns3::LteEnbRrc::SetLteEnbCphySapProvider(), ns3::LteEnbPhy::SetLteEnbCphySapUser(), ns3::LteEnbRrc::SetLteEnbRrcSapUser(), ns3::LteHexGridEnbTopologyHelper::SetLteHelper(), ns3::LteRlc::SetLteMacSapProvider(), ns3::LteUeRrc::SetLteMacSapProvider(), ns3::LteEnbRrc::SetLteMacSapProvider(), ns3::LtePdcp::SetLtePdcpSapUser(), ns3::LteSpectrumPhy::SetLtePhyDlHarqFeedbackCallback(), ns3::LteSpectrumPhy::SetLtePhyRxCtrlEndErrorCallback(), ns3::LteSpectrumPhy::SetLtePhyRxCtrlEndOkCallback(), ns3::LteSpectrumPhy::SetLtePhyRxDataEndErrorCallback(), ns3::LteSpectrumPhy::SetLtePhyRxDataEndOkCallback(), ns3::LteSpectrumPhy::SetLtePhyTxEndCallback(), ns3::LteSpectrumPhy::SetLtePhyUlHarqFeedbackCallback(), ns3::LtePdcp::SetLteRlcSapProvider(), ns3::LteRlc::SetLteRlcSapUser(), ns3::LteUeRrc::SetLteUeCmacSapProvider(), ns3::LteUeRrc::SetLteUeCphySapProvider(), ns3::LteUePhy::SetLteUeCphySapUser(), ns3::LteUePhy::SetLteUePhySapUser(), ns3::LteUeRrc::SetLteUeRrcSapUser(), ns3::NdiscCache::Entry::SetMacAddress(), ns3::LteEnbPhy::SetMacChDelay(), ns3::RadvdInterface::SetManagedFlag(), ns3::BulkSendApplication::SetMaxBytes(), ns3::OnOffApplication::SetMaxBytes(), ns3::StaWifiMac::SetMaxMissedBeacons(), ns3::BlockAckManager::SetMaxPacketDelay(), ns3::UdpTraceClient::SetMaxPacketSize(), ns3::RadvdInterface::SetMaxRtrAdvInterval(), ns3::Ipv4Header::SetMayFragment(), ns3::Ipv4Interface::SetMetric(), ns3::Ipv6Interface::SetMetric(), ns3::GlobalRoutingLinkRecord::SetMetric(), ns3::Ipv4L3Protocol::SetMetric(), ns3::Ipv6L3Protocol::SetMetric(), ns3::AcousticModemEnergyModel::SetMicroModemState(), ns3::RadvdInterface::SetMinDelayBetweenRAs(), ns3::RttEstimator::SetMinRto(), ns3::RadvdInterface::SetMinRtrAdvInterval(), ns3::SpectrumAnalyzer::SetMobility(), ns3::RemSpectrumPhy::SetMobility(), ns3::HalfDuplexIdealPhy::SetMobility(), ns3::LteSpectrumPhy::SetMobility(), ns3::RadvdInterface::SetMobRtrSupportFlag(), ns3::DropTailQueue::SetMode(), ns3::TapBridge::SetMode(), ns3::Ipv4Header::SetMoreFragments(), ns3::LteNetDevice::SetMtu(), ns3::SimpleNetDevice::SetMtu(), ns3::NonCommunicatingNetDevice::SetMtu(), ns3::AlohaNoackNetDevice::SetMtu(), ns3::PointToPointNetDevice::SetMtu(), ns3::CsmaNetDevice::SetMtu(), ns3::Icmpv6TooBig::SetMtu(), ns3::Icmpv6OptionMtu::SetMtu(), ns3::PbbAddressTlv::SetMultivalue(), ns3::RadvdPrefix::SetNetwork(), ns3::GlobalRoutingLSA::SetNetworkLSANetworkMask(), ns3::Building::SetNFloors(), ns3::SimpleDeviceEnergyModel::SetNode(), ns3::Ipv6Option::SetNode(), ns3::Ipv6Extension::SetNode(), ns3::AcousticModemEnergyModel::SetNode(), ns3::Ipv6Interface::SetNode(), ns3::LteNetDevice::SetNode(), ns3::SimpleNetDevice::SetNode(), ns3::Ipv6RawSocketImpl::SetNode(), ns3::Ipv6L3Protocol::SetNode(), ns3::dsr::DsrOptions::SetNode(), ns3::Application::SetNode(), ns3::NonCommunicatingNetDevice::SetNode(), ns3::EnergySource::SetNode(), ns3::Icmpv6L4Protocol::SetNode(), ns3::AlohaNoackNetDevice::SetNode(), ns3::CsmaNetDevice::SetNode(), ns3::GlobalRoutingLSA::SetNode(), ns3::LteUePhy::SetNoiseFigure(), ns3::LteEnbPhy::SetNoiseFigure(), ns3::AdhocAlohaNoackIdealPhyHelper::SetNoisePowerSpectralDensity(), ns3::SpectrumInterference::SetNoisePowerSpectralDensity(), ns3::LteInterference::SetNoisePowerSpectralDensity(), ns3::HalfDuplexIdealPhy::SetNoisePowerSpectralDensity(), ns3::LteSpectrumPhy::SetNoisePowerSpectralDensity(), ns3::Building::SetNRoomsX(), ns3::Building::SetNRoomsY(), ns3::Ipv6InterfaceAddress::SetNsDadUid(), ns3::Ipv6Interface::SetNsDadUid(), ns3::RvBatteryModel::SetNumOfTerms(), ns3::RadvdPrefix::SetOnLinkFlag(), ns3::RvBatteryModel::SetOpenCircuitVoltage(), ns3::Synchronizer::SetOrigin(), ns3::Ipv4MulticastRoute::SetOrigin(), ns3::PbbMessage::SetOriginatorAddress(), ns3::RadvdInterface::SetOtherConfigFlag(), ns3::BuildingsMobilityModel::SetOutdoor(), ns3::Ipv4Route::SetOutputDevice(), ns3::Ipv4MulticastRoute::SetOutputTtl(), ns3::Icmpv6DestinationUnreachable::SetPacket(), ns3::Icmpv6TooBig::SetPacket(), ns3::Icmpv6TimeExceeded::SetPacket(), ns3::Icmpv6ParameterError::SetPacket(), ns3::Icmpv6OptionRedirected::SetPacket(), ns3::UdpServer::SetPacketWindowSize(), ns3::Ipv4MulticastRoute::SetParent(), ns3::TypeId::SetParent(), ns3::SPFVertex::SetParent(), ns3::LteHelper::SetPathlossModelAttribute(), ns3::LteHelper::SetPathlossModelType(), ns3::Ipv4Header::SetPayloadSize(), ns3::NonCommunicatingNetDevice::SetPhy(), ns3::AlohaNoackNetDevice::SetPhy(), ns3::SpectrumAnalyzerHelper::SetPhyAttribute(), ns3::RegularWifiMac::SetPifs(), ns3::Inet6SocketAddress::SetPort(), ns3::InetSocketAddress::SetPort(), ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice(), ns3::EthernetHeader::SetPreambleSfd(), ns3::RadvdPrefix::SetPreferredLifeTime(), ns3::Icmpv6OptionPrefixInformation::SetPreferredTime(), ns3::Icmpv6OptionPrefixInformation::SetPrefix(), ns3::RadvdPrefix::SetPrefixLength(), ns3::Icmpv6OptionPrefixInformation::SetPrefixLength(), ns3::StaWifiMac::SetProbeRequestTimeout(), ns3::LteNetDevice::SetPromiscReceiveCallback(), ns3::SimpleNetDevice::SetPromiscReceiveCallback(), ns3::NonCommunicatingNetDevice::SetPromiscReceiveCallback(), ns3::AlohaNoackNetDevice::SetPromiscReceiveCallback(), ns3::CsmaNetDevice::SetPromiscReceiveCallback(), ns3::SingleModelSpectrumChannel::SetPropagationDelayModel(), ns3::Ipv4Header::SetProtocol(), ns3::Icmpv6ParameterError::SetPtr(), ns3::RegularWifiMac::SetQosSupported(), ns3::AlohaNoackNetDevice::SetQueue(), ns3::EmuNetDevice::SetQueue(), ns3::PointToPointNetDevice::SetQueue(), ns3::CsmaNetDevice::SetQueue(), ns3::BlockAckManager::SetQueue(), ns3::BurstErrorModel::SetRandomBurstSize(), ns3::MeshWifiInterfaceMac::SetRandomStartDelay(), ns3::RateErrorModel::SetRandomVariable(), ns3::BurstErrorModel::SetRandomVariable(), ns3::HalfDuplexIdealPhy::SetRate(), ns3::RadiotapHeader::SetRate(), ns3::RateErrorModel::SetRate(), ns3::Ipv6Interface::SetReachableTime(), ns3::RadvdInterface::SetReachableTime(), ns3::Icmpv6RA::SetReachableTime(), ns3::LteNetDevice::SetReceiveCallback(), ns3::SimpleNetDevice::SetReceiveCallback(), ns3::NonCommunicatingNetDevice::SetReceiveCallback(), ns3::AlohaNoackNetDevice::SetReceiveCallback(), ns3::CsmaNetDevice::SetReceiveCallback(), ns3::CsmaNetDevice::SetReceiveEnable(), ns3::SimpleNetDevice::SetReceiveErrorModel(), ns3::PointToPointNetDevice::SetReceiveErrorModel(), ns3::CsmaNetDevice::SetReceiveErrorModel(), ns3::Socket::SetRecvCallback(), ns3::Socket::SetRecvPktInfo(), ns3::UdpEchoClient::SetRemote(), ns3::UdpClient::SetRemote(), ns3::Ping6::SetRemote(), ns3::UdpTraceClient::SetRemote(), ns3::Icmpv6NS::SetReserved(), ns3::Icmpv6NA::SetReserved(), ns3::Icmpv6RS::SetReserved(), ns3::Icmpv6Redirection::SetReserved(), ns3::Icmpv6OptionMtu::SetReserved(), ns3::Icmpv6OptionPrefixInformation::SetReserved(), ns3::Time::SetResolution(), ns3::Icmpv6RA::SetRetransmissionTime(), ns3::Ipv6Interface::SetRetransTimer(), ns3::RadvdInterface::SetRetransTimer(), ns3::LtePdcp::SetRnti(), ns3::LteRlc::SetRnti(), ns3::SPFVertex::SetRootExitDirection(), ns3::dsr::DsrOptions::SetRoute(), ns3::dsr::DsrRouting::SetRoute(), ns3::NdiscCache::Entry::SetRouter(), ns3::RadvdPrefix::SetRouterAddrFlag(), ns3::Ipv4L3Protocol::SetRoutingProtocol(), ns3::Ipv6L3Protocol::SetRoutingProtocol(), ns3::RngSeedManager::SetRun(), ns3::AcousticModemEnergyModel::SetRxPowerW(), ns3::SpectrumAnalyzer::SetRxSpectrumModel(), ns3::RemSpectrumPhy::SetRxSpectrumModel(), ns3::SpectrumAnalyzerHelper::SetRxSpectrumModel(), ns3::RvBatteryModel::SetSamplingInterval(), ns3::DefaultSimulatorImpl::SetScheduler(), ns3::RealtimeSimulatorImpl::SetScheduler(), ns3::Simulator::SetScheduler(), ns3::LteHelper::SetSchedulerAttribute(), ns3::LteHelper::SetSchedulerType(), ns3::Ipv6InterfaceAddress::SetScope(), ns3::RngSeedManager::SetSeed(), ns3::RadvdInterface::SetSendAdvert(), ns3::Socket::SetSendCallback(), ns3::CsmaNetDevice::SetSendEnable(), ns3::Ipv6L3Protocol::SetSendIcmpv6Redirect(), ns3::SeqTsHeader::SetSeq(), ns3::Icmpv6Echo::SetSeq(), ns3::PbbPacket::SetSequenceNumber(), ns3::PbbMessage::SetSequenceNumber(), ns3::RegularWifiMac::SetSifs(), ns3::DcfManager::SetSifs(), ns3::AcousticModemEnergyModel::SetSleepPowerW(), ns3::RegularWifiMac::SetSlot(), ns3::DcfManager::SetSlot(), ns3::Ipv4Route::SetSource(), ns3::EthernetHeader::SetSource(), ns3::Ipv4Header::SetSource(), ns3::RadvdInterface::SetSourceLLAddress(), ns3::LteHelper::SetSpectrumChannelType(), ns3::UeManager::SetSrsConfigurationIndex(), ns3::LteEnbRrc::SetSrsPeriodicity(), ns3::RegularWifiMac::SetSsid(), ns3::TcpWestwood::SetSSThresh(), ns3::Application::SetStartTime(), ns3::Ipv6InterfaceAddress::SetState(), ns3::Ipv6Interface::SetState(), ns3::GlobalRoutingLSA::SetStatus(), ns3::Application::SetStopTime(), ns3::RandomVariableStream::SetStream(), ns3::LteUePhy::SetSubChannelsForReception(), ns3::LteUePhy::SetSubChannelsForTransmission(), ns3::BasicEnergySource::SetSupplyVoltage(), ns3::Icmpv6Redirection::SetTarget(), ns3::LteUeNetDevice::SetTargetEnb(), ns3::Ipv4Header::SetTos(), ns3::UdpTraceClient::SetTraceFile(), ns3::LteSpectrumPhy::SetTransmissionMode(), ns3::RadiotapHeader::SetTsft(), ns3::LtePhy::SetTti(), ns3::Ipv4Header::SetTtl(), ns3::DcaTxop::SetTxFailedCallback(), ns3::DcaTxop::SetTxOkCallback(), ns3::LteEnbPhy::SetTxPower(), ns3::LteUePhy::SetTxPower(), ns3::AdhocAlohaNoackIdealPhyHelper::SetTxPowerSpectralDensity(), ns3::WaveformGeneratorHelper::SetTxPowerSpectralDensity(), ns3::WaveformGenerator::SetTxPowerSpectralDensity(), ns3::HalfDuplexIdealPhy::SetTxPowerSpectralDensity(), ns3::LteSpectrumPhy::SetTxPowerSpectralDensity(), ns3::AcousticModemEnergyModel::SetTxPowerW(), ns3::Icmpv6Header::SetType(), ns3::Icmpv6OptionHeader::SetType(), ns3::PbbMessage::SetType(), ns3::PbbTlv::SetType(), ns3::PbbTlv::SetTypeExt(), ns3::ObjectFactory::SetTypeId(), ns3::Object::SetTypeId(), ns3::RegularWifiMac::SetTypeOfStation(), ns3::EpcSgwPgwApplication::SetUeAddress(), ns3::LteHelper::SetUeAntennaModelAttribute(), ns3::LteHelper::SetUeAntennaModelType(), ns3::TypeId::SetUid(), ns3::RateErrorModel::SetUnit(), ns3::NdiscCache::SetUnresQlen(), ns3::Ipv4Interface::SetUp(), ns3::Ipv4L3Protocol::SetUp(), ns3::Ipv6L3Protocol::SetUp(), ns3::TcpSocketBase::SetupCallback(), ns3::UeManager::SetupDataRadioBearer(), ns3::RegularWifiMac::SetupEdcaQueue(), ns3::TcpSocketBase::SetupEndpoint(), ns3::LtePhy::SetUplinkChannel(), ns3::LteUeRrc::SetUseRlcSm(), ns3::RadvdPrefix::SetValidLifeTime(), ns3::Icmpv6OptionPrefixInformation::SetValidTime(), ns3::GlobalValue::SetValue(), ns3::PbbTlv::SetValue(), ns3::DeterministicRandomVariable::SetValueArray(), ns3::SPFVertex::SetVertexId(), ns3::SPFVertex::SetVertexProcessed(), ns3::SPFVertex::SetVertexType(), ns3::RegularWifiMac::SetWifiPhy(), ns3::WifiRadioEnergyModel::SetWifiRadioState(), ns3::ApWifiMac::SetWifiRemoteStationManager(), ns3::RegularWifiMac::SetWifiRemoteStationManager(), ns3::Ipv4RawSocketImpl::ShutdownRecv(), ns3::TcpSocketBase::ShutdownRecv(), ns3::PacketSocket::ShutdownRecv(), ns3::Ipv4RawSocketImpl::ShutdownSend(), ns3::TcpSocketBase::ShutdownSend(), ns3::PacketSocket::ShutdownSend(), ns3::SystemCondition::Signal(), ns3::Synchronizer::Signal(), ns3::PbbTlvBlock::Size(), ns3::CandidateQueue::Size(), ns3::PbbAddressTlvBlock::Size(), ns3::PendingData::SizeFromOffset(), ns3::PendingData::SizeFromSeq(), ns3::TcpTxBuffer::SizeFromSequence(), ns3::Ipv6StaticRouting::SourceAddressSelection(), ns3::SpectrumConverter::SpectrumConverter(), ns3::SpectrumSignalParameters::SpectrumSignalParameters(), ns3::SPFVertex::SPFVertex(), ns3::SystemPath::Split(), ns3::SystemWallClockMs::Start(), ns3::FdReader::Start(), ns3::LteTestRrc::Start(), ns3::SpectrumAnalyzer::Start(), ns3::EmuNetDevice::Start(), ns3::WaveformGenerator::Start(), ns3::LteTestPdcp::Start(), ns3::FdNetDevice::Start(), ns3::TapBridge::Start(), ns3::aodv::RoutingProtocol::Start(), ns3::StaWifiMac::StartActiveAssociation(), ns3::V4Ping::StartApplication(), ns3::UdpEchoServer::StartApplication(), ns3::UdpClient::StartApplication(), ns3::UdpServer::StartApplication(), ns3::BulkSendApplication::StartApplication(), ns3::PacketSink::StartApplication(), ns3::Radvd::StartApplication(), ns3::Application::StartApplication(), ns3::UdpTraceClient::StartApplication(), ns3::OnOffApplication::StartApplication(), ns3::UdpEchoClient::StartApplication(), ns3::ApWifiMac::StartBeaconing(), ns3::UeManager::StartDataRadioBearers(), ns3::FdNetDevice::StartDevice(), ns3::LteEnbPhy::StartFrame(), ns3::SpectrumInterference::StartRx(), ns3::SpectrumAnalyzer::StartRx(), ns3::WaveformGenerator::StartRx(), ns3::RemSpectrumPhy::StartRx(), ns3::SingleModelSpectrumChannel::StartRx(), ns3::LteInterference::StartRx(), ns3::HalfDuplexIdealPhy::StartRx(), ns3::MultiModelSpectrumChannel::StartRx(), ns3::LteSpectrumPhy::StartRx(), ns3::LteEnbPhy::StartSubFrame(), ns3::AlohaNoackNetDevice::StartTransmission(), ns3::MacLow::StartTransmission(), ns3::SingleModelSpectrumChannel::StartTx(), ns3::MultiModelSpectrumChannel::StartTx(), ns3::HalfDuplexIdealPhy::StartTx(), ns3::LteSpectrumPhy::StartTxDataFrame(), ns3::LteSpectrumPhy::StartTxDlCtrlFrame(), ns3::LteSpectrumPhy::StartTxUlSrsFrame(), ns3::ArpCache::StartWaitReplyTimer(), ns3::DefaultSimulatorImpl::Stop(), ns3::RealtimeSimulatorImpl::Stop(), ns3::FdReader::Stop(), ns3::EmuNetDevice::Stop(), ns3::WaveformGenerator::Stop(), ns3::Simulator::Stop(), ns3::FdNetDevice::Stop(), ns3::TapBridge::Stop(), ns3::V4Ping::StopApplication(), ns3::UdpEchoServer::StopApplication(), ns3::UdpClient::StopApplication(), ns3::UdpServer::StopApplication(), ns3::BulkSendApplication::StopApplication(), ns3::PacketSink::StopApplication(), ns3::Radvd::StopApplication(), ns3::UdpTraceClient::StopApplication(), ns3::Application::StopApplication(), ns3::OnOffApplication::StopApplication(), ns3::UdpEchoClient::StopApplication(), ns3::FdNetDevice::StopDevice(), ns3::BlockAckManager::StorePacket(), ns3::LteUePhy::SubframeIndication(), ns3::LteNetDevice::SupportsSendFrom(), ns3::SimpleNetDevice::SupportsSendFrom(), ns3::NonCommunicatingNetDevice::SupportsSendFrom(), ns3::AlohaNoackNetDevice::SupportsSendFrom(), ns3::Timer::Suspend(), ns3::MeshWifiInterfaceMac::SwitchFrequencyChannel(), ns3::BlockAckManager::SwitchToBlockAckIfNeeded(), ns3::WifiRadioEnergyModelPhyListener::SwitchToIdle(), ns3::UeManager::SwitchToState(), ns3::Synchronizer::Synchronize(), ns3::TcpNewReno::TcpNewReno(), ns3::TcpReno::TcpReno(), ns3::TcpRfc793::TcpRfc793(), ns3::TcpSocketBase::TcpSocketBase(), ns3::TcpTahoe::TcpTahoe(), ns3::BlockAckManager::TearDownBlockAck(), ns3::TestCase::TestCase(), ns3::TestDoubleIsEqual(), ns3::TestSuite::TestSuite(), ns3::Time::Time(), ns3::SystemCondition::TimedWait(), ns3::Timer::Timer(), ns3::Synchronizer::TimeStepToNanosecond(), ns3::PbbPacket::TlvBack(), ns3::PbbMessage::TlvBack(), ns3::PbbAddressBlock::TlvBack(), ns3::PbbPacket::TlvBegin(), ns3::PbbMessage::TlvBegin(), ns3::PbbAddressBlock::TlvBegin(), ns3::PbbPacket::TlvClear(), ns3::PbbMessage::TlvClear(), ns3::PbbAddressBlock::TlvClear(), ns3::PbbPacket::TlvEmpty(), ns3::PbbMessage::TlvEmpty(), ns3::PbbAddressBlock::TlvEmpty(), ns3::PbbPacket::TlvEnd(), ns3::PbbMessage::TlvEnd(), ns3::PbbAddressBlock::TlvEnd(), ns3::PbbMessage::TlvErase(), ns3::PbbAddressBlock::TlvErase(), ns3::PbbPacket::TlvFront(), ns3::PbbMessage::TlvFront(), ns3::PbbAddressBlock::TlvFront(), ns3::PbbPacket::TlvPopBack(), ns3::PbbMessage::TlvPopBack(), ns3::PbbAddressBlock::TlvPopBack(), ns3::PbbPacket::TlvPopFront(), ns3::PbbMessage::TlvPopFront(), ns3::PbbAddressBlock::TlvPopFront(), ns3::PbbPacket::TlvPushBack(), ns3::PbbMessage::TlvPushBack(), ns3::PbbAddressBlock::TlvPushBack(), ns3::PbbPacket::TlvPushFront(), ns3::PbbMessage::TlvPushFront(), ns3::PbbAddressBlock::TlvPushFront(), ns3::PbbPacket::TlvSize(), ns3::PbbMessage::TlvSize(), ns3::PbbAddressBlock::TlvSize(), ns3::CandidateQueue::Top(), ns3::ObjectBase::TraceConnect(), ns3::ObjectBase::TraceConnectWithoutContext(), ns3::ObjectBase::TraceDisconnect(), ns3::ObjectBase::TraceDisconnectWithoutContext(), ns3::CsmaChannel::TransmitEnd(), ns3::PointToPointRemoteChannel::TransmitStart(), ns3::PointToPointChannel::TransmitStart(), ns3::CsmaChannel::TransmitStart(), ns3::PointToPointNetDevice::TransmitStart(), ns3::TriangularRandomVariable::TriangularRandomVariable(), ns3::TriangularVariable::TriangularVariable(), ns3::TriangularVariableImpl::TriangularVariableImpl(), ns3::AthstatsWifiTraceSink::TxDataFailedTrace(), ns3::AthstatsWifiTraceSink::TxFinalDataFailedTrace(), ns3::AthstatsWifiTraceSink::TxFinalRtsFailedTrace(), ns3::AthstatsWifiTraceSink::TxRtsFailedTrace(), ns3::TypeId::TypeId(), ns3::UdpTraceClient::UdpTraceClient(), ns3::UeManager::UeManager(), ns3::PhyRxStatsCalculator::UlPhyReception(), ns3::PhyTxStatsCalculator::UlPhyTransmission(), ns3::RadioBearerStatsCalculator::UlRxPdu(), ns3::MacStatsCalculator::UlScheduling(), ns3::RadioBearerStatsCalculator::UlTxPdu(), ns3::UniformRandomVariable::UniformRandomVariable(), ns3::UniformVariable::UniformVariable(), ns3::UniformVariableImpl::UniformVariableImpl(), ns3::SystemMutex::Unlock(), ns3::Node::UnregisterDeviceAdditionListener(), ns3::Node::UnregisterProtocolHandler(), ns3::Config::UnregisterRootNamespaceObject(), ns3::FatalImpl::UnregisterStream(), ns3::aodv::RoutingTable::Update(), ns3::BlockAckManager::UpdateAgreement(), ns3::LteUeNetDevice::UpdateConfig(), ns3::LteEnbNetDevice::UpdateConfig(), ns3::LteHarqPhy::UpdateDlHarqProcessStatus(), ns3::BasicEnergySource::UpdateEnergySource(), ns3::RvBatteryModel::UpdateEnergySource(), ns3::LiIonEnergySource::UpdateEnergySource(), ns3::RrFfMacScheduler::UpdateHarqProcessId(), ns3::TtaFfMacScheduler::UpdateHarqProcessId(), ns3::FdMtFfMacScheduler::UpdateHarqProcessId(), ns3::TdMtFfMacScheduler::UpdateHarqProcessId(), ns3::PfFfMacScheduler::UpdateHarqProcessId(), ns3::FdBetFfMacScheduler::UpdateHarqProcessId(), ns3::TdBetFfMacScheduler::UpdateHarqProcessId(), ns3::TdTbfqFfMacScheduler::UpdateHarqProcessId(), ns3::FdTbfqFfMacScheduler::UpdateHarqProcessId(), ns3::PssFfMacScheduler::UpdateHarqProcessId(), ns3::dsr::RouteCache::UpdateNeighbor(), ns3::dsr::RouteCache::UpdateNetGraph(), ns3::DownlinkLteGlobalPathlossDatabase::UpdatePathloss(), ns3::UplinkLteGlobalPathlossDatabase::UpdatePathloss(), ns3::dsr::RouteCache::UpdateRouteEntry(), ns3::aodv::RoutingProtocol::UpdateRouteLifeTime(), ns3::aodv::RoutingProtocol::UpdateRouteToNeighbor(), ns3::LteSpectrumPhy::UpdateSinrPerceived(), ns3::LteHarqPhy::UpdateUlHarqProcessStatus(), ns3::ArpCache::Entry::UpdateWaitReply(), ns3::dsr::RouteCache::UseExtends(), ns3::V4Ping::V4Ping(), ns3::Vector2D::Vector2D(), ns3::Vector3D::Vector3D(), ns3::SystemCondition::Wait(), ns3::WeibullRandomVariable::WeibullRandomVariable(), ns3::WeibullVariable::WeibullVariable(), ns3::WeibullVariableImpl::WeibullVariableImpl(), ns3::TcpNewReno::Window(), ns3::TcpReno::Window(), ns3::TcpTahoe::Window(), ns3::TcpWestwood::Window(), ns3::GlobalRouter::WithdrawRoute(), ns3::TagBuffer::Write(), ns3::PcapFileWrapper::Write(), ns3::PcapFile::Write(), ns3::Buffer::Iterator::Write(), ns3::TagBuffer::WriteDouble(), ns3::Buffer::Iterator::WriteHtolsbU16(), ns3::Buffer::Iterator::WriteHtolsbU32(), ns3::Buffer::Iterator::WriteHtolsbU64(), ns3::Buffer::Iterator::WriteHtonU64(), ns3::Buffer::Iterator::WriteU16(), ns3::Buffer::Iterator::WriteU32(), ns3::TagBuffer::WriteU64(), ns3::Buffer::Iterator::WriteU64(), ns3::ZetaRandomVariable::ZetaRandomVariable(), ns3::ZetaVariable::ZetaVariable(), ns3::ZetaVariableImpl::ZetaVariableImpl(), ns3::ZipfRandomVariable::ZipfRandomVariable(), ns3::ZipfVariable::ZipfVariable(), ns3::ZipfVariableImpl::ZipfVariableImpl(), ns3::Building::~Building(), ns3::CandidateQueue::~CandidateQueue(), ns3::CsmaChannel::~CsmaChannel(), ns3::EpcEnbApplication::~EpcEnbApplication(), ns3::EpcHelper::~EpcHelper(), ns3::EpcMme::~EpcMme(), ns3::EpcSgwPgwApplication::~EpcSgwPgwApplication(), ns3::EpcUeNas::~EpcUeNas(), ns3::EpcX2::~EpcX2(), ns3::FdBetFfMacScheduler::~FdBetFfMacScheduler(), ns3::FdMtFfMacScheduler::~FdMtFfMacScheduler(), ns3::FdNetDevice::~FdNetDevice(), ns3::FdTbfqFfMacScheduler::~FdTbfqFfMacScheduler(), ns3::FfMacScheduler::~FfMacScheduler(), ns3::Ipv4L3Protocol::Fragments::~Fragments(), ns3::GlobalRouteManagerLSDB::~GlobalRouteManagerLSDB(), ns3::GlobalRoutingLinkRecord::~GlobalRoutingLinkRecord(), ns3::GlobalRoutingLSA::~GlobalRoutingLSA(), ns3::Icmpv6DestinationUnreachable::~Icmpv6DestinationUnreachable(), ns3::Icmpv6Echo::~Icmpv6Echo(), ns3::Icmpv6Header::~Icmpv6Header(), ns3::Icmpv6L4Protocol::~Icmpv6L4Protocol(), ns3::Icmpv6NA::~Icmpv6NA(), ns3::Icmpv6NS::~Icmpv6NS(), ns3::Icmpv6OptionHeader::~Icmpv6OptionHeader(), ns3::Icmpv6OptionLinkLayerAddress::~Icmpv6OptionLinkLayerAddress(), ns3::Icmpv6OptionMtu::~Icmpv6OptionMtu(), ns3::Icmpv6OptionPrefixInformation::~Icmpv6OptionPrefixInformation(), ns3::Icmpv6OptionRedirected::~Icmpv6OptionRedirected(), ns3::Icmpv6ParameterError::~Icmpv6ParameterError(), ns3::Icmpv6RA::~Icmpv6RA(), ns3::Icmpv6Redirection::~Icmpv6Redirection(), ns3::Icmpv6RS::~Icmpv6RS(), ns3::Icmpv6TimeExceeded::~Icmpv6TimeExceeded(), ns3::Icmpv6TooBig::~Icmpv6TooBig(), ns3::Ipv6Address::~Ipv6Address(), ns3::Ipv6Prefix::~Ipv6Prefix(), ns3::LteEnbRrc::~LteEnbRrc(), ns3::LteUeRrc::~LteUeRrc(), ns3::MacStatsCalculator::~MacStatsCalculator(), ns3::MeshWifiInterfaceMac::~MeshWifiInterfaceMac(), ns3::NscTcpSocketImpl::~NscTcpSocketImpl(), ns3::PfFfMacScheduler::~PfFfMacScheduler(), ns3::PhyRxStatsCalculator::~PhyRxStatsCalculator(), ns3::PhyStatsCalculator::~PhyStatsCalculator(), ns3::PhyTxStatsCalculator::~PhyTxStatsCalculator(), ns3::PssFfMacScheduler::~PssFfMacScheduler(), ns3::RadioBearerStatsCalculator::~RadioBearerStatsCalculator(), ns3::Radvd::~Radvd(), ns3::RadvdInterface::~RadvdInterface(), ns3::RadvdPrefix::~RadvdPrefix(), ns3::RefCountBase::~RefCountBase(), ns3::RrFfMacScheduler::~RrFfMacScheduler(), ns3::SpectrumSignalParameters::~SpectrumSignalParameters(), ns3::SPFVertex::~SPFVertex(), ns3::TdBetFfMacScheduler::~TdBetFfMacScheduler(), ns3::TdMtFfMacScheduler::~TdMtFfMacScheduler(), ns3::TdTbfqFfMacScheduler::~TdTbfqFfMacScheduler(), and ns3::TtaFfMacScheduler::~TtaFfMacScheduler().

#define NS_LOG_FUNCTION_NOARGS ( )
Value:
do \
{ \
if (g_log.IsEnabled (ns3::LOG_FUNCTION)) \
{ \
NS_LOG_APPEND_TIME_PREFIX; \
NS_LOG_APPEND_NODE_PREFIX; \
NS_LOG_APPEND_CONTEXT; \
std::clog << g_log.Name () << ":" \
<< __FUNCTION__ << "()" << std::endl; \
} \
} \
while (false)

Output the name of the function.

This should be used only in static functions; most member functions should instead use NS_LOG_FUNCTION().

Definition at line 275 of file log.h.

Referenced by ns3::ChannelList::Add(), ns3::Ipv6Interface::AddAddress(), ns3::Ipv6AddressGenerator::AddAllocated(), ns3::BridgeNetDevice::AddBridgePort(), ns3::dsr::DsrOptionField::AddDsrOption(), ns3::PointToPointNetDevice::AddHeader(), ns3::MeshPointDevice::AddInterface(), ns3::TapBridge::AddLinkChangeCallback(), ns3::OptionField::AddOption(), ns3::Mac64Address::Allocate(), ns3::Mac48Address::Allocate(), ns3::Ipv6EndPointDemux::Allocate(), ns3::Ipv6EndPointDemux::AllocateEphemeralPort(), ns3::GlobalRouteManager::AllocateRouterId(), ns3::AsciiTraceHelper::AsciiTraceHelper(), ns3::Ipv4AddressHelper::Assign(), ns3::RandomVariableStreamHelper::AssignStreams(), ns3::ChannelList::Begin(), ns3::NodeList::Begin(), ns3::GlobalValue::Begin(), ns3::UdpSocketImpl::Bind(), ns3::NscTcpSocketImpl::Bind(), ns3::Ipv6RawSocketImpl::Bind(), ns3::UdpSocketImpl::Bind6(), ns3::GlobalRouteManager::BuildGlobalRoutingDatabase(), ns3::Node::ChecksumEnabled(), ns3::olsr::RoutingProtocol::Clear(), ns3::Names::Clear(), ns3::NdiscCache::Entry::ClearWaitingPacket(), ns3::UdpSocketImpl::Close(), ns3::Ipv6RawSocketImpl::Close(), ns3::Ipv4RoutingTableEntry::CreateDefaultRoute(), ns3::Ipv4RoutingTableEntry::CreateHostRouteTo(), ns3::Ipv4MulticastRoutingTableEntry::CreateMulticastRoute(), ns3::Ipv4RoutingTableEntry::CreateNetworkRouteTo(), ns3::Ipv6L3Protocol::CreateRawSocket(), ns3::UdpL4Protocol::CreateSocket(), ns3::EmuNetDevice::CreateSocket(), ns3::TapBridge::CreateTap(), ns3::CsmaChannel::CsmaChannel(), ns3::Ipv6EndPointDemux::DeAllocate(), ns3::GlobalRouteManager::DeleteGlobalRoutes(), ns3::Simulator::Destroy(), ns3::PacketCounterCalculator::DoDispose(), ns3::OmnetDataOutput::DoDispose(), ns3::SqliteDataOutput::DoDispose(), ns3::DataOutputInterface::DoDispose(), ns3::dot11s::HwmpProtocol::DoDispose(), ns3::BuildingListPriv::DoDispose(), ns3::PacketSizeMinMaxAvgTotalCalculator::DoDispose(), ns3::DataCollector::DoDispose(), ns3::EpsBearerTagUdpClient::DoDispose(), ns3::Ping6::DoDispose(), ns3::DataCalculator::DoDispose(), ns3::MeshPointDevice::DoDispose(), ns3::WifiNetDevice::DoDispose(), ns3::BridgeNetDevice::DoDispose(), ns3::Ipv6ListRouting::DoDispose(), ns3::Ipv4NixVectorRouting::DoDispose(), ns3::UdpL4Protocol::DoDispose(), ns3::TcpL4Protocol::DoDispose(), ns3::VirtualNetDevice::DoDispose(), ns3::PointToPointNetDevice::DoDispose(), ns3::TapBridge::DoDispose(), ns3::EmuNetDevice::DoDispose(), ns3::Ipv6Interface::DoDispose(), ns3::Ipv6StaticRouting::DoDispose(), ns3::Ipv6RawSocketImpl::DoDispose(), ns3::Ipv6ExtensionFragment::DoDispose(), ns3::CsmaNetDevice::DoDispose(), ns3::Ipv6L3Protocol::DoDispose(), ns3::NdiscCache::DoDispose(), ns3::dsr::DsrRouting::DoDispose(), ns3::TapBridgeFdReader::DoRead(), ns3::Ipv6Interface::DoSetup(), ns3::dsr::DsrOptionAck::DsrOptionAck(), ns3::dsr::DsrOptionAckReq::DsrOptionAckReq(), ns3::dsr::DsrOptionPad1::DsrOptionPad1(), ns3::dsr::DsrOptionPadn::DsrOptionPadn(), ns3::dsr::DsrOptionRerr::DsrOptionRerr(), ns3::dsr::DsrOptionRrep::DsrOptionRrep(), ns3::dsr::DsrOptionRreq::DsrOptionRreq(), ns3::dsr::DsrOptions::DsrOptions(), ns3::dsr::DsrOptionSR::DsrOptionSR(), ns3::dsr::DsrRouting::DsrRouting(), ns3::Packet::EnableChecking(), ns3::LteHelper::EnableDlMacTraces(), ns3::LteSimpleHelper::EnableDlPdcpTraces(), ns3::LteHelper::EnableDlPhyTraces(), ns3::LteSimpleHelper::EnableDlRlcTraces(), ns3::Packet::EnablePrinting(), ns3::LteHelper::EnableUlMacTraces(), ns3::LteSimpleHelper::EnableUlPdcpTraces(), ns3::LteHelper::EnableUlPhyTraces(), ns3::LteSimpleHelper::EnableUlRlcTraces(), ns3::ChannelList::End(), ns3::NodeList::End(), ns3::GlobalValue::End(), ns3::NdiscCache::Entry::Entry(), ns3::TcpWestwood::EstimateRtt(), ns3::SystemPath::FindSelfDirectory(), ns3::NdiscCache::Flush(), ns3::Ipv4NixVectorRouting::FlushGlobalNixRoutingCache(), ns3::FatalImpl::FlushStreams(), ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::NdiscCache::Entry::FunctionDelayTimeout(), ns3::NdiscCache::Entry::FunctionProbeTimeout(), ns3::NdiscCache::Entry::FunctionReachableTimeout(), ns3::NdiscCache::Entry::FunctionRetransmitTimeout(), ns3::MeshPointDevice::GetAddress(), ns3::BridgeNetDevice::GetAddress(), ns3::Ipv6InterfaceAddress::GetAddress(), ns3::Ipv6AddressGenerator::GetAddress(), ns3::EmuNetDevice::GetAddress(), ns3::TapBridge::GetAddress(), ns3::CsmaNetDevice::GetAddress(), ns3::Ipv6Address::GetAllHostsMulticast(), ns3::Ipv6Address::GetAllNodesMulticast(), ns3::Ipv6Address::GetAllRoutersMulticast(), ns3::Ipv4Address::GetAny(), ns3::Ipv6Address::GetAny(), ns3::Ipv6Interface::GetBaseReachableTime(), ns3::TapBridge::GetBridgedNetDevice(), ns3::BridgeNetDevice::GetBroadcast(), ns3::MeshPointDevice::GetBroadcast(), ns3::Mac48Address::GetBroadcast(), ns3::Ipv4Address::GetBroadcast(), ns3::TapBridge::GetBroadcast(), ns3::CsmaNetDevice::GetBroadcast(), ns3::MeshPointDevice::GetChannel(), ns3::BridgeNetDevice::GetChannel(), ns3::TapBridge::GetChannel(), ns3::CsmaNetDevice::GetChannel(), ns3::Ipv6Interface::GetCurHopLimit(), ns3::Ipv6StaticRouting::GetDefaultRoute(), ns3::NdiscCache::GetDevice(), ns3::Ipv6Interface::GetDevice(), ns3::PointToPointChannel::GetDevice(), ns3::CsmaNetDevice::GetEncapsulationMode(), ns3::EmuNetDevice::GetEncapsulationMode(), ns3::UdpSocketImpl::GetErrno(), ns3::NscTcpSocketImpl::GetErrno(), ns3::Ipv6RawSocketImpl::GetErrno(), ns3::Ipv6ExtensionHopByHop::GetExtensionNumber(), ns3::Ipv6ExtensionDestination::GetExtensionNumber(), ns3::Ipv6ExtensionFragment::GetExtensionNumber(), ns3::Ipv6ExtensionRouting::GetExtensionNumber(), ns3::Ipv6ExtensionESP::GetExtensionNumber(), ns3::Ipv6ExtensionAH::GetExtensionNumber(), ns3::GlobalValue::GetHelp(), ns3::Ipv6L3Protocol::GetIcmpv6(), ns3::MeshPointDevice::GetIfIndex(), ns3::BridgeNetDevice::GetIfIndex(), ns3::TapBridge::GetIfIndex(), ns3::CsmaNetDevice::GetIfIndex(), ns3::NdiscCache::GetInterface(), ns3::Ipv6L3Protocol::GetIpForward(), ns3::NdiscCache::Entry::GetLastReachabilityConfirmation(), ns3::Ipv6Interface::GetLinkLocalAddress(), ns3::Ipv4Address::GetLoopback(), ns3::Ipv4Mask::GetLoopback(), ns3::Ipv6Address::GetLoopback(), ns3::Ipv6Prefix::GetLoopback(), ns3::NdiscCache::Entry::GetMacAddress(), ns3::Simulator::GetMaximumSimulationTime(), ns3::Ipv6Interface::GetMetric(), ns3::Ipv6StaticRouting::GetMetric(), ns3::TapBridge::GetMode(), ns3::BridgeNetDevice::GetMtu(), ns3::MeshPointDevice::GetMtu(), ns3::PointToPointNetDevice::GetMtu(), ns3::TapBridge::GetMtu(), ns3::CsmaNetDevice::GetMtu(), ns3::Mac48Address::GetMulticast6Prefix(), ns3::Mac48Address::GetMulticastPrefix(), ns3::Ipv6Interface::GetNAddresses(), ns3::GlobalValue::GetName(), ns3::ChannelList::GetNChannels(), ns3::PointToPointChannel::GetNDevices(), ns3::Ipv6AddressGenerator::GetNetwork(), ns3::MeshPointDevice::GetNInterfaces(), ns3::Ipv6L3Protocol::GetNInterfaces(), ns3::Ipv6StaticRouting::GetNMulticastRoutes(), ns3::NodeList::GetNNodes(), ns3::UdpSocketImpl::GetNode(), ns3::NscTcpSocketImpl::GetNode(), ns3::Ipv6Extension::GetNode(), ns3::TcpSocketBase::GetNode(), ns3::dsr::DsrOptions::GetNode(), ns3::MeshPointDevice::GetNode(), ns3::BridgeNetDevice::GetNode(), ns3::dsr::DsrRouting::GetNode(), ns3::TapBridge::GetNode(), ns3::CsmaNetDevice::GetNode(), ns3::Ipv6InterfaceAddress::GetNsDadUid(), ns3::NdiscCache::Entry::GetNSRetransmit(), ns3::Ipv4Mask::GetOnes(), ns3::Ipv6Address::GetOnes(), ns3::Ipv6Prefix::GetOnes(), ns3::Ipv6OptionPad1::GetOptionNumber(), ns3::Ipv6OptionPadn::GetOptionNumber(), ns3::Ipv6OptionJumbogram::GetOptionNumber(), ns3::dsr::DsrOptionPad1::GetOptionNumber(), ns3::Ipv6OptionRouterAlert::GetOptionNumber(), ns3::dsr::DsrOptionPadn::GetOptionNumber(), ns3::dsr::DsrOptionRreq::GetOptionNumber(), ns3::dsr::DsrOptionRrep::GetOptionNumber(), ns3::dsr::DsrOptionSR::GetOptionNumber(), ns3::dsr::DsrOptionRerr::GetOptionNumber(), ns3::dsr::DsrOptionAckReq::GetOptionNumber(), ns3::dsr::DsrOptionAck::GetOptionNumber(), ns3::Ipv6InterfaceAddress::GetPrefix(), ns3::EmuNetDevice::GetQueue(), ns3::PointToPointNetDevice::GetQueue(), ns3::CsmaNetDevice::GetQueue(), ns3::Ipv6Interface::GetReachableTime(), ns3::TypeId::GetRegisteredN(), ns3::Time::GetResolution(), ns3::Ipv6Interface::GetRetransTimer(), ns3::Config::GetRootNamespaceObjectN(), ns3::Ipv6L3Protocol::GetRoutingProtocol(), ns3::RngSeedManager::GetRun(), ns3::UdpSocketImpl::GetRxAvailable(), ns3::NscTcpSocketImpl::GetRxAvailable(), ns3::Ipv6RawSocketImpl::GetRxAvailable(), ns3::Ipv6InterfaceAddress::GetScope(), ns3::RngSeedManager::GetSeed(), ns3::Ipv6L3Protocol::GetSendIcmpv6Redirect(), ns3::UdpSocketImpl::GetSockName(), ns3::NscTcpSocketImpl::GetSockName(), ns3::Ipv6RawSocketImpl::GetSockName(), ns3::Ipv6InterfaceAddress::GetState(), ns3::Icmpv6L4Protocol::GetStaticProtocolNumber(), ns3::Simulator::GetSystemId(), ns3::UdpSocketImpl::GetTxAvailable(), ns3::NscTcpSocketImpl::GetTxAvailable(), ns3::Ipv6RawSocketImpl::GetTxAvailable(), ns3::Inet6SocketAddress::GetType(), ns3::Icmpv6OptionHeader::GetType(), ns3::Ipv6Address::GetType(), ns3::Ipv6ExtensionRouting::GetTypeRouting(), ns3::Ipv6ExtensionLooseRouting::GetTypeRouting(), ns3::NdiscCache::GetUnresQlen(), ns3::Ipv4Address::GetZero(), ns3::Ipv6Address::GetZero(), ns3::Ipv4Mask::GetZero(), ns3::Ipv6Prefix::GetZero(), ns3::NdiscCache::Entry::IncNSRetransmit(), ns3::Ipv6AddressGenerator::Init(), ns3::Ipv6AddressGenerator::InitAddress(), ns3::GlobalRouteManager::InitializeRoutes(), ns3::BridgeHelper::Install(), ns3::Ipv4AddressHelper::Ipv4AddressHelper(), ns3::Ipv6EndPointDemux::Ipv6EndPointDemux(), ns3::Ipv6Extension::Ipv6Extension(), ns3::Ipv6ExtensionAH::Ipv6ExtensionAH(), ns3::Ipv6ExtensionDestination::Ipv6ExtensionDestination(), ns3::Ipv6ExtensionESP::Ipv6ExtensionESP(), ns3::Ipv6ExtensionFragment::Ipv6ExtensionFragment(), ns3::Ipv6ExtensionHopByHop::Ipv6ExtensionHopByHop(), ns3::Ipv6ExtensionLooseRouting::Ipv6ExtensionLooseRouting(), ns3::Ipv6ExtensionRouting::Ipv6ExtensionRouting(), ns3::Ipv6L3Protocol::Ipv6L3Protocol(), ns3::Ipv6ListRouting::Ipv6ListRouting(), ns3::Ipv6OptionJumbogram::Ipv6OptionJumbogram(), ns3::Ipv6OptionPad1::Ipv6OptionPad1(), ns3::Ipv6OptionPadn::Ipv6OptionPadn(), ns3::Ipv6OptionRouterAlert::Ipv6OptionRouterAlert(), ns3::Ipv6RawSocketImpl::Ipv6RawSocketImpl(), ns3::Ipv6StaticRouting::Ipv6StaticRouting(), ns3::MeshPointDevice::IsBridge(), ns3::BridgeNetDevice::IsBridge(), ns3::TapBridge::IsBridge(), ns3::WimaxNetDevice::IsBridge(), ns3::CsmaNetDevice::IsBridge(), ns3::MeshPointDevice::IsBroadcast(), ns3::BridgeNetDevice::IsBroadcast(), ns3::TapBridge::IsBroadcast(), ns3::CsmaNetDevice::IsBroadcast(), ns3::NdiscCache::Entry::IsDelay(), ns3::Ipv6Interface::IsDown(), ns3::Simulator::IsFinished(), ns3::Ipv6Interface::IsForwarding(), ns3::NdiscCache::Entry::IsIncomplete(), ns3::BridgeNetDevice::IsLinkUp(), ns3::MeshPointDevice::IsLinkUp(), ns3::TapBridge::IsLinkUp(), ns3::CsmaNetDevice::IsLinkUp(), ns3::BridgeNetDevice::IsMulticast(), ns3::MeshPointDevice::IsMulticast(), ns3::TapBridge::IsMulticast(), ns3::CsmaNetDevice::IsMulticast(), ns3::MeshPointDevice::IsPointToPoint(), ns3::BridgeNetDevice::IsPointToPoint(), ns3::TapBridge::IsPointToPoint(), ns3::CsmaNetDevice::IsPointToPoint(), ns3::NdiscCache::Entry::IsProbe(), ns3::NdiscCache::Entry::IsReachable(), ns3::CsmaNetDevice::IsReceiveEnabled(), ns3::NdiscCache::Entry::IsRouter(), ns3::CsmaNetDevice::IsSendEnabled(), ns3::NdiscCache::Entry::IsStale(), ns3::Ipv6Interface::IsUp(), ns3::Ipv6RawSocketImpl::Listen(), ns3::SystemPath::MakeTemporaryDirectoryName(), ns3::NdiscCache::Entry::MarkDelay(), ns3::NdiscCache::Entry::MarkProbe(), ns3::NdiscCache::Entry::MarkReachable(), ns3::NdiscCache::Entry::MarkStale(), ns3::MeshPointDevice::MeshPointDevice(), ns3::NdiscCache::NdiscCache(), ns3::MeshPointDevice::NeedsArp(), ns3::BridgeNetDevice::NeedsArp(), ns3::TapBridge::NeedsArp(), ns3::CsmaNetDevice::NeedsArp(), ns3::Ipv4AddressHelper::NewNetwork(), ns3::Ipv6AddressGenerator::NextAddress(), ns3::Ipv6AddressGenerator::NextNetwork(), ns3::CsmaNetDevice::NotifyLinkUp(), ns3::Ipv6L3Protocol::NotifyNewAggregate(), ns3::Ipv4AddressHelper::NumAddressBits(), ns3::PcapHelper::PcapHelper(), ns3::Ping6::Ping6(), ns3::PointToPointChannel::PointToPointChannel(), ns3::PointToPointNetDevice::ProcessHeader(), ns3::TapBridge::ReadCallback(), ns3::EmuNetDevice::ReadThread(), ns3::MeshPointDevice::ReceiveFromDevice(), ns3::NscTcpSocketImpl::Recv(), ns3::Address::Register(), ns3::NdiscCache::Remove(), ns3::dot11s::HwmpProtocolMac::RequestDestination(), ns3::Ipv6AddressGenerator::Reset(), ns3::Config::Reset(), ns3::NdiscCache::Entry::ResetNSRetransmit(), ns3::Ipv4NixVectorRouting::RouteInput(), ns3::Ipv4NixVectorRouting::RouteOutput(), ns3::Simulator::Run(), ns3::BridgeNetDevice::Send(), ns3::Ping6::Send(), ns3::PointToPointNetDevice::Send(), ns3::BridgeNetDevice::SendFrom(), ns3::dot11s::HwmpProtocolMac::SendMyPreq(), ns3::Icmpv6RS::Serialize(), ns3::BridgeNetDevice::SetAddress(), ns3::CsmaNetDevice::SetAddress(), ns3::EmuHelper::SetAttribute(), ns3::Ipv4AddressHelper::SetBase(), ns3::WaveformGenerator::SetChannel(), ns3::PointToPointNetDevice::SetDataRate(), ns3::BridgeHelper::SetDeviceAttribute(), ns3::Ipv6Interface::SetDown(), ns3::BridgeNetDevice::SetIfIndex(), ns3::MeshPointDevice::SetIfIndex(), ns3::TapBridge::SetIfIndex(), ns3::PointToPointNetDevice::SetInterframeGap(), ns3::BridgeNetDevice::SetMtu(), ns3::MeshPointDevice::SetMtu(), ns3::TapBridge::SetMtu(), ns3::Ipv4NixVectorRouting::SetNode(), ns3::BridgeNetDevice::SetNode(), ns3::MeshPointDevice::SetNode(), ns3::TapBridge::SetNode(), ns3::MeshPointDevice::SetPromiscReceiveCallback(), ns3::BridgeNetDevice::SetPromiscReceiveCallback(), ns3::TapBridge::SetPromiscReceiveCallback(), ns3::EmuHelper::SetQueue(), ns3::MeshPointDevice::SetReceiveCallback(), ns3::BridgeNetDevice::SetReceiveCallback(), ns3::TapBridge::SetReceiveCallback(), ns3::MeshPointDevice::SetRoutingProtocol(), ns3::Ipv6Interface::SetUp(), ns3::Ipv6L3Protocol::SetupLoopback(), ns3::UdpSocketImpl::ShutdownRecv(), ns3::NscTcpSocketImpl::ShutdownRecv(), ns3::Ipv6RawSocketImpl::ShutdownRecv(), ns3::UdpSocketImpl::ShutdownSend(), ns3::NscTcpSocketImpl::ShutdownSend(), ns3::Ipv6RawSocketImpl::ShutdownSend(), ns3::EpsBearerTagUdpClient::StartApplication(), ns3::Ping6::StartApplication(), ns3::NdiscCache::Entry::StartDelayTimer(), ns3::EmuNetDevice::StartDevice(), ns3::NdiscCache::Entry::StartProbeTimer(), ns3::NdiscCache::Entry::StartReachableTimer(), ns3::NdiscCache::Entry::StartRetransmitTimer(), ns3::TapBridge::StartTapDevice(), ns3::Simulator::Stop(), ns3::EpsBearerTagUdpClient::StopApplication(), ns3::Ping6::StopApplication(), ns3::NdiscCache::Entry::StopDelayTimer(), ns3::EmuNetDevice::StopDevice(), ns3::NdiscCache::Entry::StopProbeTimer(), ns3::NdiscCache::Entry::StopReachableTimer(), ns3::NdiscCache::Entry::StopRetransmitTimer(), ns3::TapBridge::StopTapDevice(), ns3::BridgeNetDevice::SupportsSendFrom(), ns3::MeshPointDevice::SupportsSendFrom(), ns3::EmuNetDevice::SupportsSendFrom(), ns3::TapBridge::SupportsSendFrom(), ns3::CsmaNetDevice::SupportsSendFrom(), ns3::TapBridgeHelper::TapBridgeHelper(), ns3::TcpL4Protocol::TcpL4Protocol(), ns3::Ipv6AddressGenerator::TestMode(), ns3::CsmaNetDevice::TransmitAbort(), ns3::PointToPointNetDevice::TransmitComplete(), ns3::CsmaNetDevice::TransmitCompleteEvent(), ns3::CsmaNetDevice::TransmitReadyEvent(), ns3::CsmaNetDevice::TransmitStart(), ns3::UdpSocketImpl::UdpSocketImpl(), ns3::NdiscCache::Entry::UpdateLastReachabilityconfirmation(), ns3::AsciiTraceHelper::~AsciiTraceHelper(), ns3::CsmaNetDevice::~CsmaNetDevice(), ns3::dsr::DsrOptionAck::~DsrOptionAck(), ns3::dsr::DsrOptionAckReq::~DsrOptionAckReq(), ns3::dsr::DsrOptionPad1::~DsrOptionPad1(), ns3::dsr::DsrOptionPadn::~DsrOptionPadn(), ns3::dsr::DsrOptionRerr::~DsrOptionRerr(), ns3::dsr::DsrOptionRrep::~DsrOptionRrep(), ns3::dsr::DsrOptionRreq::~DsrOptionRreq(), ns3::dsr::DsrOptions::~DsrOptions(), ns3::dsr::DsrOptionSR::~DsrOptionSR(), ns3::dsr::DsrRouting::~DsrRouting(), ns3::dsr::GraReply::~GraReply(), ns3::Ipv6EndPointDemux::~Ipv6EndPointDemux(), ns3::Ipv6Extension::~Ipv6Extension(), ns3::Ipv6ExtensionAH::~Ipv6ExtensionAH(), ns3::Ipv6ExtensionDestination::~Ipv6ExtensionDestination(), ns3::Ipv6ExtensionESP::~Ipv6ExtensionESP(), ns3::Ipv6ExtensionFragment::~Ipv6ExtensionFragment(), ns3::Ipv6ExtensionHopByHop::~Ipv6ExtensionHopByHop(), ns3::Ipv6ExtensionLooseRouting::~Ipv6ExtensionLooseRouting(), ns3::Ipv6ExtensionRouting::~Ipv6ExtensionRouting(), ns3::Ipv6Interface::~Ipv6Interface(), ns3::Ipv6InterfaceAddress::~Ipv6InterfaceAddress(), ns3::Ipv6L3Protocol::~Ipv6L3Protocol(), ns3::Ipv6ListRouting::~Ipv6ListRouting(), ns3::Ipv6Option::~Ipv6Option(), ns3::Ipv6OptionJumbogram::~Ipv6OptionJumbogram(), ns3::Ipv6OptionPad1::~Ipv6OptionPad1(), ns3::Ipv6OptionPadn::~Ipv6OptionPadn(), ns3::Ipv6OptionRouterAlert::~Ipv6OptionRouterAlert(), ns3::Ipv6StaticRouting::~Ipv6StaticRouting(), ns3::MeshPointDevice::~MeshPointDevice(), ns3::NdiscCache::~NdiscCache(), ns3::PcapHelper::~PcapHelper(), ns3::Ping6::~Ping6(), ns3::PointToPointNetDevice::~PointToPointNetDevice(), ns3::dsr::RouteCache::~RouteCache(), ns3::dsr::RreqTable::~RreqTable(), and ns3::UdpSocketImpl::~UdpSocketImpl().

#define NS_LOG_INFO (   msg)    NS_LOG (ns3::LOG_INFO, msg)
Parameters
msgthe message to log

Use NS_LOG to output a message of level LOG_INFO.

Definition at line 264 of file log.h.

Referenced by ns3::Ipv6L3Protocol::AddAutoconfiguredAddress(), ns3::EpcHelper::AddEnb(), ns3::olsr::RoutingProtocol::AddHostNetworkAssociation(), ns3::dsr::RouteCache::AddRoute(), ns3::LteHelper::AddX2Interface(), ns3::BSSchedulerRtps::BSSchedulerRTPSConnection(), ns3::dsr::DsrRouting::CancelLinkPacketTimer(), ns3::dsr::DsrRouting::CancelNetworkPacketTimer(), ns3::dsr::DsrRouting::CancelPacketTimerNextHop(), ns3::dsr::DsrRouting::CancelPassivePacketTimer(), ns3::WimaxMacQueue::CheckForFragmentation(), ns3::dsr::DsrRouting::CheckSendBuffer(), ns3::dsr::RreqTable::CheckUniqueRreqId(), ns3::IpcsClassifier::Classify(), ns3::EpcTftClassifier::Classify(), ns3::TcpSocketBase::Close(), ns3::TcpSocketBase::CloseAndNotify(), ns3::TcpSocketBase::CompleteFork(), ns3::BriteTopologyHelper::ConstructTopology(), ns3::LteUePhy::CreateDlCqiFeedbackMessage(), ns3::EmuFdNetDeviceHelper::CreateFileDescriptor(), ns3::PlanetLabFdNetDeviceHelper::CreateFileDescriptor(), ns3::TapFdNetDeviceHelper::CreateFileDescriptor(), ns3::EmuNetDevice::CreateSocket(), ns3::TapBridge::CreateTap(), ns3::dsr::RouteCache::DecStability(), ns3::WimaxMacQueue::Dequeue(), ns3::PhyRxStatsCalculator::DlPhyReception(), ns3::PhyTxStatsCalculator::DlPhyTransmission(), ns3::LteLinkAdaptationTestCase::DlScheduling(), ns3::MacStatsCalculator::DlScheduling(), ns3::TraceFadingLossModel::DoCalcRxPowerSpectralDensity(), ns3::TcpSocketBase::DoClose(), ns3::TcpSocketBase::DoConnect(), ns3::AarfcdWifiManager::DoNeedRts(), ns3::LteRlcAm::DoNotifyTxOpportunity(), ns3::TcpSocketBase::DoPeerClose(), ns3::TapBridgeFdReader::DoRead(), ns3::LenaMimoTestCase::DoRun(), ns3::ItuR1411LosPropagationLossModelTestCase::DoRun(), ns3::ItuR1411NlosOverRooftopPropagationLossModelTestCase::DoRun(), ns3::Kun2600MhzPropagationLossModelTestCase::DoRun(), ns3::OkumuraHataPropagationLossModelTestCase::DoRun(), ns3::LenaHarqTestCase::DoRun(), ns3::LenaDataPhyErrorModelTestCase::DoRun(), ns3::LenaRrFfMacSchedulerTestCase::DoRun(), ns3::BuildingsPathlossTestCase::DoRun(), ns3::LteRlcAmE2eTestCase::DoRun(), ns3::LteRlcUmE2eTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase1::DoRun(), ns3::BuildingsShadowingTestCase::DoRun(), LenaFdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase1::DoRun(), ns3::LenaPssFfMacSchedulerTestCase1::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase1::DoRun(), LenaTdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), LenaTtaFfMacSchedulerTestCase::DoRun(), ns3::LteDownlinkDataSinrTestCase::DoRun(), ns3::LteLinkAdaptationTestCase::DoRun(), ns3::LteUplinkDataSinrTestCase::DoRun(), ns3::LteInterferenceTestCase::DoRun(), ns3::LteFadingTestCase::DoRun(), ns3::LtePathlossModelSystemTestCase::DoRun(), ns3::LenaDlCtrlPhyErrorModelTestCase::DoRun(), ns3::LteDownlinkCtrlSinrTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase2::DoRun(), ns3::LteUplinkSrsSinrTestCase::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LenaPssFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LteHandoverDelayTestCase::DoRun(), ns3::SpectrumIdealPhyTestCase::DoRun(), ns3::EpcS1uUlTestCase::DoRun(), ns3::dsr::DsrOptionRerr::DoSendError(), ns3::WallClockSynchronizer::DoSetOrigin(), ns3::WallClockSynchronizer::DoSynchronize(), ns3::TcpNewReno::DupAck(), ns3::TcpTahoe::DupAck(), ns3::TcpWestwood::DupAck(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::EmuHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::YansWifiPhyHelper::EnableAsciiInternal(), ns3::WimaxHelper::EnableAsciiInternal(), ns3::InternetStackHelper::EnableAsciiIpv4Internal(), ns3::InternetStackHelper::EnableAsciiIpv6Internal(), ns3::FdNetDeviceHelper::EnablePcapInternal(), ns3::EmuHelper::EnablePcapInternal(), ns3::PointToPointHelper::EnablePcapInternal(), ns3::CsmaHelper::EnablePcapInternal(), ns3::YansWifiPhyHelper::EnablePcapInternal(), ns3::WimaxHelper::EnablePcapInternal(), ns3::InternetStackHelper::EnablePcapIpv4Internal(), ns3::InternetStackHelper::EnablePcapIpv6Internal(), ns3::LteInterference::EndRx(), ns3::dsr::ErrorBuffer::Enqueue(), ns3::SubscriberStationNetDevice::Enqueue(), ns3::EpsGtpuHeaderTestCase::EpsGtpuHeaderTestCase(), ns3::Ipv6AutoconfiguredPrefix::FunctionPreferredTimeout(), ns3::Ipv6AutoconfiguredPrefix::FunctionValidTimeout(), ns3::DcfManager::GetAccessGrantStart(), ns3::OhBuildingsPropagationLossModel::GetLoss(), ns3::ItuR1238PropagationLossModel::GetLoss(), ns3::OkumuraHataPropagationLossModel::GetLoss(), ns3::HybridBuildingsPropagationLossModel::GetLoss(), ns3::BlockAckManager::GetNextPacket(), ns3::LteMiErrorModel::GetTbDecodificationStats(), ns3::TopologyReaderHelper::GetTopologyReader(), ns3::Ping6::HandleRead(), ns3::Radvd::HandleRead(), ns3::dsr::RouteCache::IncStability(), ns3::GlobalRouteManagerImpl::InitializeRoutes(), ns3::TcpSocketBase::Listen(), ns3::SNRToBlockErrorRateManager::LoadTraces(), ns3::dsr::RouteCache::LookupRoute(), ns3::dsr::RouteCache::LookupRoute_Link(), ns3::LteDownlinkCtrlSinrTestCase::LteDownlinkCtrlSinrTestCase(), ns3::LteDownlinkDataSinrTestCase::LteDownlinkDataSinrTestCase(), ns3::LteLinkAdaptationTestCase::LteLinkAdaptationTestCase(), ns3::LteLinkAdaptationTestSuite::LteLinkAdaptationTestSuite(), ns3::LtePathlossModelTestSuite::LtePathlossModelTestSuite(), ns3::LteUplinkDataSinrTestCase::LteUplinkDataSinrTestCase(), ns3::LteUplinkSrsSinrTestCase::LteUplinkSrsSinrTestCase(), ns3::TcpNewReno::NewAck(), ns3::TcpReno::NewAck(), ns3::TcpTahoe::NewAck(), ns3::TcpWestwood::NewAck(), ns3::Ipv6StaticRouting::NotifyAddRoute(), ns3::dsr::DsrRouting::PacketNewRoute(), ns3::TcpSocketBase::PeerClose(), ns3::dsr::RouteCache::PrintRouteVector(), ns3::dsr::DsrRouting::PriorityScheduler(), ns3::Ipv6ExtensionLooseRouting::Process(), ns3::BsServiceFlowManager::ProcessDsaReq(), ns3::TcpSocketBase::ProcessSynRcvd(), ns3::TcpSocketBase::ProcessSynSent(), ns3::TcpSocketBase::ProcessWait(), ns3::dsr::DsrRouting::PromiscReceive(), ns3::CsmaChannel::PropagationCompleteEvent(), ns3::dsr::SendBuffer::Purge(), ns3::RocketfuelTopologyReader::Read(), ns3::OrbisTopologyReader::Read(), ns3::InetTopologyReader::Read(), ns3::TapBridge::ReadCallback(), ns3::EmuNetDevice::ReadThread(), ns3::dsr::RouteCache::RebuildBestRouteTable(), ns3::UdpL4Protocol::Receive(), ns3::TcpL4Protocol::Receive(), ns3::CsmaNetDevice::Receive(), ns3::dsr::DsrRouting::Receive(), ns3::EpcX2::RecvFromX2cSocket(), ns3::UeManager::RecvHandoverPreparationFailure(), ns3::RrFfMacScheduler::RefreshHarqProcesses(), ns3::SNRToBlockErrorRateManager::ReLoadTraces(), ns3::olsr::RoutingProtocol::RemoveHostNetworkAssociation(), ns3::Ipv6AutoconfiguredPrefix::RemoveMe(), ns3::PhyStatsCalculator::ReportCurrentCellRsrpSinr(), ns3::PhyStatsCalculator::ReportInterference(), ns3::PhyStatsCalculator::ReportUeSinr(), ns3::TcpNewReno::Retransmit(), ns3::TcpWestwood::Retransmit(), ns3::dsr::DsrRouting::RouteRequestTimerExpire(), ns3::dsr::DsrRouting::SalvagePacket(), ns3::SSScheduler::Schedule(), ns3::UplinkSchedulerRtps::Schedule(), ns3::Ping6::Send(), ns3::Radvd::Send(), ns3::dsr::DsrRouting::Send(), ns3::TcpSocketBase::SendDataPacket(), ns3::dsr::DsrRouting::SendErrorRequest(), ns3::dsr::DsrRouting::SendGratuitousReply(), ns3::dsr::DsrRouting::SendPacket(), ns3::dsr::DsrRouting::SendPacketFromBuffer(), ns3::TcpSocketBase::SendPendingData(), ns3::dsr::DsrRouting::SendReply(), ns3::UeManager::SendUeContextRelease(), ns3::dsr::DsrRouting::SendUnreachError(), ns3::dsr::RouteCache::SetCacheType(), ns3::AnimationInterface::SetConstantPosition(), ns3::AnimationInterface::SetNodeColor(), ns3::AnimationInterface::SetOutputFile(), ns3::olsr::RoutingProtocol::SetRoutingTableAssociation(), ns3::HalfDuplexIdealPhy::SetTxPowerSpectralDensity(), ns3::AnimationInterface::SetXMLOutput(), ns3::AnimationInterface::ShowNode(), ns3::TcpSocketBase::ShutdownSend(), ns3::SpectrumModel::SpectrumModel(), ns3::AnimationInterface::StartAnimation(), ns3::LteEnbPhy::StartFrame(), ns3::Ipv6AutoconfiguredPrefix::StartPreferredTimer(), ns3::SimpleOfdmWimaxPhy::StartReceive(), ns3::LteEnbPhy::StartSubFrame(), ns3::Ipv6AutoconfiguredPrefix::StartValidTimer(), ns3::AnimationInterface::StopAnimation(), ns3::Ipv6AutoconfiguredPrefix::StopPreferredTimer(), ns3::Ipv6AutoconfiguredPrefix::StopValidTimer(), ns3::LteUePhy::SubframeIndication(), ns3::UeManager::SwitchToState(), ns3::TcpSocketBase::TimeWait(), ns3::CsmaChannel::TransmitEnd(), ns3::CsmaChannel::TransmitStart(), ns3::PhyRxStatsCalculator::UlPhyReception(), ns3::PhyTxStatsCalculator::UlPhyTransmission(), ns3::UplinkSchedulerRtps::ULSchedulerRTPSConnection(), ns3::MacStatsCalculator::UlScheduling(), ns3::AnimationInterface::UpdateNodeColor(), and ns3::dsr::RouteCache::UseExtends().

#define NS_LOG_LOGIC (   msg)    NS_LOG (ns3::LOG_LOGIC, msg)
Parameters
msgthe message to log

Use NS_LOG to output a message of level LOG_LOGIC

Definition at line 334 of file log.h.

Referenced by ns3::EpcHelper::ActivateEpsBearer(), ns3::TcpRxBuffer::Add(), ns3::TcpTxBuffer::Add(), ns3::dsr::DsrOptionField::AddDsrOption(), ns3::EpcHelper::AddEnb(), ns3::CsmaNetDevice::AddHeader(), ns3::dsr::RouteCache::AddNeighbor(), ns3::OptionField::AddOption(), ns3::dsr::RouteCache::AddRoute_Link(), ns3::MultiModelSpectrumChannel::AddRx(), ns3::EpcHelper::AddX2Interface(), ns3::NscTcpSocketImpl::Bind(), ns3::TcpSocketBase::Bind(), ns3::NscTcpSocketImpl::Bind6(), ns3::GlobalRouteManagerImpl::BuildGlobalRoutingDatabase(), ns3::dsr::DsrRouting::CheckSendBuffer(), ns3::dsr::RouteCache::CheckUniqueAckId(), ns3::dsr::RreqTable::CheckUniqueRreqId(), ns3::EpcTftClassifier::Classify(), ns3::GlobalRoutingLSA::ClearLinkRecords(), ns3::NscTcpSocketImpl::Close(), ns3::TcpTxBuffer::CopyFromSequence(), ns3::Ipv4GlobalRoutingHelper::Create(), ns3::GridBuildingAllocator::Create(), ns3::LteAmc::CreateCqiFeedbacks(), ns3::LteSpectrumValueHelper::CreateTxPowerSpectralDensity(), ns3::aodv::RoutingProtocol::DeferredRouteOutput(), ns3::dsr::RouteCache::DeleteAllRoutesIncludeLink(), ns3::GlobalRouteManagerImpl::DeleteGlobalRoutes(), ns3::aodv::RoutingTableEntry::DeletePrecursor(), ns3::aodv::RoutingTable::DeleteRoute(), ns3::dsr::RouteCache::DeleteRoute(), ns3::Queue::Dequeue(), ns3::dsr::DsrNetworkQueue::Dequeue(), ns3::Ipv4Header::Deserialize(), ns3::DefaultSimulatorImpl::Destroy(), ns3::RealtimeSimulatorImpl::Destroy(), ns3::DistributedSimulatorImpl::Destroy(), ns3::TcpSocketBase::Destroy(), ns3::TcpSocketBase::Destroy6(), ns3::TcpTxBuffer::DiscardUpTo(), ns3::GlobalRouter::DiscoverLSAs(), ns3::ConstantSpectrumPropagationLossModel::DoCalcRxPowerSpectralDensity(), ns3::TraceFadingLossModel::DoCalcRxPowerSpectralDensity(), ns3::TcpSocketBase::DoForwardUp(), ns3::Ipv4L3Protocol::DoFragmentation(), ns3::LteHelper::DoInitialize(), ns3::LteRlcTm::DoNotifyTxOpportunity(), ns3::LteRlcUm::DoNotifyTxOpportunity(), ns3::LteRlcAm::DoNotifyTxOpportunity(), ns3::TcpSocketBase::DoPeerClose(), ns3::TapBridgeFdReader::DoRead(), ns3::FdNetDeviceFdReader::DoRead(), ns3::LteTestPdcp::DoReceivePdcpPdu(), ns3::EpcTftClassifierTestCase::DoRun(), ns3::RandomRoomPositionAllocatorTestCase::DoRun(), ns3::BuildingsHelperOneTestCase::DoRun(), ns3::SameRoomPositionAllocatorTestCase::DoRun(), ns3::dsr::DsrOptionRerr::DoSendError(), ns3::LteRlcTm::DoTransmitPdcpPdu(), ns3::LteRlcUm::DoTransmitPdcpPdu(), ns3::LteRlcAm::DoTransmitPdcpPdu(), ns3::LteTestMac::DoTransmitPdu(), ns3::aodv::RequestQueue::Drop(), ns3::dsr::SendBuffer::Drop(), ns3::dsdv::PacketQueue::Drop(), ns3::TcpTahoe::DupAck(), ns3::Queue::Enqueue(), ns3::dsr::DsrNetworkQueue::Enqueue(), ns3::LteRlcAm::ExpireReorderingTimer(), ns3::TcpRxBuffer::Extract(), ns3::TapBridge::Filter(), ns3::MultiModelSpectrumChannel::FindAndEventuallyAddTxSpectrumModel(), ns3::dsr::RreqTable::FindSourceEntry(), ns3::ArpCache::Flush(), ns3::Ipv4NixVectorRouting::FlushGlobalNixRoutingCache(), ns3::Icmpv6L4Protocol::ForgeNA(), ns3::Icmpv6L4Protocol::ForgeNS(), ns3::Icmpv6L4Protocol::ForgeRS(), ns3::olsr::RoutingProtocol::ForwardDefault(), ns3::aodv::RoutingProtocol::Forwarding(), ns3::dsr::DsrRouting::ForwardPacket(), ns3::FdNetDevice::ForwardUp(), ns3::EmuNetDevice::ForwardUp(), ns3::Icmpv6L4Protocol::FunctionDadTimeout(), ns3::BriteTopologyHelper::GenerateBriteTopology(), ns3::LteAmc::GetCqiFromSpectralEfficiency(), ns3::LteSpectrumValueHelper::GetDownlinkCarrierFrequency(), ns3::Building::GetFloor(), ns3::CosineAntennaModel::GetGainDb(), ns3::ParabolicAntennaModel::GetGainDb(), ns3::aodv::RoutingTable::GetListOfDestinationWithNextHop(), ns3::ItuR1238PropagationLossModel::GetLoss(), ns3::ItuR1411LosPropagationLossModel::GetLoss(), ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetLoss(), ns3::LteAmc::GetMcsFromCqi(), ns3::LteNetDevice::GetMulticast(), ns3::EmuNetDevice::GetMulticast(), ns3::WimaxNetDevice::GetMulticast(), ns3::CsmaNetDevice::GetMulticast(), ns3::Queue::GetNBytes(), ns3::RandomRoomPositionAllocator::GetNext(), ns3::SameRoomPositionAllocator::GetNext(), ns3::Queue::GetNPackets(), ns3::Ipv4L3Protocol::Fragments::GetPacket(), ns3::SPFVertex::GetParent(), ns3::Ipv4L3Protocol::Fragments::GetPartialPacket(), ns3::WifiPhy::GetPayloadDurationMicroSeconds(), ns3::Building::GetRoomX(), ns3::Building::GetRoomY(), ns3::LteAmc::GetSpectralEfficiencyFromCqi(), ns3::LteSpectrumValueHelper::GetSpectrumModel(), ns3::Ipv6StaticRoutingHelper::GetStaticRouting(), ns3::Ipv4StaticRoutingHelper::GetStaticRouting(), ns3::LteMiErrorModel::GetTbDecodificationStats(), ns3::Queue::GetTotalDroppedBytes(), ns3::Queue::GetTotalDroppedPackets(), ns3::Queue::GetTotalReceivedBytes(), ns3::Queue::GetTotalReceivedPackets(), ns3::LteSpectrumValueHelper::GetUplinkCarrierFrequency(), ns3::Icmpv6L4Protocol::HandleNS(), ns3::Icmpv6L4Protocol::HandleRS(), ns3::ArpCache::HandleWaitReplyTimeout(), ns3::BridgeHelper::Install(), ns3::TapBridgeHelper::Install(), ns3::SpectrumAnalyzerHelper::Install(), ns3::aodv::RoutingTable::InvalidateRoutesWithDst(), ns3::Ipv6L3Protocol::IpForward(), ns3::Ipv6L3Protocol::IpMulticastForward(), ns3::Ipv4L3Protocol::IsDestinationAddress(), ns3::Queue::IsEmpty(), ns3::Ipv4L3Protocol::Fragments::IsEntire(), ns3::Ipv4L3Protocol::IsForwarding(), ns3::Ipv6L3Protocol::IsForwarding(), ns3::olsr::RoutingProtocol::LinkSensing(), ns3::Ipv6L3Protocol::LocalDeliver(), ns3::dsdv::RoutingProtocol::LookForQueuedPackets(), ns3::ArpL3Protocol::Lookup(), ns3::Ipv6EndPointDemux::Lookup(), ns3::aodv::RoutingTableEntry::LookupPrecursor(), ns3::aodv::RoutingTable::LookupRoute(), ns3::dsr::RouteCache::LookupRoute(), ns3::dsr::RouteCache::LookupRoute_Link(), ns3::Ipv6StaticRouting::LookupStatic(), ns3::aodv::RoutingTable::LookupValidRoute(), ns3::LteRrcConnectionEstablishmentTestCase::LteRrcConnectionEstablishmentTestCase(), ns3::LteMiErrorModel::MappingMiBler(), ns3::dsr::RreqTable::MarkLinkAsUnidirectional(), ns3::aodv::RoutingTable::MarkLinkAsUnidirectional(), ns3::EpcTft::PacketFilter::Matches(), ns3::SPFVertex::MergeParent(), ns3::LteMiErrorModel::Mib(), ns3::olsr::RoutingProtocol::MprComputation(), ns3::dsr::DsrRouting::NetworkScheduleTimerExpire(), ns3::TcpNewReno::NewAck(), ns3::TcpReno::NewAck(), ns3::TcpTahoe::NewAck(), ns3::TcpWestwood::NewAck(), ns3::aodv::RoutingProtocol::NotifyAddAddress(), ns3::aodv::RoutingProtocol::NotifyInterfaceDown(), ns3::dsdv::RoutingProtocol::NotifyInterfaceDown(), ns3::dot11s::PeerManagementProtocol::NotifyLinkClose(), ns3::dot11s::PeerManagementProtocol::NotifyLinkOpen(), ns3::AlohaNoackNetDevice::NotifyReceptionEndOk(), ns3::aodv::RoutingProtocol::NotifyRemoveAddress(), ns3::AlohaNoackNetDevice::NotifyTransmissionEnd(), ns3::NscTcpL4Protocol::NscTcpL4Protocol(), ns3::Ipv4AddressHelper::NumAddressBits(), ns3::AthstatsWifiTraceSink::Open(), ns3::dsr::DsrRouting::PacketNewRoute(), ns3::TcpSocketBase::PeerClose(), ns3::olsr::RoutingProtocol::PopulateTwoHopNeighborSet(), ns3::UeManager::PrepareHandover(), ns3::dsr::DsrRouting::PriorityScheduler(), ns3::dsr::DsrOptionRreq::Process(), ns3::dsr::DsrOptionRrep::Process(), ns3::Ipv6ExtensionRouting::Process(), ns3::dsr::DsrOptionSR::Process(), ns3::Ipv6ExtensionLooseRouting::Process(), ns3::TcpSocketBase::ProcessClosing(), ns3::TcpSocketBase::ProcessEstablished(), ns3::Ipv4L3Protocol::ProcessFragment(), ns3::TcpSocketBase::ProcessLastAck(), ns3::TcpSocketBase::ProcessListen(), ns3::olsr::RoutingProtocol::ProcessMid(), ns3::Ipv6Extension::ProcessOptions(), ns3::TcpSocketBase::ProcessSynRcvd(), ns3::TcpSocketBase::ProcessSynSent(), ns3::TcpSocketBase::ProcessWait(), ns3::aodv::Neighbors::Purge(), ns3::aodv::RoutingTable::Purge(), ns3::dsr::RouteCache::PurgeMac(), ns3::DcaTxop::Queue(), ns3::EmuNetDevice::ReadThread(), ns3::LteRlcUm::ReassembleAndDeliver(), ns3::LteRlcAm::ReassembleAndDeliver(), ns3::dsr::RouteCache::RebuildBestRouteTable(), ns3::ArpL3Protocol::Receive(), ns3::StaWifiMac::Receive(), ns3::UdpL4Protocol::Receive(), ns3::TcpL4Protocol::Receive(), ns3::Ipv6L3Protocol::Receive(), ns3::Ipv4L3Protocol::Receive(), ns3::CsmaNetDevice::Receive(), ns3::Icmpv6L4Protocol::Receive(), ns3::dsr::DsrRouting::Receive(), ns3::TcpSocketBase::ReceivedAck(), ns3::LteEnbMac::ReceiveDlCqiLteControlMessage(), ns3::EpcEnbApplication::RecvFromLteSocket(), ns3::EpcSgwPgwApplication::RecvFromTunDevice(), ns3::EpcX2::RecvFromX2cSocket(), ns3::EpcX2::RecvFromX2uSocket(), ns3::aodv::RoutingProtocol::RecvReply(), ns3::aodv::RoutingProtocol::RecvRequest(), ns3::GlobalRouter::RemoveInjectedRoute(), ns3::CalendarScheduler::RemoveNext(), ns3::Ipv4GlobalRouting::RemoveRoute(), ns3::CandidateQueue::Reorder(), ns3::TcpNewReno::Retransmit(), ns3::TcpTahoe::Retransmit(), ns3::TcpWestwood::Retransmit(), ns3::aodv::RoutingProtocol::RouteInput(), ns3::Ipv4StaticRouting::RouteInput(), ns3::Ipv4ListRouting::RouteInput(), ns3::Ipv4GlobalRouting::RouteInput(), ns3::Ipv6ListRouting::RouteInput(), ns3::Ipv4NixVectorRouting::RouteInput(), ns3::olsr::RoutingProtocol::RouteInput(), ns3::Ipv6StaticRouting::RouteInput(), ns3::Ipv6L3Protocol::RouteInputError(), ns3::aodv::RoutingProtocol::RouteOutput(), ns3::dsdv::RoutingProtocol::RouteOutput(), ns3::Ipv4StaticRouting::RouteOutput(), ns3::Ipv4ListRouting::RouteOutput(), ns3::Ipv4GlobalRouting::RouteOutput(), ns3::Ipv6ListRouting::RouteOutput(), ns3::Ipv4NixVectorRouting::RouteOutput(), ns3::Ipv6StaticRouting::RouteOutput(), ns3::aodv::RoutingProtocol::RouteRequestTimerExpire(), ns3::dsr::DsrRouting::RouteRequestTimerExpire(), ns3::olsr::RoutingProtocol::RoutingTableComputation(), ns3::aodv::RoutingProtocol::ScheduleRreqRetry(), ns3::dsr::DsrRouting::ScheduleRreqRetry(), ns3::TcpSocketBase::Send(), ns3::Radvd::Send(), ns3::Ipv4Interface::Send(), ns3::Ipv6L3Protocol::Send(), ns3::Ipv4L3Protocol::Send(), ns3::PointToPointNetDevice::Send(), ns3::Ipv6Interface::Send(), ns3::dsr::DsrRouting::Send(), ns3::dsr::DsrRouting::SendAck(), ns3::LteEnbPhy::SendControlChannels(), ns3::UeManager::SendData(), ns3::LteEnbPhy::SendDataChannels(), ns3::TcpSocketBase::SendDataPacket(), ns3::TcpSocketBase::SendEmptyPacket(), ns3::Icmpv6L4Protocol::SendErrorDestinationUnreachable(), ns3::Icmpv6L4Protocol::SendErrorParameterError(), ns3::dsr::DsrRouting::SendErrorRequest(), ns3::Icmpv6L4Protocol::SendErrorTimeExceeded(), ns3::Icmpv6L4Protocol::SendErrorTooBig(), ns3::FdNetDevice::SendFrom(), ns3::AlohaNoackNetDevice::SendFrom(), ns3::EmuNetDevice::SendFrom(), ns3::CsmaNetDevice::SendFrom(), ns3::dsr::DsrRouting::SendGratuitousReply(), ns3::LteEnbRrc::SendHandoverRequest(), ns3::Icmpv6L4Protocol::SendMessage(), ns3::Icmpv6L4Protocol::SendNA(), ns3::Icmpv6L4Protocol::SendNS(), ns3::dsr::DsrRouting::SendPacketFromBuffer(), ns3::TcpSocketBase::SendPendingData(), ns3::Ipv6L3Protocol::SendRealOut(), ns3::Icmpv6L4Protocol::SendRedirection(), ns3::aodv::RoutingProtocol::SendReplyByIntermediateNode(), ns3::aodv::RoutingProtocol::SendRequest(), ns3::dsr::DsrRouting::SendRequest(), ns3::aodv::RoutingProtocol::SendRerrMessage(), ns3::aodv::RoutingProtocol::SendRerrWhenBreaksLinkToNextHop(), ns3::dsr::DsrRouting::SendRerrWhenBreaksLinkToNextHop(), ns3::aodv::RoutingProtocol::SendRerrWhenNoRouteToForward(), ns3::Icmpv6L4Protocol::SendRS(), ns3::Ipv4RawSocketImpl::SendTo(), ns3::PacketSocket::SendTo(), ns3::Ipv6RawSocketImpl::SendTo(), ns3::EpcSgwPgwApplication::SendToTunDevice(), ns3::dsdv::RoutingProtocol::SendTriggeredUpdate(), ns3::dsr::DsrRouting::SendUnreachError(), ns3::OptionField::Serialize(), ns3::Ipv4Header::Serialize(), ns3::dsr::DsrOptionField::Serialize(), ns3::RadiotapHeader::SetAntennaNoisePower(), ns3::RadiotapHeader::SetAntennaSignalPower(), ns3::Ipv4AddressHelper::SetBase(), ns3::RadiotapHeader::SetChannelFrequencyAndFlags(), ns3::FdNetDevice::SetEncapsulationMode(), ns3::CsmaNetDevice::SetEncapsulationMode(), ns3::EmuNetDevice::SetEncapsulationMode(), ns3::aodv::RoutingTable::SetEntryState(), ns3::EmuFdNetDeviceHelper::SetFileDescriptor(), ns3::PlanetLabFdNetDeviceHelper::SetFileDescriptor(), ns3::TapFdNetDeviceHelper::SetFileDescriptor(), ns3::RadiotapHeader::SetFrameFlags(), ns3::CsmaNetDevice::SetMtu(), ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice(), ns3::RadiotapHeader::SetRate(), ns3::RadiotapHeader::SetTsft(), ns3::TcpSocketBase::SetupEndpoint(), ns3::TcpTxBuffer::SizeFromSequence(), ns3::SpectrumConverter::SpectrumConverter(), ns3::SPFVertex::SPFVertex(), ns3::FdReader::Start(), ns3::SpectrumAnalyzer::Start(), ns3::WaveformGenerator::Start(), ns3::EmuNetDevice::StartDevice(), ns3::LteInterference::StartRx(), ns3::HalfDuplexIdealPhy::StartRx(), ns3::LteSpectrumPhy::StartRx(), ns3::TapBridge::StartTapDevice(), ns3::SingleModelSpectrumChannel::StartTx(), ns3::MultiModelSpectrumChannel::StartTx(), ns3::HalfDuplexIdealPhy::StartTx(), ns3::LteSpectrumPhy::StartTxDataFrame(), ns3::LteSpectrumPhy::StartTxDlCtrlFrame(), ns3::LteSpectrumPhy::StartTxUlSrsFrame(), ns3::ArpCache::StartWaitReplyTimer(), ns3::Simulator::Stop(), ns3::EmuNetDevice::StopDevice(), ns3::LteUePhy::SubframeIndication(), ns3::TcpL4Protocol::TcpL4Protocol(), ns3::TcpSocketBase::TcpSocketBase(), ns3::CsmaNetDevice::TransmitAbort(), ns3::CsmaNetDevice::TransmitCompleteEvent(), ns3::CsmaChannel::TransmitEnd(), ns3::PointToPointRemoteChannel::TransmitStart(), ns3::PointToPointChannel::TransmitStart(), ns3::CsmaChannel::TransmitStart(), ns3::PointToPointNetDevice::TransmitStart(), ns3::CsmaNetDevice::TransmitStart(), ns3::aodv::Neighbors::Update(), ns3::aodv::RoutingTable::Update(), ns3::dsr::RouteCache::UpdateNeighbor(), ns3::dsr::RouteCache::UpdateRouteEntry(), ns3::dsr::RouteCache::UseExtends(), ns3::GlobalRouter::WithdrawRoute(), ns3::GlobalRouteManagerLSDB::~GlobalRouteManagerLSDB(), and ns3::SPFVertex::~SPFVertex().

#define NS_LOG_UNCOND (   msg)
Value:
do \
{ \
std::clog << msg << std::endl; \
} \
while (false)
Parameters
msgthe message to log

Output the requested message unconditionaly.

Definition at line 343 of file log.h.

#define NS_LOG_WARN (   msg)    NS_LOG (ns3::LOG_WARN, msg)
Parameters
msgthe message to log

Use NS_LOG to output a message of level LOG_WARN.

Definition at line 246 of file log.h.

Referenced by ns3::Ipv6EndPointDemux::Allocate(), ns3::UanPhyCalcSinrDual::CalcSinrDb(), ns3::UanPhyCalcSinrDefault::CalcSinrDb(), ns3::UanPhyCalcSinrFhFsk::CalcSinrDb(), ns3::UanTxModeFactory::CreateMode(), ns3::TapBridge::CreateTap(), ns3::CsmaChannel::Detach(), ns3::LteRlcTm::DoNotifyTxOpportunity(), ns3::UanMacRcGw::Enqueue(), ns3::UanMacRc::Enqueue(), ns3::UanPhyDual::GetCcaThresholdDb(), ns3::Ipv4Header::GetFragmentOffset(), ns3::UanPhyDual::GetRxGainDb(), ns3::UanPhyDual::GetTransducer(), ns3::UanPhyDual::GetTxPowerDb(), ns3::SPFVertex::InheritAllRootExitDirections(), ns3::Ipv6L3Protocol::IpForward(), ns3::Ipv6L3Protocol::IpMulticastForward(), ns3::olsr::RoutingProtocol::LinkTupleUpdated(), ns3::Ipv6L3Protocol::LocalDeliver(), ns3::dsr::DsrRouting::NotifyDataReceipt(), ns3::aodv::RoutingProtocol::NotifyInterfaceUp(), ns3::RocketfuelTopologyReader::Read(), ns3::InetTopologyReader::Read(), ns3::Ipv6L3Protocol::Receive(), ns3::Ipv4L3Protocol::Receive(), ns3::dot11s::HwmpProtocolMac::ReceiveAction(), ns3::EpcEnbApplication::RecvFromLteSocket(), ns3::EpcSgwPgwApplication::RecvFromTunDevice(), ns3::FlowMonitor::ReportForwarding(), ns3::FlowMonitor::ReportLastRx(), ns3::Ipv4L3Protocol::SelectSourceAddress(), ns3::EpcUeNas::Send(), ns3::Ipv6L3Protocol::Send(), ns3::Ipv4L3Protocol::Send(), ns3::UeManager::SendData(), ns3::TcpSocketBase::SendEmptyPacket(), ns3::olsr::RoutingProtocol::SendHello(), ns3::Icmpv6L4Protocol::SendMessage(), ns3::MeshPointDevice::SetAddress(), ns3::ApWifiMac::SetBeaconInterval(), ns3::UanNetDevice::SetMtu(), ns3::LteNetDevice::SetPromiscReceiveCallback(), ns3::UanPhyDual::SetRxThresholdDb(), ns3::AlohaNoackNetDevice::StartTransmission(), ns3::FdReader::Stop(), ns3::BulkSendApplication::StopApplication(), ns3::OnOffApplication::StopApplication(), ns3::CsmaChannel::TransmitStart(), and ns3::CsmaNetDevice::TransmitStart().

Function Documentation

void ns3::LogComponentDisable ( char const *  name,
enum LogLevel  level 
)
Parameters
namea log component name
levela logging level

Disable the logging output associated with that log component. The logging output can be later re-enabled with a call to ns3::LogComponentEnable.

Definition at line 347 of file log.cc.

void ns3::LogComponentEnable ( char const *  name,
enum LogLevel  level 
)
void ns3::LogComponentEnableAll ( enum LogLevel  level)
Parameters
levela logging level

Enable the logging output for all registered log components.

Same as running your program with the NS_LOG environment variable set as NS_LOG='*=level'

Definition at line 335 of file log.cc.

Referenced by Ns3TcpLossTestCase::DoRun(), and Ns3TcpStateTestCase::DoRun().

void ns3::LogComponentPrintList ( void  )

Print the list of logging messages available. Same as running your program with the NS_LOG environment variable set as NS_LOG=print-list

Definition at line 375 of file log.cc.

Referenced by ns3::LogComponentEnable().