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