HomeSort by relevance Sort by last modified time
    Searched refs:nestable (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/
message_loop.h 56 // Please be SURE your task is reentrant (nestable) and all global variables
226 // Enables nestable tasks on |loop| while in scope.
291 bool nestable; // True if OK to dispatch from a nested loop. member in struct:MessageLoop::PendingTask
293 PendingTask(Task* task, bool nestable)
294 : task(task), sequence_num(0), nestable(nestable) {
335 // Called to process any delayed non-nestable tasks.
344 // non-nestable task currently processing, in which case the new_task is
372 int64 delay_ms, bool nestable);
400 // A queue of non-nestable tasks that we had to defer because when it cam
    [all...]
message_loop.cc 259 bool nestable) {
262 PendingTask pending_task(task, nestable);
327 if (pending_task.nestable || state_->run_depth == 1) {
335 // and the task isn't nestable.
  /external/chromium/net/socket/
tcp_client_socket_pool_unittest.cc 516 MessageLoop::ScopedNestableTaskAllower nestable(
client_socket_pool_base_unittest.cc     [all...]

Completed in 478 milliseconds