Lines Matching refs:timeout
35 timeout = timeoutInMilliseconds; in SocketConnection()
37 mainSocketCommunicator = new SocketCommunicator(parentElement, timeout, this.address); in SocketConnection()
57 if(!mainSocketCommunicator.AcceptConnection(timeout)) in Connect()
63 if(success && !asyncSocketCommunicator.AcceptConnection(timeout)) in Connect()
147 receiveThread.Join(timeout); in Abort()
358 private readonly int timeout; field in Antmicro.Renode.Plugins.CoSimulationPlugin.Connection.SocketConnection
375 timeout = timeoutInMilliseconds; in SocketCommunicator()
381 listener?.Close(timeout); in Dispose()
382 socket?.Close(timeout); in Dispose()
497 task.Wait(timeout, channelTaskFactory.CancellationToken); in WaitSendOrReceiveTask()
539 private readonly int timeout; field in Antmicro.Renode.Plugins.CoSimulationPlugin.Connection.SocketConnection.SocketCommunicator