Lines Matching refs:currentMachine

47                 return currentMachine;
51 currentMachine = value;
132 if(currentMachine == machine) in UpdateMonitorPrompt()
134 currentMachine = null; in UpdateMonitorPrompt()
168 if(currentMachine == oldMachine) in JoinEmulation()
170 currentMachine = newMachine; in JoinEmulation()
226 Commands.Add(new CreatePlatformCommand(this, x => currentMachine = x)); in InitCommands()
228 Commands.Add(new QuitCommand(this, x => currentMachine = x, () => Quitted)); in InitCommands()
229 Commands.Add(new PeripheralsCommand(this, () => currentMachine)); in InitCommands()
241 Commands.Add(new MachCommand(this, () => currentMachine, x => currentMachine = x)); in InitCommands()
527 if(currentMachine != null) in GetVariableName()
529 … String.Format("{0}.{1}", EmulationManager.Instance.CurrentEmulation[currentMachine].Replace("-", … in GetVariableName()
605 if(currentMachine == null) in TryLoadPlatform()
609 currentMachine = machine; in TryLoadPlatform()
766 if(currentMachine != null) in TryExpandVariable()
768 … newName = String.Format("{0}.{1}", Emulation[currentMachine].Replace("-", "_"), varName); in TryExpandVariable()
983 …var machinePrefix = currentMachine == null ? globalVariablePrefix : Emulation[currentMachine] + ".… in SuggestCommands()
1051 if(currentMachine != null) in GetAvailableNames()
1053 …return currentMachine.GetAllNames().Union(Emulation.ExternalsManager.GetNames().Union(staticObject… in GetAvailableNames()
1174 if(m == currentMachine) in OnMachineRemoved()
1176 currentMachine = null; in OnMachineRemoved()
1182 private IMachine currentMachine property in Antmicro.Renode.UserInterface.Monitor