Lines Matching refs:sender
34 …public static void Add(IRadio sender, RadioPhyId phyId, int channel, int txPowerDbm, byte[] conten… in Add() argument
38 PacketInfo entry = PacketLookup(sender); in Add()
46 Remove(sender); in Add()
49 …TimeInterval addTime = IPeripheralExtensions.GetMachine(sender).LocalTimeSource.ElapsedVirtualTime; in Add()
50 PacketInfo newEntry = new PacketInfo(sender, phyId, channel, txPowerDbm, content); in Add()
57 public static void Remove(IRadio sender) in Remove() argument
59 PacketInfo entry = PacketLookup(sender); in Remove()
88 public static TimeInterval GetTxStartTime(IRadio sender) in GetTxStartTime() argument
93 PacketInfo entry = PacketLookup(sender); in GetTxStartTime()
129 private static PacketInfo PacketLookup(IRadio sender) in PacketLookup() argument
133 if (entry.Sender == sender) in PacketLookup()
159 private IRadio sender; field in Antmicro.Renode.Peripherals.Wireless.PacketInfo
167 public IRadio Sender => sender;
194 … public PacketInfo(IRadio sender, RadioPhyId phyId, int channel, int txPowerDbm, byte[] content) in PacketInfo() argument
196 this.sender = sender; in PacketInfo()
202 startTx = IPeripheralExtensions.GetMachine(sender).LocalTimeSource.ElapsedVirtualTime; in PacketInfo()