• Home
  • Raw
  • Download

Lines Matching full:cb

65   OnceClosure cb = BindOnce(&SetBool, &val, true);  in TEST_F()  local
66 OnceClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
76 OnceCallback<void(bool*, bool)> cb = BindOnce(&SetBool); in TEST_F() local
78 BindPostTask(task_runner_, std::move(cb)); in TEST_F()
90 OnceClosure cb = in TEST_F() local
92 OnceClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
103 OnceCallback<void(std::unique_ptr<int>)> cb = in TEST_F() local
106 BindPostTask(task_runner_, std::move(cb)); in TEST_F()
147 // `checker` is owned by `cb` which is wrapped in `post_cb`. `post_cb` is run in TEST_F()
149 // thread to invoke `cb` which runs SequenceRestrictionChecker::Run(). After in TEST_F()
150 // `cb` has been invoked `checker` is destroyed along with the BindState. in TEST_F()
151 OnceClosure cb = in TEST_F() local
153 OnceClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
174 // `checker` is owned by `cb` which is wrapped in `post_cb`. `post_cb` is in TEST_F()
176 // main thread to destroy `cb` and `checker`. in TEST_F()
177 OnceClosure cb = in TEST_F() local
179 OnceClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
191 RepeatingClosure cb = BindRepeating(&SetBool, &val, true); in TEST_F() local
192 RepeatingClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
209 RepeatingCallback<void(bool*, bool)> cb = BindRepeating(&SetBool); in TEST_F() local
211 BindPostTask(task_runner_, std::move(cb)); in TEST_F()
229 RepeatingCallback<void(std::unique_ptr<int>)> cb = in TEST_F() local
232 BindPostTask(task_runner_, std::move(cb)); in TEST_F()
283 // `checker` is owned by `cb` which is wrapped in `post_cb`. `post_cb` is run in TEST_F()
285 // thread to invoke `cb` which runs SequenceRestrictionChecker::Run(). After in TEST_F()
286 // `cb` has been invoked `checker` is destroyed along with the BindState. in TEST_F()
287 RepeatingClosure cb = in TEST_F() local
289 RepeatingClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()
310 // `checker` is owned by `cb` which is wrapped in `post_cb`. `post_cb` is in TEST_F()
312 // main thread to destroy `cb` and `checker`. in TEST_F()
313 RepeatingClosure cb = in TEST_F() local
315 RepeatingClosure post_cb = BindPostTask(task_runner_, std::move(cb)); in TEST_F()