Home
last modified time | relevance | path

Searched refs:wnd_ (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/rtc_base/
Dwin32_window.cc26 Win32Window::Win32Window() : wnd_(nullptr) {} in Win32Window()
28 Win32Window::~Win32Window() { RTC_DCHECK(nullptr == wnd_); } in ~Win32Window()
32 if (wnd_) { in Create()
67 wnd_ = ::CreateWindowExW(exstyle, kWindowBaseClassName, title, style, x, y, in Create()
69 return (nullptr != wnd_); in Create()
73 const bool success = ::DestroyWindow(wnd_); in Destroy()
112 that->wnd_ = hwnd; in WndProc()
126 that->wnd_ = nullptr; in WndProc()
Dwin32_socket_server.cc673 : wnd_(this), posted_(false), hdlg_(nullptr) { in Win32SocketServer()
676 if (!wnd_.Create(nullptr, kWindowName, 0, 0, 0, 0, 0, 0)) { in Win32SocketServer()
682 if (wnd_.handle() != nullptr) { in ~Win32SocketServer()
683 KillTimer(wnd_.handle(), 1); in ~Win32SocketServer()
684 wnd_.Destroy(); in ~Win32SocketServer()
713 SetTimer(wnd_.handle(), 0, cms, nullptr); in Wait()
728 KillTimer(wnd_.handle(), 0); in Wait()
747 if (wnd_.handle()) { in WakeUp()
756 PostMessage(wnd_.handle(), s_wm_wakeup_id, 0, 0); in WakeUp()
782 KillTimer(wnd_.handle(), 1); in Pump()
[all …]
Dwin32_window.h29 HWND handle() const { return wnd_; } in handle()
59 HWND wnd_; variable
Dwin32_socket_server.h111 HWND handle() { return wnd_.handle(); } in handle()
125 MessageWindow wnd_; variable
/external/webrtc/examples/peerconnection/client/
Dmain_wnd.cc73 wnd_(NULL), in MainWnd()
96 RTC_DCHECK(wnd_ == NULL); in Create()
101 wnd_ = in Create()
107 ::SendMessage(wnd_, WM_SETFONT, reinterpret_cast<WPARAM>(GetDefaultFont()), in Create()
113 return wnd_ != NULL; in Create()
119 ret = ::DestroyWindow(wnd_); in Destroy()
130 return wnd_ && ::IsWindow(wnd_) != FALSE; in IsWindow()
191 ::PostMessage(wnd_, WM_COMMAND, in SwitchToPeerList()
350 ::MessageBoxA(wnd_, "OK!", "Yeah", MB_OK); in OnDefaultAction()
410 me->wnd_ = hwnd; in WndProc()
[all …]
Dmain_wnd.h105 HWND handle() const { return wnd_; } in handle()
133 HWND wnd_; variable
187 HWND wnd_; variable
/external/webrtc/examples/peerconnection/client/linux/
Dmain.cc31 : wnd_(wnd), conductor_(NULL), client_(NULL) {} in CustomSocketServer()
49 if (!wnd_->IsWindow() && !conductor_->connection_active() && in Wait()
59 GtkMainWnd* wnd_; member in CustomSocketServer