Lines Matching refs:pending_call
224 for (auto* pending_call : pending_calls_) { in Detach() local
225 dbus_pending_call_cancel(pending_call); in Detach()
226 dbus_pending_call_unref(pending_call); in Detach()
272 DBusPendingCall* pending_call = NULL; in StartAsyncMethodCall() local
274 bus_->SendWithReply(request_message, &pending_call, timeout_ms); in StartAsyncMethodCall()
284 pending_call, in StartAsyncMethodCall()
289 pending_calls_.insert(pending_call); in StartAsyncMethodCall()
295 void ObjectProxy::OnPendingCallIsComplete(DBusPendingCall* pending_call, in OnPendingCallIsComplete() argument
301 DBusMessage* response_message = dbus_pending_call_steal_reply(pending_call); in OnPendingCallIsComplete()
311 pending_calls_.erase(pending_call); in OnPendingCallIsComplete()
312 dbus_pending_call_unref(pending_call); in OnPendingCallIsComplete()
374 void ObjectProxy::OnPendingCallIsCompleteThunk(DBusPendingCall* pending_call, in OnPendingCallIsCompleteThunk() argument
379 self->OnPendingCallIsComplete(pending_call, in OnPendingCallIsCompleteThunk()