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

1 2 3 4 5

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelimpl.h 39 class Candidate;
73 const Candidate&> SignalCandidateReady;
74 virtual void OnCandidate(const Candidate& candidate) = 0;
p2ptransportchannel.h 29 // two P2P clients. Clients have candidate ports for connecting, and
31 // Bob each have candidates, one candidate from Alice and one candidate from
44 #include "talk/p2p/base/candidate.h"
53 // Adds the port on which the candidate originated.
54 class RemoteCandidate : public Candidate {
56 RemoteCandidate(const Candidate& c, Port* origin_port)
57 : Candidate(c), origin_port_(origin_port) {}
99 virtual void OnCandidate(const Candidate& candidate);
    [all...]
p2ptransport.h 70 Candidate* candidate,
72 bool WriteCandidate(const Candidate& candidate,
transport.h 55 #include "talk/p2p/base/candidate.h"
78 typedef std::vector<Candidate> Candidates;
173 const std::vector<Candidate>&> SignalCandidatesReady;
174 void OnRemoteCandidates(const std::vector<Candidate>& candidates);
176 // If candidate is not acceptable, returns false and sets error.
178 virtual bool VerifyCandidate(const Candidate& candidate,
221 // Called when a candidate is ready from remote peer.
222 void OnRemoteCandidate(const Candidate& candidate);
    [all...]
rawtransportchannel.h 36 #include "talk/p2p/base/candidate.h"
87 virtual void OnCandidate(const Candidate& candidate);
108 const std::vector<Candidate>& candidates);
candidate.h 37 // Candidate for ICE based connection discovery.
39 class Candidate {
41 Candidate() : preference_(0), generation_(0) {}
42 Candidate(const std::string& name, const std::string& protocol,
101 // Determines whether this candidate is equivalent to the given one.
102 bool IsEquivalent(const Candidate& c) const {
port.h 42 #include "talk/p2p/base/candidate.h"
136 const std::vector<Candidate>& candidates() const { return candidates_; }
148 virtual Connection* CreateConnection(const Candidate& remote_candidate,
252 std::vector<Candidate> candidates_;
283 virtual const Candidate& local_candidate() const;
286 const Candidate& remote_candidate() const { return remote_candidate_; }
363 Connection(Port* port, size_t index, const Candidate& candidate);
387 Candidate remote_candidate_;
413 ProxyConnection(Port* port, size_t index, const Candidate& candidate)
    [all...]
  /external/chromium_org/jingle/glue/
utils.h 19 class Candidate;
33 std::string SerializeP2PCandidate(const cricket::Candidate& candidate);
35 cricket::Candidate* candidate);
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine.cc 26 InputMethodEngine::Candidate::Candidate() {
29 InputMethodEngine::Candidate::~Candidate() {
input_method_engine.h 93 struct Candidate {
94 Candidate();
95 virtual ~Candidate();
102 std::vector<Candidate> candidates;
135 // Called when the user clicks on an item in the candidate list.
178 // Show or hide the candidate window.
181 // Show or hide the cursor in the candidate window.
184 // Set the orientation of the candidate window.
187 // Set the number of candidates displayed in the candidate window.
190 // Set the text that appears as a label in the candidate window
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepicecandidate.h 37 #include "talk/p2p/base/candidate.h"
45 const cricket::Candidate& candidate);
49 void SetCandidate(const cricket::Candidate& candidate) {
50 candidate_ = candidate;
55 virtual const cricket::Candidate& candidate() const { function in class:webrtc::JsepIceCandidate
64 cricket::Candidate candidate_;
77 virtual bool HasCandidate(const IceCandidateInterface* candidate) const
    [all...]
jsep.h 41 class Candidate;
54 // Class representation of an ICE candidate.
61 // identification" as defined in [RFC 3388] for m-line this candidate is
65 // candidate is assocated with.
67 virtual const cricket::Candidate& candidate() const = 0;
68 // Creates a SDP-ized form of this candidate.
92 // Returns true if an equivalent |candidate| exist in the collection.
93 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0;
115 // Adds the specified candidate to the description
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransport.h 76 Candidate* candidate,
78 virtual bool WriteGingleCandidate(const Candidate& candidate,
87 Candidate* candidate,
90 const Candidate& candidate,
p2ptransportchannel.h 29 // two P2P clients. Clients have candidate ports for connecting, and
31 // Bob each have candidates, one candidate from Alice and one candidate from
44 #include "talk/p2p/base/candidate.h"
53 // Adds the port on which the candidate originated.
54 class RemoteCandidate : public Candidate {
56 RemoteCandidate(const Candidate& c, PortInterface* origin_port)
57 : Candidate(c), origin_port_(origin_port) {}
90 virtual void OnCandidate(const Candidate& candidate);
    [all...]
transportchannelimpl.h 39 class Candidate;
91 const Candidate&> SignalCandidateReady;
92 virtual void OnCandidate(const Candidate& candidate) = 0;
transport.h 55 #include "talk/p2p/base/candidate.h"
81 typedef std::vector<Candidate> Candidates;
108 // Parse a single candidate. This must be used when parsing Gingle
112 Candidate* candidates,
114 virtual bool WriteGingleCandidate(const Candidate& candidate,
165 Candidate local_candidate; // The local candidate for this connection.
166 Candidate remote_candidate; // The remote candidate for this connection
    [all...]
portinterface.h 89 const Candidate& remote_candidate, CandidateOrigin origin) = 0;
97 virtual const std::vector<Candidate>& Candidates() const = 0;
portproxy.h 65 virtual Connection* CreateConnection(const Candidate& remote_candidate,
76 virtual const std::vector<Candidate>& Candidates() const;
transportchannel.h 39 #include "talk/p2p/base/candidate.h"
45 class Candidate;
132 // being routed, i.e. to a different remote location. The candidate
134 sigslot::signal2<TransportChannel*, const Candidate&> SignalRouteChange;
candidate.h 42 // Candidate for ICE based connection discovery.
44 class Candidate {
47 // candidate-attribute syntax. http://tools.ietf.org/html/rfc5245#section-15.1
48 Candidate() : component_(0), priority_(0), generation_(0) {}
49 Candidate(const std::string& id, int component, const std::string& protocol,
141 // Determines whether this candidate is equivalent to the given one.
142 bool IsEquivalent(const Candidate& c) const {
rawtransportchannel.cc 134 void RawTransportChannel::OnCandidate(const Candidate& candidate) {
135 remote_address_ = candidate.address();
176 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
180 // The most recent candidate is the one we haven't seen yet.
181 Candidate c = candidates[candidates.size() - 1];
249 Candidate remote_candidate;
  /external/chromium_org/remoting/protocol/
transport.h 34 class Candidate;
73 // Called when the transport generates a new candidate that needs
77 const cricket::Candidate& candidate) = 0;
108 // Adds |candidate| received from the peer.
109 virtual void AddRemoteCandidate(const cricket::Candidate& candidate) = 0;
jingle_messages.h 12 #include "third_party/libjingle/source/talk/p2p/base/candidate.h"
47 const cricket::Candidate& candidate);
50 cricket::Candidate candidate; member in struct:remoting::protocol::JingleMessage::NamedCandidate
  /external/clang/unittests/Tooling/
TestVisitor.h 187 : Candidate(Name, LineNumber, ColumnNumber), Found(false) {}
190 if (Candidate.Matches(Name, Location)) {
193 } else if (!Found && Candidate.PartiallyMatches(Name, Location)) {
202 << "Expected \"" << Candidate.ExpectedName
203 << "\" at " << Candidate.LineNumber
204 << ":" << Candidate.ColumnNumber << PartialMatches;
207 MatchCandidate Candidate;
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
socketmonitor.h 52 Candidate local_candidate;
53 Candidate remote_candidate;

Completed in 894 milliseconds

1 2 3 4 5