Home
last modified time | relevance | path

Searched refs:probingInfos (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsInterfaceAdvertiser.java319 final List<MdnsProber.ProbingInfo> probingInfos = in removeService() local
321 reprobeServices(probingInfos); in removeService()
471 private void reprobeServices(List<MdnsProber.ProbingInfo> probingInfos) { in reprobeServices() argument
472 for (MdnsProber.ProbingInfo probingInfo : probingInfos) { in reprobeServices()
DMdnsRecordRepository.java1032 final ArrayList<MdnsProber.ProbingInfo> probingInfos = new ArrayList<>(); in restartProbingForHostname() local
1039 probingInfos.add(makeProbingInfo(id, registration)); in restartProbingForHostname()
1041 return probingInfos; in restartProbingForHostname()
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/mdns/
DMdnsRecordRepositoryTest.kt2181 val probingInfos = repository.restartProbingForHostname("TestHost") in testRestartProbingForHostname() constant
2183 assertEquals(1, probingInfos.size) in testRestartProbingForHostname()
2184 val probingInfo = probingInfos.get(0) in testRestartProbingForHostname()