Home | History | Annotate | Download | only in proxy

Lines Matching refs:Slot

48   // This must be called only once, so the slot must be empty.
53 base::ThreadLocalStorage::Slot* slot = new base::ThreadLocalStorage::Slot();
54 PluginGlobals::Get()->set_msg_loop_slot(slot);
56 slot->Set(this);
75 base::ThreadLocalStorage::Slot* slot = globals->msg_loop_slot();
76 if (!slot) {
77 slot = new base::ThreadLocalStorage::Slot(&ReleaseMessageLoop);
78 globals->set_msg_loop_slot(slot);
80 if (slot->Get())
89 slot->Set(this);
173 return false; // Can't be current if there's nothing in the slot.