Lines Matching defs:RemoteHWInterface

9 #include "RemoteHWInterface.h"
27 #define TRACE(x...) /*debug_printf("RemoteHWInterface: " x)*/
28 #define TRACE_ALWAYS(x...) debug_printf("RemoteHWInterface: " x)
29 #define TRACE_ERROR(x...) debug_printf("RemoteHWInterface: " x)
34 RemoteHWInterface::CallbackFunction callback;
39 RemoteHWInterface::RemoteHWInterface(const char* target)
123 RemoteHWInterface::~RemoteHWInterface()
139 RemoteHWInterface::Initialize()
146 RemoteHWInterface::Shutdown()
154 RemoteHWInterface::CreateDrawingEngine()
161 RemoteHWInterface::CreateEventStream()
168 RemoteHWInterface::AddCallback(uint32 token, CallbackFunction callback,
190 RemoteHWInterface::RemoveCallback(uint32 token)
203 RemoteHWInterface::_FindCallback(uint32 token)
211 RemoteHWInterface::_CallbackCompare(const uint32* key,
225 RemoteHWInterface::_EventThreadEntry(void* data)
227 return ((RemoteHWInterface*)data)->_EventThread();
232 RemoteHWInterface::_EventThread()
320 RemoteHWInterface::_NewConnectionCallback(void *cookie, BNetEndpoint &endpoint)
322 return ((RemoteHWInterface *)cookie)->_NewConnection(endpoint);
327 RemoteHWInterface::_NewConnection(BNetEndpoint &endpoint)
348 RemoteHWInterface::_Disconnect()
363 RemoteHWInterface::SetMode(const display_mode& mode)
373 RemoteHWInterface::GetMode(display_mode* mode)
387 RemoteHWInterface::GetPreferredMode(display_mode* mode)
395 RemoteHWInterface::GetDeviceInfo(accelerant_device_info* info)
403 strlcpy(info->name, "Haiku, Inc. RemoteHWInterface", sizeof(info->name));
413 RemoteHWInterface::GetFrameBufferConfig(frame_buffer_config& config)
421 RemoteHWInterface::GetModeList(display_mode** _modes, uint32* _count)
439 RemoteHWInterface::GetPixelClockLimits(display_mode* mode, uint32* low,
448 RemoteHWInterface::GetTimingConstraints(display_timing_constraints* constraints)
456 RemoteHWInterface::ProposeMode(display_mode* candidate, const display_mode* low,
466 RemoteHWInterface::SetDPMSMode(uint32 state)
473 RemoteHWInterface::DPMSMode()
480 RemoteHWInterface::DPMSCapabilities()
487 RemoteHWInterface::SetBrightness(float)
494 RemoteHWInterface::GetBrightness(float*)
501 RemoteHWInterface::RetraceSemaphore()
508 RemoteHWInterface::WaitForRetrace(bigtime_t timeout)
515 RemoteHWInterface::SetCursor(ServerCursor* cursor)
525 RemoteHWInterface::SetCursorVisible(bool visible)
535 RemoteHWInterface::MoveCursorTo(float x, float y)
546 RemoteHWInterface::SetDragBitmap(const ServerBitmap* bitmap,
557 RemoteHWInterface::FrontBuffer() const
564 RemoteHWInterface::BackBuffer() const
571 RemoteHWInterface::IsDoubleBuffered() const
578 RemoteHWInterface::InvalidateRegion(const BRegion& region)
588 RemoteHWInterface::Invalidate(const BRect& frame)
598 RemoteHWInterface::CopyBackToFront(const BRect& frame)
605 RemoteHWInterface::_FillDisplayModeTiming(display_mode &mode)