Symbol: GetMonitorInfo
headers/os/interface/Screen.h
75
status_t GetMonitorInfo(monitor_info* info);
headers/private/interface/PrivateScreen.h
75
status_t GetMonitorInfo(monitor_info* info);
src/kits/interface/Screen.cpp
280
return fScreen->GetMonitorInfo(info);
src/preferences/screen/MonitorView.cpp
226
if (screen.GetMonitorInfo(&info) != B_OK)
src/preferences/screen/ScreenMode.cpp
399
status_t status = screen.GetMonitorInfo(&info);
src/preferences/screen/ScreenMode.h
64
status_t GetMonitorInfo(monitor_info& info,
src/preferences/screen/ScreenWindow.cpp
1115
if (fScreenMode.GetMonitorInfo(info) == B_OK) {
src/preferences/screen/ScreenWindow.cpp
1346
status_t status = fScreenMode.GetMonitorInfo(info, &diagonalInches);
src/preferences/screen/ScreenWindow.cpp
436
if (fScreenMode.GetMonitorInfo(info) == B_OK) {
src/servers/app/Desktop.cpp
812
bool hasInfo = screen->GetMonitorInfo(info) == B_OK;
src/servers/app/Screen.cpp
216
return fHWInterface->GetMonitorInfo(&info);
src/servers/app/Screen.h
33
status_t GetMonitorInfo(monitor_info& info) const;
src/servers/app/ServerApp.cpp
3244
status_t status = fDesktop->HWInterface()->GetMonitorInfo(&info);
src/servers/app/VirtualScreen.cpp
134
bool hasInfo = screen->GetMonitorInfo(info) == B_OK;
src/servers/app/VirtualScreen.cpp
250
bool hasInfo = screen->GetMonitorInfo(info) == B_OK;
src/servers/app/drawing/HWInterface.h
94
virtual status_t GetMonitorInfo(monitor_info* info);
src/servers/app/drawing/interface/local/AccelerantHWInterface.h
48
virtual status_t GetMonitorInfo(monitor_info* info);