Home
last modified time | relevance | path

Searched refs:hook_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/installer/util/
Dhtml_dialog_impl.cc67 static HHOOK hook_; member in installer::HTMLDialogWin
78 HHOOK HTMLDialogWin::hook_ = NULL; member in installer::HTMLDialogWin
98 return ::CallNextHookEx(hook_, code, wParam, lParam); in MsgFilter()
120 hook_ = ::SetWindowsHookEx(WH_GETMESSAGE, MsgFilter, NULL, in InternalDoDialog()
122 if (hook_) in InternalDoDialog()
150 if (hook_) { in InternalDoDialog()
151 ::UnhookWindowsHookEx(hook_); in InternalDoDialog()
153 hook_ = NULL; in InternalDoDialog()
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
Dauto_testing_hook.h67 explicit AutoTestingHookHolder(AutoTestingHookBase* hook) : hook_(hook) {} in AutoTestingHookHolder()
68 ~AutoTestingHookHolder() { delete hook_; } in ~AutoTestingHookHolder() local
71 AutoTestingHookBase* hook_; variable
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
Dauto_testing_hook.h67 explicit AutoTestingHookHolder(AutoTestingHookBase* hook) : hook_(hook) {} in AutoTestingHookHolder()
68 ~AutoTestingHookHolder() { delete hook_; } in ~AutoTestingHookHolder() local
71 AutoTestingHookBase* hook_; variable
/external/chromium_org/remoting/host/win/
Drdp_client_window.cc108 HHOOK hook_; member in remoting::RdpClientWindow::WindowHook
487 RdpClientWindow::WindowHook::WindowHook() : hook_(NULL) { in WindowHook()
491 hook_ = SetWindowsHookEx(WH_CBT, in WindowHook()
498 CHECK(hook_); in WindowHook()
509 BOOL result = UnhookWindowsHookEx(hook_); in ~WindowHook()
517 HHOOK hook = g_window_hook.Pointer()->Get()->hook_; in CloseWindowOnActivation()