Home | History | Annotate | Download | only in network

Lines Matching refs:technology

133     const std::string& technology) const {
134 return available_technologies_.count(technology) != 0;
138 const std::string& technology) const {
139 return enabled_technologies_.count(technology) != 0;
143 const std::string& technology) const {
144 return enabling_technologies_.count(technology) != 0;
148 const std::string& technology) const {
149 return uninitialized_technologies_.count(technology) != 0;
153 const std::string& technology,
157 enabling_technologies_.insert(technology);
159 technology,
162 AsWeakPtr(), technology, error_callback));
165 enabled_technologies_.erase(technology);
166 enabling_technologies_.erase(technology);
168 technology,
172 technology, error_callback));
379 std::string technology;
380 (*iter)->GetAsString(&technology);
381 DCHECK(!technology.empty());
382 available_technologies_.insert(technology);
395 std::string technology;
396 (*iter)->GetAsString(&technology);
397 DCHECK(!technology.empty());
398 enabled_technologies_.insert(technology);
399 enabling_technologies_.erase(technology);
412 std::string technology;
413 (*iter)->GetAsString(&technology);
414 DCHECK(!technology.empty());
415 uninitialized_technologies_.insert(technology);
421 const std::string& technology,
425 enabling_technologies_.erase(technology);
428 technology, error_callback,