HomeSort by relevance Sort by last modified time
    Searched refs:IqRequest (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/remoting/jingle_glue/
iq_sender.h 28 class IqRequest;
37 typedef base::Callback<void(IqRequest* request,
43 // Send an iq stanza. Returns an IqRequest object that represends
45 // received. Destroy the returned IqRequest to cancel the callback.
48 scoped_ptr<IqRequest> SendIq(scoped_ptr<buzz::XmlElement> stanza,
52 scoped_ptr<IqRequest> SendIq(const std::string& type,
64 typedef std::map<std::string, IqRequest*> IqRequestMap;
65 friend class IqRequest;
73 // Removes |request| from the list of pending requests. Called by IqRequest.
74 void RemoveRequest(IqRequest* request)
    [all...]
iq_sender.cc 43 scoped_ptr<IqRequest> IqSender::SendIq(scoped_ptr<buzz::XmlElement> stanza,
49 return scoped_ptr<IqRequest>();
52 scoped_ptr<IqRequest> request(new IqRequest(this, callback, addressee));
58 scoped_ptr<IqRequest> IqSender::SendIq(const std::string& type,
65 void IqSender::RemoveRequest(IqRequest* request) {
122 IqRequest* request = it->second;
137 IqRequest::IqRequest(IqSender* sender, const IqSender::ReplyCallback& callback,
144 IqRequest::~IqRequest()
    [all...]
jingle_info_request.h 53 void OnResponse(IqRequest* request, const buzz::XmlElement* stanza);
56 scoped_ptr<IqRequest> request_;
iq_sender_unittest.cc 39 MOCK_METHOD2(OnReply, void(IqRequest* request, const XmlElement* reply));
85 scoped_ptr<IqRequest> request_;
jingle_info_request.cc 36 // If we failed to send IqRequest it means that SignalStrategy is
47 void JingleInfoRequest::OnResponse(IqRequest* request,
  /external/chromium_org/remoting/host/
heartbeat_sender.h 29 class IqRequest;
121 void ProcessResponse(IqRequest* request, const buzz::XmlElement* response);
135 scoped_ptr<IqRequest> request_;
register_support_host_request.h 27 class IqRequest;
68 void ProcessResponse(IqRequest* request, const buzz::XmlElement* response);
81 scoped_ptr<IqRequest> request_;
log_to_server.cc 114 scoped_ptr<IqRequest> req = iq_sender_->SendIq(
117 // We ignore any response, so let the IqRequest be destroyed.
register_support_host_request.cc 165 void RegisterSupportHostRequest::ProcessResponse(IqRequest* request,
heartbeat_sender.cc 122 void HeartbeatSender::ProcessResponse(IqRequest* request,
  /external/chromium_org/remoting/protocol/
jingle_session.h 104 IqRequest* request,
112 void OnTransportInfoResponse(IqRequest* request,
161 std::set<IqRequest*> pending_requests_;
164 std::list<IqRequest*> transport_info_requests_;
jingle_session.cc 317 scoped_ptr<IqRequest> request = session_manager_->iq_sender()->SendIq(
332 IqRequest* request,
373 scoped_ptr<IqRequest> request = session_manager_->iq_sender()->SendIq(
385 void JingleSession::OnTransportInfoResponse(IqRequest* request,
390 // corresponding IqRequest objects.

Completed in 582 milliseconds