Searched refs:workingSet (Results 1 – 2 of 2) sorted by relevance
67 HashCodeAndEqualsSafeSet workingSet = new HashCodeAndEqualsSafeSet(); in can_add_a_collection() local69 workingSet.addAll(mocks); in can_add_a_collection()71 assertThat(workingSet.containsAll(mocks)).isTrue(); in can_add_a_collection()80 HashCodeAndEqualsSafeSet workingSet = new HashCodeAndEqualsSafeSet(); in can_retain_a_collection() local82 workingSet.addAll(mocks); in can_retain_a_collection()83 workingSet.add(mock(List.class)); in can_retain_a_collection()85 assertThat(workingSet.retainAll(mocks)).isTrue(); in can_retain_a_collection()86 assertThat(workingSet.containsAll(mocks)).isTrue(); in can_retain_a_collection()95 HashCodeAndEqualsSafeSet workingSet = new HashCodeAndEqualsSafeSet(); in can_remove_a_collection() local97 workingSet.addAll(mocks); in can_remove_a_collection()[all …]
268 fd_set workingSet; in acceptConnections() local269 FD_ZERO(&workingSet); in acceptConnections()270 FD_SET(fSockfd, &workingSet); in acceptConnections()274 int sel = select(fSockfd + 1, &workingSet, NULL, NULL, &timeout); in acceptConnections()