HomeSort by relevance Sort by last modified time
    Searched defs:PostQuit (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ppapi/cpp/
message_loop.cc 80 int32_t MessageLoop::PostQuit(bool should_destroy) {
83 return get_interface<PPB_MessageLoop>()->PostQuit(
  /external/chromium_org/ppapi/c/
ppb_message_loop.h 115 * loop (via PostQuit with should_destroy = PP_TRUE). In this case, any
120 * - You quit the message loop via PostQuit with should_destroy set to
124 * To do proper shutdown, call PostQuit with should_destroy = PP_TRUE. This
205 * success, the message loop will only exit when you call PostQuit().
266 * is an error to attempt to PostQuit() the main thread loop.
282 int32_t (*PostQuit)(PP_Resource message_loop, PP_Bool should_destroy);
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.cc 136 int32_t MessageLoopResource::PostQuit(PP_Bool should_destroy) {
254 int32_t PostQuit(PP_Resource message_loop, PP_Bool should_destroy) {
257 return enter.object()->PostQuit(should_destroy);
268 &PostQuit

Completed in 574 milliseconds