Searched refs:pending_changes (Results 1 – 3 of 3) sorted by relevance
/external/openscreen/discovery/dnssd/impl/ |
D | querier_impl.cc | 364 std::vector<PendingQueryChange>& pending_changes = in OnRecordChanged() local 378 return pending_changes; in OnRecordChanged() 405 return pending_changes; in OnRecordChanged() 449 std::vector<PendingQueryChange> pending_changes; in ApplyRecordChanges() local 451 [this, &pending_changes](DomainName domain) mutable { in ApplyRecordChanges() 452 pending_changes.push_back({std::move(domain), DnsType::kANY, in ApplyRecordChanges() 457 [this, &pending_changes](DomainName domain) mutable { in ApplyRecordChanges() 458 pending_changes.push_back({std::move(domain), DnsType::kANY, in ApplyRecordChanges() 469 return pending_changes; in ApplyRecordChanges()
|
/external/openscreen/discovery/mdns/ |
D | mdns_querier.cc | 434 std::vector<PendingQueryChange> pending_changes; in StartQuery() local 444 pending_changes.insert(pending_changes.end(), new_changes.begin(), in StartQuery() 465 ApplyPendingChanges(std::move(pending_changes)); in StartQuery() 804 std::vector<PendingQueryChange> pending_changes; in ProcessCallbacks() local 814 pending_changes.insert(pending_changes.end(), new_changes.begin(), in ProcessCallbacks() 819 ApplyPendingChanges(std::move(pending_changes)); in ProcessCallbacks() 861 std::vector<PendingQueryChange> pending_changes) { in ApplyPendingChanges() argument 862 for (auto& pending_change : pending_changes) { in ApplyPendingChanges()
|
D | mdns_querier.h | 207 void ApplyPendingChanges(std::vector<PendingQueryChange> pending_changes);
|