HomeSort by relevance Sort by last modified time
    Searched refs:MSG (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/WebCore/platform/win/
EventLoopWin.cpp 35 MSG msg; local
36 if (!GetMessage(&msg, 0, 0, 0)) {
41 TranslateMessage(&msg);
42 DispatchMessage(&msg);
  /frameworks/base/core/java/android/os/
CountDownTimer.java 76 mHandler.removeMessages(MSG);
88 mHandler.sendMessage(mHandler.obtainMessage(MSG));
105 private static final int MSG = 1;
112 public void handleMessage(Message msg) {
121 sendMessageDelayed(obtainMessage(MSG), millisLeft);
133 sendMessageDelayed(obtainMessage(MSG), delay);
  /external/chromium/base/
message_pump_win.h 35 // The message may be undefined in which case msg.message is 0
36 virtual void WillProcessMessage(const MSG& msg) = 0;
39 // The message may be undefined in which case msg.message is 0
40 virtual void DidProcessMessage(const MSG& msg) = 0;
56 virtual bool Dispatch(const MSG& msg) = 0;
71 void WillProcessMessage(const MSG& msg);
    [all...]
message_pump_win.cc 33 void MessagePumpWin::WillProcessMessage(const MSG& msg) {
34 FOR_EACH_OBSERVER(Observer, observers_, WillProcessMessage(msg));
37 void MessagePumpWin::DidProcessMessage(const MSG& msg) {
38 FOR_EACH_OBSERVER(Observer, observers_, DidProcessMessage(msg));
149 MSG msg; local
151 if (!PeekMessage(&msg, NULL, WM_PAINT, WM_PAINT, PM_REMOVE))
154 if (!PeekMessage(&msg, NULL, 0, 0, PM_REMOVE | PM_QS_PAINT)
275 MSG msg = {0}; local
334 MSG msg; local
381 MSG msg; local
    [all...]
message_loop.h 455 void WillProcessMessage(const MSG& message);
456 void DidProcessMessage(const MSG& message);
message_loop.cc 579 void MessageLoopForUI::WillProcessMessage(const MSG& message) {
582 void MessageLoopForUI::DidProcessMessage(const MSG& message) {
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFormatterTest.java 27 static String MSG = "msg, pls. ignore it";
30 LogRecord r = new LogRecord(Level.FINE, MSG);
OldLogRecordTest.java 26 static final String MSG = "test msg, pls. ignore itb";
28 private LogRecord lr = new LogRecord(Level.CONFIG, MSG);
83 lr = new LogRecord(Level.CONFIG, "msg thread");
  /external/grub/stage1/
stage1.S 33 #define MSG(x) movw $ABS(x), %si; call message
154 MSG(notification_string)
381 MSG(geometry_error_string)
388 MSG(hd_probe_error_string)
395 MSG(read_error_string)
398 MSG(general_error_string)
474 MSG(fd_probe_error_string)
  /external/grub/stage2/
start.S 41 #define MSG(x) movw $ABS(x), %si; call message
70 MSG(notification_string)
294 (MSG modifies SI, which is saved, and unused AX and BX) */
296 MSG(notification_step)
313 MSG(notification_done)
326 MSG(geometry_error_string)
333 MSG(read_error_string)
336 MSG(general_error_string)
start_eltorito.S 49 #define MSG(x) mov $ABS(x), %si; call message;
96 MSG(notification_string)
112 MSG(notification_done)
162 MSG(notification_step)
203 MSG(read_error_string)
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 52 MSG msg; member in struct:DelayedMessage
111 static MSG makeMsg(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
113 MSG result = {0};
124 static LRESULT dispatchMessage(const MSG* msg)
126 ASSERT(msg);
127 ::TranslateMessage(msg);
128 return ::DispatchMessage(msg);
138 MSG msg = makeMsg(webViewWindow, WM_RBUTTONDOWN, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition. (…) local
205 MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); local
291 MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); local
339 MSG msg = makeMsg(webViewWindow, WM_MOUSEMOVE, down ? MK_LBUTTON : 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); local
355 MSG msg = { 0 }; local
512 MSG msg = makeMsg(webViewWindow, (::GetKeyState(VK_MENU) & 0x8000) ? WM_SYSKEYDOWN : WM_KEYDOWN, virtualKeyCode, keyData); local
544 MSG msg = {}; local
    [all...]
  /external/e2fsprogs/lib/ss/
help.c 101 #define MSG "No info found for "
102 char *buf = malloc(strlen (MSG) + strlen (argv[1]) + 1);
103 strcpy(buf, MSG);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_wsc.c 25 enum { START, MSG, FRAG_ACK, WAIT_FRAG_ACK, DONE, FAIL } state;
42 case MSG:
43 return "MSG";
105 data->state = registrar ? START : MSG;
215 eap_wsc_state(data, MSG);
235 case MSG:
388 eap_wsc_state(data, MSG);
430 eap_wsc_state(data, MSG);
437 eap_wsc_state(data, MSG);
eap_tls_common.h 27 enum { MSG, FRAG_ACK, WAIT_FRAG_ACK } state;
eap_ikev2.c 25 enum { MSG, FRAG_ACK, WAIT_FRAG_ACK, DONE, FAIL } state;
63 case MSG:
64 return "MSG";
95 data->state = MSG;
187 const u8 *msg = wpabuf_head(req); local
192 msg, len, wpabuf_put(req, icv_len));
219 case MSG:
386 "Length (%d; %ld remaining in this msg)",
403 eap_ikev2_state(data, MSG);
421 data->state = MSG;
    [all...]
eap_tls_common.c 157 data->state = MSG;
317 data->state = MSG;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 53 MSG=;EVAL=
262 MSG="RGB and YUV output frame sizes are identical. Printing multiples of the frame rates."
331 if [ "$MSG" ]
333 echo perf: NOTE: $MSG
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican_test.c 26 unsigned char K[32], MSG[64], T[16];
95 if ((err = pelican_process(&pel, tests[x].MSG, tests[x].ptlen)) != CRYPT_OK) {
  /external/libpcap/
pcap-septel.c 42 #include <msg.h>
76 MSG *m;
117 m = (MSG*)h;
139 dp = get_param(m);/* get pointer to MSG parameter area (m->param) */
  /external/webkit/WebKitTools/WebKitAPITest/
TestsController.cpp 57 MSG msg;
59 while ((result = GetMessage(&msg, 0, 0, 0))) {
62 TranslateMessage(&msg);
63 DispatchMessage(&msg);
66 if (msg.message != WM_QUIT)
  /external/openssl/apps/
winrand.c 74 MSG msg; local
107 while (GetMessage(&msg, NULL, 0, 0))
109 TranslateMessage(&msg);
110 DispatchMessage(&msg);
113 return msg.wParam;
  /external/quake/quake/src/WinQuake/
sys_wind.cpp 272 MSG msg; local
  /external/bluetooth/glib/tests/
gio-test.c 235 MSG msg; local
240 error = g_io_channel_read (channel, &msg, sizeof (MSG), &nb);
255 msg.hwnd, msg.message, msg.wParam, msg.lParam);
426 int msg = WM_USER + (rand() % 100); local
430 msg, wparam, lparam, hwnd)
    [all...]
  /external/quake/quake/src/QW/client/
sys_win.c 503 MSG msg; local
505 while (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
510 if (!GetMessage (&msg, NULL, 0, 0))
512 TranslateMessage (&msg);
513 DispatchMessage (&msg);
554 MSG msg; local

Completed in 2455 milliseconds

1 2