OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stop_cb
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/media/base/
pipeline_unittest.cc
49
ACTION_P2(Stop, pipeline,
stop_cb
) {
50
pipeline->Stop(
stop_cb
);
1013
base::Closure
stop_cb
= base::Bind(
local
1124
base::Closure
stop_cb
= base::Bind(
local
[
all
...]
pipeline.h
114
// Asynchronously stops the pipeline, executing |
stop_cb
| when the pipeline
120
// It is safe to delete the pipeline during the execution of |
stop_cb
|.
121
void Stop(const base::Closure&
stop_cb
);
277
void StopTask(const base::Closure&
stop_cb
);
pipeline.cc
88
void Pipeline::Stop(const base::Closure&
stop_cb
) {
91
&Pipeline::StopTask, base::Unretained(this),
stop_cb
));
770
void Pipeline::StopTask(const base::Closure&
stop_cb
) {
775
stop_cb
.Run();
779
stop_cb_ =
stop_cb
;
Completed in 430 milliseconds