Home | History | Annotate | Download | only in dbus

Lines Matching refs:Callback

16 #include "base/callback.h"
71 typedef base::Callback<void(ErrorResponse*)> ErrorCallback;
74 typedef base::Callback<void(Response*)> ResponseCallback;
77 typedef base::Callback<void (Signal*)> SignalCallback;
80 typedef base::Callback<void(
85 typedef base::Callback<void(
93 typedef base::Callback<void (const std::string&, const std::string&, bool)>
115 // |callback| will be called in the origin thread, once the method call
116 // is complete. As it's called in the origin thread, |callback| can
120 // EmptyResponseCallback() can be passed to the |callback| parameter.
123 // be passed to the callback. If unsuccessful, NULL will be passed to
124 // the callback.
129 ResponseCallback callback);
133 // |callback| and |error_callback| will be called in the origin thread, once
135 // |callback| can safely reference objects in the origin thread (i.e.
138 // EmptyResponseCallback() can be passed to the |callback| parameter.
141 // be passed to the callback. If unsuccessful, the error callback will be
143 // callback if available, otherwise NULL will be passed.
148 ResponseCallback callback,
172 // Sets a callback for "NameOwnerChanged" signal. The callback is called on
175 virtual void SetNameOwnerChangedCallback(NameOwnerChangedCallback callback);
177 // Runs the callback as soon as the service becomes available.
179 WaitForServiceToBeAvailableCallback callback);
189 // Returns an empty callback that does nothing. Can be used for
229 // Runs the response callback with the given response object.
277 // Adds the match rule to the bus and associate the callback with the signal.
312 // The callback called when NameOwnerChanged signal is received.