Searched refs:wnd_ (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/webrtc/base/ |
D | win32window.cc | 25 Win32Window::Win32Window() : wnd_(NULL) { in Win32Window() 29 ASSERT(NULL == wnd_); in ~Win32Window() 34 if (wnd_) { in Create() 61 wnd_ = ::CreateWindowEx(exstyle, kWindowBaseClassName, title, style, in Create() 63 return (NULL != wnd_); in Create() 67 VERIFY(::DestroyWindow(wnd_) != FALSE); in Destroy() 97 that->wnd_ = hwnd; in WndProc() 111 that->wnd_ = NULL; in WndProc()
|
D | win32socketserver.cc | 718 wnd_(this), in Win32SocketServer() 723 if (!wnd_.Create(NULL, kWindowName, 0, 0, 0, 0, 0, 0)) { in Win32SocketServer() 729 if (wnd_.handle() != NULL) { in ~Win32SocketServer() 730 KillTimer(wnd_.handle(), 1); in ~Win32SocketServer() 731 wnd_.Destroy(); in ~Win32SocketServer() 768 SetTimer(wnd_.handle(), 0, cms, NULL); in Wait() 783 KillTimer(wnd_.handle(), 0); in Wait() 802 if (wnd_.handle()) { in WakeUp() 811 PostMessage(wnd_.handle(), s_wm_wakeup_id, 0, 0); in WakeUp() 837 KillTimer(wnd_.handle(), 1); in Pump() [all …]
|
D | win32window.h | 29 HWND handle() const { return wnd_; } in handle() 49 HWND wnd_; variable
|
D | win32socketserver.h | 113 HWND handle() { return wnd_.handle(); } in handle() 126 MessageWindow wnd_; variable
|
/external/webrtc/webrtc/examples/peerconnection/client/ |
D | main_wnd.cc | 70 : ui_(CONNECT_TO_SERVER), wnd_(NULL), edit1_(NULL), edit2_(NULL), in MainWnd() 84 ASSERT(wnd_ == NULL); in Create() 89 wnd_ = ::CreateWindowExW(WS_EX_OVERLAPPEDWINDOW, kClassName, L"WebRTC", in Create() 94 ::SendMessage(wnd_, WM_SETFONT, reinterpret_cast<WPARAM>(GetDefaultFont()), in Create() 100 return wnd_ != NULL; in Create() 106 ret = ::DestroyWindow(wnd_); in Destroy() 117 return wnd_ && ::IsWindow(wnd_) != FALSE; in IsWindow() 178 ::PostMessage(wnd_, WM_COMMAND, MAKEWPARAM(GetDlgCtrlID(listbox_), in SwitchToPeerList() 338 MessageBoxA(wnd_, "OK!", "Yeah", MB_OK); in OnDefaultAction() 398 me->wnd_ = hwnd; in WndProc() [all …]
|
D | main_wnd.h | 103 HWND handle() const { return wnd_; } in handle() 132 HWND wnd_; variable 182 HWND wnd_; variable
|
/external/webrtc/webrtc/examples/peerconnection/client/linux/ |
D | main.cc | 24 : thread_(thread), wnd_(wnd), conductor_(NULL), client_(NULL) {} in CustomSocketServer() 40 if (!wnd_->IsWindow() && !conductor_->connection_active() && in Wait() 50 GtkMainWnd* wnd_; member in CustomSocketServer
|