Home | History | Annotate | Download | only in net

Lines Matching refs:run_loop

15 #include "base/run_loop.h"
27 void OnConnectFinished(base::RunLoop* run_loop, int* save_error, int error) {
29 run_loop->Quit();
33 base::RunLoop run_loop;
34 loop->PostTask(FROM_HERE, run_loop.QuitClosure());
35 run_loop.Run();
65 explicit CloseListener(base::RunLoop* run_loop)
66 : run_loop_(run_loop) {}
103 base::RunLoop run_loop;
104 sock->Connect(base::Bind(&OnConnectFinished, &run_loop, &error));
106 FROM_HERE, run_loop.QuitClosure(),
108 run_loop.Run();
125 base::RunLoop run_loop;
127 FROM_HERE, run_loop.QuitClosure(),
129 run_loop.Run();
171 base::RunLoop run_loop;
172 CloseListener listener(&run_loop);
177 FROM_HERE, run_loop.QuitClosure(),
179 run_loop.Run();
183 base::RunLoop run_loop;
184 CloseListener listener(&run_loop);
191 FROM_HERE, run_loop.QuitClosure(),
193 run_loop.Run();