Home | History | Annotate | Download | only in message_loop

Lines Matching defs:cookie

450         cookie(c),
455 int cookie;
459 return type == other.type && cookie == other.cookie && start == other.start;
483 return os << item.type << " " << item.cookie << " starts";
485 return os << item.type << " " << item.cookie << " ends";
490 void RecordStart(TaskType type, int cookie) {
491 TaskItem item(type, cookie, true);
496 void RecordEnd(TaskType type, int cookie) {
497 TaskItem item(type, cookie, false);
514 void RecursiveFunc(TaskList* order, int cookie, int depth,
516 order->RecordStart(RECURSIVE, cookie);
522 Bind(&RecursiveFunc, order, cookie, depth - 1, is_reentrant));
524 order->RecordEnd(RECURSIVE, cookie);
527 void QuitFunc(TaskList* order, int cookie) {
528 order->RecordStart(QUITMESSAGELOOP, cookie);
530 cookie);
565 void RecursiveSlowFunc(TaskList* order, int cookie, int depth,
567 RecursiveFunc(order, cookie, depth, is_reentrant);
571 void OrderedFunc(TaskList* order, int cookie) {
572 order->RecordStart(ORDERED, cookie);
573 order->RecordEnd(ORDERED, cookie);
670 void FuncThatPumps(TaskList* order, int cookie) {
671 order->RecordStart(PUMPS, cookie);
676 order->RecordEnd(PUMPS, cookie);
679 void SleepFunc(TaskList* order, int cookie, TimeDelta delay) {
680 order->RecordStart(SLEEP, cookie);
682 order->RecordEnd(SLEEP, cookie);
723 void FuncThatRuns(TaskList* order, int cookie, RunLoop* run_loop) {
724 order->RecordStart(RUNS, cookie);
729 order->RecordEnd(RUNS, cookie);