HomeSort by relevance Sort by last modified time
    Searched refs:Closure (Results 1 - 25 of 580) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/threading/
post_task_and_reply_impl.h 33 const Closure& task,
34 const Closure& reply);
38 const Closure& task) = 0;
worker_pool.h 37 const base::Closure& task, bool task_is_slow);
43 const Closure& task,
44 const Closure& reply,
post_task_and_reply_impl.cc 24 // invoking the Closure destructor on the wrong thread.
28 const Closure& task,
29 const Closure& reply)
66 Closure reply_;
67 Closure task_;
76 const Closure& task,
77 const Closure& reply) {
worker_pool.cc 28 const Closure& task) override {
46 const Closure& task,
57 const Closure& task,
74 const Closure& task,
85 const Closure& task,
106 const Closure& task,
107 const Closure& reply,
sequenced_worker_pool.h 248 const Closure& task);
260 const Closure& task,
266 const Closure& task,
282 const Closure& task);
288 const Closure& task);
302 const Closure& task,
310 const Closure& task,
315 const Closure& task,
  /external/libchrome/sandbox/linux/services/
init_process_reaper.h 21 base::Closure* post_fork_parent_callback);
  /external/libchrome/base/
callback_helpers.cc 13 ScopedClosureRunner::ScopedClosureRunner(const Closure& closure)
14 : closure_(closure) {}
31 Closure old_closure = Release();
36 void ScopedClosureRunner::ReplaceClosure(const Closure& closure) {
37 closure_ = closure;
40 Closure ScopedClosureRunner::Release() {
41 Closure result = closure_;
callback_helpers.h 31 // that the Closure is executed no matter how the current scope exits.
35 explicit ScopedClosureRunner(const Closure& closure);
40 // Releases the current closure if it's set and replaces it with the closure
44 // Calls the current closure and resets it, so it wont be called again.
47 // Replaces closure with the new one releasing the old one without calling it.
48 void ReplaceClosure(const Closure& closure);
50 // Releases the Closure without calling
    [all...]
task_runner.h 21 // Closure objects). The TaskRunner interface provides a way of
65 const Closure& task);
73 const Closure& task,
90 // to use WeakPtr<> in the |reply| Closure so that the reply
126 const Closure& task,
127 const Closure& reply);
task_runner.cc 24 const Closure& task) override;
37 const Closure& task) {
44 const Closure& task) {
50 const Closure& task,
51 const Closure& reply) {
pending_task.h 22 Closure task);
24 Closure task,
36 Closure task;
callback_forward.h 26 using Closure = Callback<void()>;
at_exit.h 46 static void RegisterTask(base::Closure task);
61 std::stack<base::Closure> stack_;
run_loop.h 64 // Convenience methods to get a closure that safely calls Quit() or
71 base::Closure QuitClosure();
72 base::Closure QuitWhenIdleClosure();
  /frameworks/rs/
rsScriptGroup2.h 11 class Closure;
17 Closure** closures, size_t numClosures) :
25 List<Closure*> mClosures;
rsClosure.h 20 class Closure : public ObjectBase {
22 Closure(Context* context,
29 const Closure** depClosures,
31 Closure(Context* context,
40 virtual ~Closure();
56 // Flag indicating if this closure is for a kernel (true) or invocable
71 // All the other closures which this closure depends on for one of its
73 Map<const Closure*, Map<int, ObjectBaseRef<ScriptFieldID>>*> mArgDeps;
75 // All the other closures that this closure depends on for one of its fields,
77 Map<const Closure*, Map<const ScriptFieldID*
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
router_test_util.h 29 const base::Closure& closure = base::Closure());
36 base::Closure closure_;
57 const base::Closure& closure = base::Closure());
68 void set_closure(const base::Closure& closure) { closure_ = closure; }
    [all...]
  /external/libchrome/base/timer/
mock_timer.h 17 const base::Closure& user_task,
26 const base::Closure& user_task) override;
34 base::Closure user_task_;
mock_timer.cc 16 const base::Closure& user_task,
36 const base::Closure& user_task) {
55 base::Closure old_task = user_task_;
  /system/bt/bta/include/
bta_closure_api.h 27 * This method post a closure for execution on bta thread. Please see
34 const base::Closure& task);
  /external/libbrillo/brillo/message_loops/
message_loop.h 45 // Schedule a Closure |task| to be executed after a |delay|. Returns a task
53 const base::Closure& task,
56 TaskId PostDelayedTask(const base::Closure& task, base::TimeDelta delay) {
62 TaskId PostTask(const base::Closure& task) {
66 const base::Closure& task) {
77 // passed in |mode| without blocking. When that happens, the |task| closure
87 const base::Closure& task) = 0;
93 const base::Closure& task) {
  /external/libchrome/base/message_loop/
message_loop_task_runner.h 34 const base::Closure& task,
37 const base::Closure& task,
  /external/libchrome/base/test/
sequenced_worker_pool_owner.h 45 void SetWillWaitForShutdownCallback(const Closure& callback);
61 Closure will_wait_for_shutdown_callback_;
test_io_thread.h 36 const base::Closure& task);
40 const base::Closure& task);
test_simple_task_runner.h 51 const Closure& task,
54 const Closure& task,

Completed in 1523 milliseconds

1 2 3 4 5 6 7 8 91011>>