Lines Matching refs:pdp
203 bool PutHaltMessage(nn::dbg::DirectPrint* pdp, const nn::math::VEC2& pos, const char* msg ) in PutHaltMessage() argument
205 pdp->PutString( pos, msg ); in PutHaltMessage()
206 if ( pdp->GetLastCursorPos().y < 240 ) in PutHaltMessage()
216 void ClearMessage(nn::dbg::DirectPrint* pdp, const nn::math::VEC2& pos, const char* msg ) in ClearMessage() argument
218 nn::util::Color8 tmp = pdp->GetCharColor(); in ClearMessage()
219 pdp->SetCharColor( pdp->GetBgColor() ); in ClearMessage()
220 PutHaltMessage( pdp, pos, msg ); in ClearMessage()
221 pdp->SetCharColor( tmp ); in ClearMessage()
224 void ShowWithAutoScroll(nn::dbg::DirectPrint* pdp, const char* msg) in ShowWithAutoScroll() argument
230 bool ret = PutHaltMessage( pdp, pos, msg ); in ShowWithAutoScroll()
233 pdp->Flush(); in ShowWithAutoScroll()
241 ClearMessage( pdp, pos, msg ); in ShowWithAutoScroll()
256 void ShowWithManualScroll(nn::dbg::DirectPrint* pdp, const char* msg) in ShowWithManualScroll() argument
271 inDrawBox = PutHaltMessage( pdp, pos, msg ); in ShowWithManualScroll()
273 pdp->Flush(); in ShowWithManualScroll()
292 ClearMessage( pdp, pos, msg ); in ShowWithManualScroll()
304 ClearMessage( pdp, pos, msg ); in ShowWithManualScroll()
327 void StealDisplaybuffer(nn::dbg::DirectPrint* pdp) in StealDisplaybuffer() argument
342 pdp->ChangeDisplaybuffer( reinterpret_cast< void* > (addr) , in StealDisplaybuffer()