/vbox/src/libs/xpcom18a4/python/ |
H A D | vboxxpcom.py | 15 import platform namespace 31 if platform.system() in [ 'SunOS', ] and sys.maxsize <= 2**32: 41 if platform.system() == 'Darwin': 54 if platform.system() == 'Darwin':
|
/vbox/src/VBox/Installer/common/ |
H A D | vboxapisetup.py | 57 import platform namespace 59 if platform.system() == 'Windows': 63 if platform.system() != 'Darwin':
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/ |
H A D | RmPkg.py | 25 from platform import python_version 28 from sys import platform namespace 226 Logger.Quiet(ST.MSG_PYTHON_ON % (python_version(), platform) + \ 231 Logger.Quiet(ST.MSG_PYTHON_ON % (python_version(), platform) + \ 241 Logger.Quiet(ST.MSG_PYTHON_ON % (python_version(), platform) + \
|
H A D | MkPkg.py | 27 from sys import platform namespace 29 from platform import python_version 221 (python_version(), platform) + format_exc()) 226 (python_version(), platform) + format_exc()) 239 (python_version(), platform) + format_exc())
|
H A D | UPT.py | 25 from sys import platform namespace 28 from platform import python_version 147 Logger.Quiet(ST.MSG_PYTHON_ON % (python_version(), platform) + format_exc()) 225 Logger.Quiet(ST.MSG_PYTHON_ON % (python_version(), platform) + \
|
H A D | InstallPkg.py | 27 from sys import platform namespace 31 from platform import python_version 432 platform) + format_exc()) 437 platform) + format_exc()) 448 platform) + format_exc())
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Trim/ |
H A D | Trim.py | 584 import platform namespace 587 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc()) 591 import platform namespace 599 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Core/ |
H A D | PackageFile.py | 26 import platform namespace 218 if platform.system() != 'Windows':
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/ |
H A D | ParserValidate.py | 20 import platform namespace 285 if platform.platform().find("Windows") >= 0:
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/PomAdapter/ |
H A D | DecPomAlignment.py | 24 import platform namespace 260 if platform.system() != 'Windows':
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/ |
H A D | BuildReport.py | 21 import platform namespace 395 # @param GlobalDepexParser The platform global Dependency expression parser object 511 # a separate module in a platform build. 568 # in a platform build. 572 # @param GlobalPcdReport The platform global PCD report object 573 # @param GlobalPredictionReport The platform global Prediction report object 574 # @param GlobalDepexParser The platform global Dependency expression parser object 635 # Reports platform and module PCD information 637 # This class reports the platform PCD section and module PCD subsection 644 # This constructor function generates PcdReport object a platform buil [all...] |
H A D | build.py | 2 # build a platform or a module 24 import platform namespace 376 ## The smallest platform unit that can be built by nmake/make command in multi-thread build mode 378 # This class is for platform build by nmake/make build system. The "Obj" parameter 396 ## The class representing the task of a module build or platform build 693 # 2. Parse DSC file of active platform 702 # Constructor will load all necessary configurations, parse platform, modules 831 ExtraData="No active platform specified in target.txt or command line! Nothing can be built.\n") 841 # parse target.txt, tools_def.txt, and platform file 852 ## Build a module or platform [all...] |
/vbox/src/VBox/ValidationKit/testboxscript/ |
H A D | testboxscript_real.py | 38 import platform namespace 560 if platform.system() == 'Windows':
|
/vbox/src/VBox/Main/glue/ |
H A D | vboxapi.py | 96 import platform; namespace 101 if platform.system() == 'Darwin': 109 if platform.system() == 'Darwin': 249 Base class for the platform specific code. 274 """ Returns the platform type (class name sans 'Platform'). """ 288 This is for hiding platform specific differences in attributes 316 modified by the method to pass platform specific parameters. Can 325 raise Exception("No active listeners for this platform") 356 Unitializes the platform specific backend. 938 # the reference to the error exception class for the last platform/styl [all...] |
/vbox/src/VBox/ValidationKit/common/ |
H A D | utils.py | 36 import platform; namespace 47 if sys.platform == 'win32': 70 sPlatform = platform.system(); 78 raise Exception('Unsupported platform "%s"' % (sPlatform,)); 91 sArch = platform.machine(); 97 if platform.architecture()[0] == '64bit': 152 Returns the host OS version. This is platform.release with additional 155 sVersion = platform.release(); 193 sVersion = platform.version(); 206 sOsxVersion = platform [all...] |
/vbox/src/VBox/Frontends/VBoxShell/ |
H A D | vboxshell.py | 41 import platform namespace 174 if platform.system() == 'Darwin': 1880 vbox = ctx['global'].platform.connect(url, user, passwd) 1901 ctx['global'].platform.disconnect() 1915 ctx['global'].platform.disconnect() 1920 ctx['vb'] = ctx['global'].platform.connect(url, user, passwd) 3436 if platform.system() in ['Windows', 'Microsoft']: 3542 if platform.system() in [ 'SunOS', ]:
|
/vbox/src/VBox/ValidationKit/testdriver/ |
H A D | vbox.py | 35 import platform namespace 79 if platform.system() == 'Windows': 231 # Install mappings to the other platform. 232 if platform.system() == 'Windows': 265 if platform.system() == 'Windows': 537 fPassive = sys.platform == 'win32'; # or webservices. 558 if sys.platform == 'win32': 935 and platform.architecture()[0] == '64bit' \ 1291 if sys.platform == 'win32': 1316 if sys.platform [all...] |