Searched defs:lparam (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium/base/win/
H A Dwrapped_window_proc.h41 // WPARAM wparam, LPARAM lparam) {
57 WPARAM wparam, LPARAM lparam) {
60 rv = proc(hwnd, message, wparam, lparam);
56 WrappedWindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
H A Dwrapped_window_proc_unittest.cc16 WPARAM wparam, LPARAM lparam) {
19 return DefWindowProc(hwnd, message, wparam, lparam);
15 TestWindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
/external/chromium/chrome/browser/ui/webui/options/
H A Dfont_settings_utils_win.cc16 LPARAM lparam) {
18 reinterpret_cast<std::set<std::wstring>*>(lparam);
13 EnumFontFamExProc(ENUMLOGFONTEXW *logical_font, NEWTEXTMETRICEXW *physical_font, DWORD font_type, LPARAM lparam) argument
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_decrypt_key.c26 @param lparam The system "lparam" value
27 @param lparamlen The length of the lparam value (octets)
35 const unsigned char *lparam, unsigned long lparamlen,
90 err = pkcs_1_oaep_decode(tmp, x, lparam, lparamlen, modulus_bitlen, hash_idx,
33 katja_decrypt_key(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, int hash_idx, int *stat, katja_key *key) argument
H A Dkatja_encrypt_key.c26 @param lparam The system "lparam" for the encryption
27 @param lparamlen The length of lparam (octets)
36 const unsigned char *lparam, unsigned long lparamlen,
73 if ((err = pkcs_1_oaep_encode(in, inlen, lparam,
34 katja_encrypt_key(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, prng_state *prng, int prng_idx, int hash_idx, katja_key *key) argument
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_decrypt_key.c26 @param lparam The system "lparam" value
27 @param lparamlen The length of the lparam value (octets)
36 const unsigned char *lparam, unsigned long lparamlen,
90 err = pkcs_1_oaep_decode(tmp, x, lparam, lparamlen, modulus_bitlen, hash_idx,
34 rsa_decrypt_key_ex(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, int hash_idx, int padding, int *stat, rsa_key *key) argument
H A Drsa_encrypt_key.c26 @param lparam The system "lparam" for the encryption
27 @param lparamlen The length of lparam (octets)
37 const unsigned char *lparam, unsigned long lparamlen,
79 if ((err = pkcs_1_oaep_encode(in, inlen, lparam,
35 rsa_encrypt_key_ex(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, prng_state *prng, int prng_idx, int hash_idx, int padding, rsa_key *key) argument
/external/chromium/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_win.cc43 LPARAM lparam) {
47 return msg_wnd->WndProc(hwnd, message, wparam, lparam);
49 return ::DefWindowProc(hwnd, message, wparam, lparam);
55 LPARAM lparam) {
66 switch (lparam) {
79 win_icon->HandleClickEvent(p.x, p.y, lparam == WM_LBUTTONDOWN);
85 return ::DefWindowProc(hwnd, message, wparam, lparam);
40 WndProcStatic(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
52 WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_oaep_decode.c24 @param lparam The session or system data (can be NULL)
25 @param lparamlen The length of the lparam
34 const unsigned char *lparam, unsigned long lparamlen,
127 if (lparam != NULL) {
128 if ((err = hash_memory(hash_idx, lparam, lparamlen, seed, &x)) != CRYPT_OK) {
33 pkcs_1_oaep_decode(const unsigned char *msg, unsigned long msglen, const unsigned char *lparam, unsigned long lparamlen, unsigned long modulus_bitlen, int hash_idx, unsigned char *out, unsigned long *outlen, int *res) argument
H A Dpkcs_1_oaep_encode.c24 @param lparam A session or system parameter (can be NULL)
25 @param lparamlen The length of the lparam data
35 const unsigned char *lparam, unsigned long lparamlen,
86 if (lparam != NULL) {
87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
34 pkcs_1_oaep_encode(const unsigned char *msg, unsigned long msglen, const unsigned char *lparam, unsigned long lparamlen, unsigned long modulus_bitlen, prng_state *prng, int prng_idx, int hash_idx, unsigned char *out, unsigned long *outlen) argument
/external/dropbear/libtomcrypt/testprof/
H A Dkatja_test.c11 static unsigned char lparam[] = { 0x01, 0x02, 0x03, 0x04 }; local
60 /* encrypt the key (without lparam) */
110 /* encrypt the key (with lparam) */
114 DO(katja_encrypt_key(in, kat_msgsize, out, &len, lparam, sizeof(lparam), &yarrow_prng, prng_idx, hash_idx, &key));
117 DO(katja_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat2, &key));
126 DO(katja_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key));
H A Dpkcs_1_test.c10 static const unsigned char lparam[] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 }; local
30 /* pick a random lparam len [0..16] */
41 DO(pkcs_1_oaep_encode(buf[0], l3, lparam, lparamlen, modlen, &yarrow_prng, prng_idx, hash_idx, buf[1], &l1));
45 DO(pkcs_1_oaep_decode(buf[1], l1, lparam, lparamlen, modlen, hash_idx, buf[2], &l2, &res1));
H A Drsa_test.c131 static unsigned char lparam[] = { 0x01, 0x02, 0x03, 0x04 }; local
183 /* encrypt the key (without lparam) */
233 /* encrypt the key (with lparam) */
237 DO(rsa_encrypt_key(in, rsa_msgsize, out, &len, lparam, sizeof(lparam), &yarrow_prng, prng_idx, hash_idx, &key));
240 DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat2, &key));
249 DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key));
/external/chromium/chrome/browser/
H A Dprocess_singleton.h138 LPARAM lparam);
143 LPARAM lparam) {
146 return msg_wnd->WndProc(hwnd, message, wparam, lparam);
140 WndProcStatic(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
H A Dprocess_singleton_win.cc304 WPARAM wparam, LPARAM lparam) {
308 reinterpret_cast<COPYDATASTRUCT*>(lparam));
313 return ::DefWindowProc(hwnd, message, wparam, lparam);
303 WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
H A Dexternal_tab_container_win.h256 LPARAM lparam);
360 WPARAM wparam, LPARAM lparam) {
359 ProcessUnhandledKeyStroke(HWND window, UINT message, WPARAM wparam, LPARAM lparam) argument
/external/webkit/Source/WebKit/chromium/src/win/
H A DWebInputEventFactory.cpp45 static bool isKeyPad(WPARAM wparam, LPARAM lparam) argument
50 keypad = (lparam >> 16) & KF_EXTENDED;
62 keypad = !((lparam >> 16) & KF_EXTENDED);
100 WPARAM wparam, LPARAM lparam)
152 if (LOWORD(lparam) > 1)
154 if (isKeyPad(wparam, lparam))
180 WPARAM wparam, LPARAM lparam)
201 lparam = GetRelativeCursorPos(hwnd);
242 result.x = static_cast<short>(LOWORD(lparam));
243 result.y = static_cast<short>(HIWORD(lparam));
99 keyboardEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
179 mouseEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
309 mouseWheelEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
[all...]
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dtab_contents_drag_win.cc43 LRESULT CALLBACK MsgFilterProc(int code, WPARAM wparam, LPARAM lparam) { argument
46 MSG* msg = reinterpret_cast<MSG*>(lparam);
65 return CallNextHookEx(msg_hook, code, wparam, lparam);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DSurface.cpp315 static LRESULT CALLBACK SurfaceWindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) { argument
323 return CallWindowProc(prevWndFunc, hwnd, message, wparam, lparam);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp446 WebKeyboardEvent WebEventFactory::createWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
455 bool autoRepeat = HIWORD(lparam) & KF_REPEAT;
456 bool isKeypad = isKeypadEvent(wparam, lparam, type);
/external/chromium/base/
H A Dmessage_pump_win.cc164 HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) {
173 return DefWindowProc(hwnd, message, wparam, lparam);
163 WndProcThunk( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
H A Dmessage_loop_unittest.cc1191 LRESULT CALLBACK MsgFilterProc(int code, WPARAM wparam, LPARAM lparam) { argument
1193 MSG* msg = reinterpret_cast<MSG*>(lparam);
/external/chromium/chrome/browser/ui/views/
H A Dabout_ipc_dialog.cc155 INT_PTR CALLBACK DialogProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { argument
167 NMLISTVIEW* info = reinterpret_cast<NM_LISTVIEW*>(lparam);
H A Dshell_dialogs_win.cc168 WPARAM wparam, LPARAM lparam) {
167 SaveAsDialogHook(HWND dialog, UINT message, WPARAM wparam, LPARAM lparam) argument
/external/webkit/Tools/DumpRenderTree/chromium/
H A DEventSender.cpp632 unsigned long lparam = static_cast<unsigned long>(arguments[2].toDouble()); local
633 webview()->handleInputEvent(WebInputEventFactory::keyboardEvent(0, msg, arguments[1].toInt32(), lparam));

Completed in 355 milliseconds

12