Lines Matching refs:_instance
55 Boot *Boot::_instance = 0;
61 if (_instance)
62 return *_instance;
72 _instance = new ARMBoot();
75 _instance = new MIPSBoot();
78 _instance = new SHBoot();
81 memset(&_instance->args, 0, sizeof(struct BootSetupArgs));
82 _instance->args.consoleEnable = TRUE;
84 return *_instance;
91 if (_instance)
92 delete _instance;