OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMsgHaveWork
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
message_pump_win.cc
19
static const int
kMsgHaveWork
= WM_USER + 1;
99
PostMessage(message_hwnd_,
kMsgHaveWork
, reinterpret_cast<WPARAM>(this), 0);
166
case
kMsgHaveWork
:
286
// Since we handled a
kMsgHaveWork
message, we must still update this flag.
344
// While running our main message pump, we discard
kMsgHaveWork
messages.
345
if (msg.message ==
kMsgHaveWork
&& msg.hwnd == message_hwnd_)
366
// When we encounter a
kMsgHaveWork
message, this method is called to peek
368
// goal is to make the
kMsgHaveWork
as non-intrusive as possible, even though
370
// peeks a message while there is no chance for a
kMsgHaveWork
to be pending,
371
// then resets the have_work_ flag (allowing a replacement
kMsgHaveWork
t
[
all
...]
/external/chromium_org/base/message_loop/
message_pump_win.cc
33
static const int
kMsgHaveWork
= WM_USER + 1;
116
BOOL ret = PostMessage(message_hwnd_,
kMsgHaveWork
,
182
case
kMsgHaveWork
:
306
// Since we handled a
kMsgHaveWork
message, we must still update this flag.
366
// While running our main message pump, we discard
kMsgHaveWork
messages.
367
if (msg.message ==
kMsgHaveWork
&& msg.hwnd == message_hwnd_)
390
// When we encounter a
kMsgHaveWork
message, this method is called to peek
392
// goal is to make the
kMsgHaveWork
as non-intrusive as possible, even though
394
// peeks a message while there is no chance for a
kMsgHaveWork
to be pending,
395
// then resets the have_work_ flag (allowing a replacement
kMsgHaveWork
t
[
all
...]
Completed in 24 milliseconds