Searched defs:PostQuit (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ppapi/c/
H A Dppb_message_loop.h115 * 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); member in struct:PPB_MessageLoop_1_0
/external/chromium_org/ppapi/cpp/
H A Dmessage_loop.cc80 int32_t MessageLoop::PostQuit(bool should_destroy) { function in class:pp::MessageLoop
83 return get_interface<PPB_MessageLoop>()->PostQuit(
/external/chromium_org/ppapi/proxy/
H A Dppb_message_loop_proxy.cc136 int32_t MessageLoopResource::PostQuit(PP_Bool should_destroy) { function in class:ppapi::proxy::MessageLoopResource
254 int32_t PostQuit(PP_Resource message_loop, PP_Bool should_destroy) { function in namespace:ppapi::proxy
257 return enter.object()->PostQuit(should_destroy);
268 &PostQuit

Completed in 427 milliseconds