HomeSort by: relevance | last modified time | path
    Searched refs:_cons (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/arch/hpc/stand/hpcboot/sh3/
sh_boot.cpp 90 _cons = new SHConsole;
91 if (!_cons->init()) {
92 _cons = Console::Instance();
96 _cons = Console::Instance();
97 SHConsole::selectBootConsole(*_cons, SHConsole::VIDEO);
106 _arch = new SH7707(_cons, _mem, SH7707::boot_func);
112 _arch = new SH7709(_cons, _mem, SH7709::boot_func);
118 _arch = new SH7709A(_cons, _mem, SH7709A::boot_func);
124 _arch = new SH7750(_cons, _mem, SH7750::boot_func);
154 _mem = new MemoryManager_SHMMU(_cons, page_size)
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/arm/
arm_boot.cpp 94 _arch = new SA1100Architecture(_cons, _mem);
98 _arch = new PXA2X0Architecture(_cons, _mem);
124 _cons, 4096);
131 _cons = ARMConsole::Instance(_mem, args.architecture);
132 if (_cons == NULL || !_cons->init()) {
133 _cons = Console::Instance();
137 _cons = Console::Instance();
  /src/sys/arch/hpc/stand/hpcboot/
file.cpp 45 _file = new UfsFile(_cons);
48 _file = new FatFile(_cons);
51 _file = new HttpFile(_cons);
console.h 93 #define DPRINTF_SETUP() Console *_cons = Console::Instance()
95 if (_debug > level) _cons->print x
97 _cons->print x
boot.cpp 132 _cons = Console::Instance();
149 Console::changeConsole(*_cons);
152 _file = new FileManager(_cons, args.file);
164 _loader = new ElfLoader(_cons, _mem);
167 _loader = new CoffLoader(_cons, _mem);
boot.h 55 Console *_cons; // LCD/Serial member in class:Boot
arch.h 46 Console *&_cons; member in class:Architecture
file.h 42 Console *&_cons; member in class:File
48 File(Console *&cons) : _cons(cons) { /* NO-OP */ }
load.h 54 Console *&_cons; member in class:Loader
arch.cpp 45 :_cons(cons), _mem(mem)
86 _boot_arg->bi.bi_cnuse = _cons->getBootConsole();
hpcmenu.h 56 Console *_cons; member in class:HpcBootApp
memory.h 66 Console *&_cons; member in class:MemoryManager
hpcboot.cpp 65 app->_cons = Console::Instance();
load.cpp 43 : _mem(mem), _cons(cons)
memory.cpp 36 : _cons(cons)
  /src/sys/arch/hpc/stand/hpcboot/mips/
mips_boot.cpp 92 _cons = MIPSConsole::Instance();
93 if (!_cons->init()) {
94 _cons = Console::Instance();
98 _cons = Console::Instance();
109 _arch = new TX39XX(_cons, _mem, args.architecture);
114 _arch = new VR41XX(_cons, _mem);
143 _cons, pagesz, shift);
146 _mem = new MemoryManager_VirtualCopy(_cons, pagesz);
  /src/sys/arch/hpc/stand/hpcboot/sh3/dev/
sh_dev.h 39 Console *_cons; member in class:SHdev
sh_dev.cpp 45 _cons = Console::Instance();
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
ring.h 248 #define RING_REQUEST_CONS_OVERFLOW(_r, _cons) \
249 (((_cons) - (_r)->rsp_prod_pvt) >= RING_SIZE(_r))

Completed in 19 milliseconds