Home
last modified time | relevance | path

Searched refs:new_candidate (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/p2p/base/
Dconnection.cc1203 const Candidate& new_candidate) { in MaybeUpdatePeerReflexiveCandidate() argument
1205 new_candidate.type() != PRFLX_PORT_TYPE && in MaybeUpdatePeerReflexiveCandidate()
1206 remote_candidate_.protocol() == new_candidate.protocol() && in MaybeUpdatePeerReflexiveCandidate()
1207 remote_candidate_.address() == new_candidate.address() && in MaybeUpdatePeerReflexiveCandidate()
1208 remote_candidate_.username() == new_candidate.username() && in MaybeUpdatePeerReflexiveCandidate()
1209 remote_candidate_.password() == new_candidate.password() && in MaybeUpdatePeerReflexiveCandidate()
1210 remote_candidate_.generation() == new_candidate.generation()) { in MaybeUpdatePeerReflexiveCandidate()
1211 remote_candidate_ = new_candidate; in MaybeUpdatePeerReflexiveCandidate()
Dconnection.h286 void MaybeUpdatePeerReflexiveCandidate(const Candidate& new_candidate);
Dp2p_transport_channel_unittest.cc3561 const Candidate& new_candidate = conn3->remote_candidate(); in TEST_F() local
3562 EXPECT_EQ(kIcePwd[2], new_candidate.password()); in TEST_F()
3563 EXPECT_EQ(1U, new_candidate.generation()); in TEST_F()
/external/mesa3d/src/compiler/glsl/
Dlink_varyings.cpp2849 tfeedback_candidate *new_candidate = NULL; in assign_varying_locations() local
2858 new_candidate = rzalloc(mem_ctx, tfeedback_candidate); in assign_varying_locations()
2859 new_candidate->toplevel_var = new_var; in assign_varying_locations()
2860 new_candidate->toplevel_var->data.is_unmatched_generic_inout = 1; in assign_varying_locations()
2861 new_candidate->type = new_var->type; in assign_varying_locations()
2862 new_candidate->offset = 0; in assign_varying_locations()
2865 new_candidate); in assign_varying_locations()
2867 tfeedback_decls[i].set_lowered_candidate(new_candidate); in assign_varying_locations()
2868 matched_candidate = new_candidate; in assign_varying_locations()
/external/webrtc/pc/
Dwebrtc_session_description_factory.cc118 const IceCandidateInterface* new_candidate = source_candidates->at(n); in CopyCandidatesFromSessionDescription() local
119 if (!dest_candidates->HasCandidate(new_candidate)) { in CopyCandidatesFromSessionDescription()
Dpeer_connection_ice_unittest.cc934 cricket::Candidate new_candidate = in TEST_P() local
936 AddCandidateToFirstTransport(&new_candidate, restart_offer.get()); in TEST_P()
942 EXPECT_PRED_FORMAT2(AssertCandidatesEqual, new_candidate, in TEST_P()
/external/toybox/toys/pending/
Ddiff.c123 static struct candidate * new_candidate (int i, int j, struct candidate* prev) in new_candidate() function
169 c = new_candidate(i , j, pr); in do_merge()
329 kcand[0] = new_candidate(0 , 0, NULL); in create_j_vector()
330 kcand[1] = new_candidate(file[0].len+1, file[1].len+1, NULL); //the fence in create_j_vector()
/external/rust/crates/regex-syntax/src/hir/literal/
Dmod.rs262 let mut new_candidate = candidate.clone(); in unambiguous_prefixes() localVariable
263 new_candidate.truncate(i); in unambiguous_prefixes()
264 new_candidate.cut(); in unambiguous_prefixes()
265 old.push(new_candidate); in unambiguous_prefixes()