Home
last modified time | relevance | path

Searched refs:sockets (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Sockets/
DSocketsManager.cs24 sockets = new List<SocketInstance>(); in SocketsManager()
29 foreach(var socketInstance in sockets) in Dispose()
37 sockets = new List<SocketInstance>(); in CleanUp()
43 …table.AddRows(sockets, x => x.Owner.ToString(), x => x.Type.ToString(), x => x.EndPoint, x => x.Is… in List()
50 sockets.Add(s); in AcquireSocket()
56 SocketInstance socketInstance = sockets.Where(x => x.socket == socket).FirstOrDefault(); in TryDropSocket()
59 sockets.Remove(socketInstance); in TryDropSocket()
67 private static List<SocketInstance> sockets; field in Antmicro.Renode.Sockets.SocketsManager
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DQuectelModem.cs52 for(int i = 0; i < sockets.Length; i++) in Reset()
54 sockets[i]?.Dispose(); in Reset()
55 sockets[i] = null; in Reset()
625 if(!IsValidConnectionId(connectionId) || sockets[connectionId] != null) in Qiopen()
655 sockets[connectionId] = service; in Qiopen()
671 sockets[connectionId]?.Dispose(); in Qiclose()
672 sockets[connectionId] = null; in Qiclose()
677 if(sockets.All(s => s == null)) in Qiclose()
689 if(!IsValidConnectionId(connectionId) || sockets[connectionId] == null) in Qird()
700 var readBytes = sockets[connectionId].Receive(readLength); in Qird()
[all …]