Searched defs:Progressor (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMisc.py786 class Progressor: class in inherits:
804 if Progressor._StopFlag == None:
805 Progressor._StopFlag = threading.Event()
814 Progressor._StopFlag.clear()
815 if Progressor._ProgressThread == None:
816 Progressor._ProgressThread = threading.Thread(target=self._ProgressThreadEntry)
817 Progressor._ProgressThread.setDaemon(False)
818 Progressor._ProgressThread.start()
836 while not Progressor._StopFlag.isSet():
849 if Progressor
[all...]

Completed in 258 milliseconds