Searched defs:lParam (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_advanced.cpp68 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
72 if(lParam)
74 logger = (Logger *)(((PROPSHEETPAGE *)lParam)->lParam);
86 BOOL CALLBACK AdvancedPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
91 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
93 HANDLE_WM_NOTIFY(hWnd, wParam, lParam, onNotify);
H A Dgui_general.cpp68 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
72 if(lParam)
74 logger = (Logger *)(((PROPSHEETPAGE *)lParam)->lParam);
86 BOOL CALLBACK GeneralPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
91 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
93 HANDLE_WM_NOTIFY(hWnd, wParam, lParam, onNotify);
H A Dgui_pause.cpp58 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
64 BOOL CALLBACK PauseDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
69 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
71 HANDLE_WM_COMMAND(hWnd, wParam, lParam, onCommand);
H A Dgui_fiter.cpp97 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
101 if(lParam)
103 logger = (Logger *)(((PROPSHEETPAGE *)lParam)->lParam);
124 BOOL CALLBACK FilterPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
129 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
131 HANDLE_WM_COMMAND(hWnd, wParam, lParam, onCommand);
134 HANDLE_WM_NOTIFY(hWnd, wParam, lParam, onNotify);
H A Dgui_log.cpp126 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
130 if(lParam)
132 logger = (Logger *)(((PROPSHEETPAGE *)lParam)->lParam);
150 BOOL CALLBACK LogPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
155 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
157 HANDLE_WM_COMMAND(hWnd, wParam, lParam, onCommand);
160 HANDLE_WM_NOTIFY(hWnd, wParam, lParam, onNotify);
/external/chromium_org/remoting/host/
H A Dcontinue_window_win.cc34 LPARAM lParam);
36 BOOL OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
75 WPARAM wParam, LPARAM lParam) {
78 win = reinterpret_cast<ContinueWindowWin*>(lParam);
87 return win->OnDialogMessage(hwnd, msg, wParam, lParam);
91 WPARAM wParam, LPARAM lParam) {
74 DialogProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
90 OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
/external/chromium_org/third_party/webrtc/base/
H A Dwin32window_unittest.cc25 LPARAM lParam, LRESULT& result) {
28 msg_.lParam = lParam;
50 EXPECT_EQ(2, wnd.msg().lParam);
24 OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& result) argument
H A Dwin32window.cc77 bool Win32Window::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, argument
91 WPARAM wParam, LPARAM lParam) {
95 CREATESTRUCT* cs = reinterpret_cast<CREATESTRUCT*>(lParam);
102 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
118 return ::DefWindowProc(hwnd, uMsg, wParam, lParam);
90 WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
/external/openssl/apps/
H A Dwinrand.c116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) argument
138 if (RAND_event(iMsg, wParam, lParam) == 1 && seeded == 0)
147 return DefWindowProc(hwnd, iMsg, wParam, lParam);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHParameters.java22 int lParam)
24 if (lParam == 0)
29 return lParam < DEFAULT_MINIMUM_LENGTH ? lParam : DEFAULT_MINIMUM_LENGTH;
21 getDefaultMParam( int lParam) argument
/external/chromium_org/base/
H A Devent_recorder_win.cc26 LPARAM lParam) {
28 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
32 LPARAM lParam) {
34 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam);
164 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) { argument
171 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
176 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
192 msg_ptr = reinterpret_cast<EVENTMSG*>(lParam);
198 return CallNextHookEx(journal_hook_, nCode, wParam, lParam);
203 LPARAM lParam) {
25 StaticRecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
31 StaticPlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
202 PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-gdi/
H A Dgraw_gdi.c41 LPARAM lParam)
49 return DefWindowProc(hWnd, uMsg, wParam, lParam);
38 window_proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
/external/chromium_org/ui/events/
H A Devent_unittest.cc368 const LPARAM lParam = GetLParamFromScanCode(kNativeCodeSpace); local
369 MSG native_event = { NULL, WM_KEYUP, VKEY_SPACE, lParam };
381 const LPARAM lParam = GetLParamFromScanCode(kNativeCodeHome); local
383 MSG native_event = { NULL, WM_KEYUP, VKEY_HOME, lParam };
/external/deqp/framework/platform/win32/
H A DtcuWin32Window.cpp29 static LRESULT CALLBACK win32WindowProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
33 return window->windowProc(uMsg, wParam, lParam);
35 return DefWindowProc(hWnd, uMsg, wParam, lParam);
137 LRESULT Win32Window::windowProc (UINT uMsg, WPARAM wParam, LPARAM lParam) argument
156 return DefWindowProc(m_window, uMsg, wParam, lParam);
/external/mesa3d/src/gallium/targets/graw-gdi/
H A Dgraw_gdi.c41 LPARAM lParam)
49 return DefWindowProc(hWnd, uMsg, wParam, lParam);
38 window_proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dwindow_finder_win.cc37 static BOOL CALLBACK WindowCallbackProc(HWND hwnd, LPARAM lParam) { argument
39 BaseWindowFinder* finder = reinterpret_cast<BaseWindowFinder*>(lParam);
/external/chromium_org/chrome/installer/util/
H A Dhtml_dialog_impl.cc63 static LRESULT CALLBACK MsgFilter(int code, WPARAM wParam, LPARAM lParam);
85 LRESULT HTMLDialogWin::MsgFilter(int code, WPARAM wParam, LPARAM lParam) { argument
87 if (lParam && tweak_window) {
88 HWND target_window = reinterpret_cast<MSG*>(lParam)->hwnd;
98 return ::CallNextHookEx(hook_, code, wParam, lParam);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
45 width = lParam & 0xffff;
46 height = lParam >> 16;
55 return DefWindowProc(hwnd, message, wParam, lParam);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
45 width = lParam & 0xffff;
46 height = lParam >> 16;
55 return DefWindowProc(hwnd, message, wParam, lParam);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c47 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
53 pMMI = (MINMAXINFO *)lParam;
63 return DefWindowProc(hWnd, uMsg, wParam, lParam);
/external/chromium_org/third_party/skia/src/views/win/
H A Dskia_win.cpp171 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
175 return DefWindowProc(hWnd, message, wParam, lParam);
180 if (gSkWind->wndProc(hWnd, message, wParam, lParam)) {
183 return DefWindowProc(hWnd, message, wParam, lParam);
190 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) argument
192 UNREFERENCED_PARAMETER(lParam);
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_win.cc35 LPARAM lParam) {
43 return DefWindowProc(hWnd, uMsg, wParam, lParam);
34 ViEAutoTestWinProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
45 width = lParam & 0xffff;
46 height = lParam >> 16;
55 return DefWindowProc(hwnd, message, wParam, lParam);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
45 width = lParam & 0xffff;
46 height = lParam >> 16;
55 return DefWindowProc(hwnd, message, wParam, lParam);
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c47 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
53 pMMI = (MINMAXINFO *)lParam;
63 return DefWindowProc(hWnd, uMsg, wParam, lParam);

Completed in 5337 milliseconds

123