Searched refs:keyList (Results 1 – 2 of 2) sorted by relevance
43 private List<SelectionKey> keyList = new ArrayList<SelectionKey>(); field in AbstractSelectableChannel78 return !keyList.isEmpty(); in isRegistered()91 for (SelectionKey key : keyList) { in keyFor()151 keyList.add(key); in register()175 for (SelectionKey key : keyList) { in implCloseChannel()265 if (keyList != null) { in deregister()266 keyList.remove(k); in deregister()275 for (SelectionKey key : keyList) { in containsValidKeys()
506 List<String> keyList = Arrays.asList(keys); in test_stringPropertyNames_scenario1() local518 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario1()525 assertTrue(keyList.contains(nameEnum.nextElement())); in test_stringPropertyNames_scenario1()534 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario1()541 assertTrue(keyList.contains(nameEnum.nextElement())); in test_stringPropertyNames_scenario1()556 List<String> keyList = new ArrayList<String>(); in test_stringPropertyNames_scenario2() local560 keyList.add(defaultKeys[index]); in test_stringPropertyNames_scenario2()568 keyList.add(keys[index]); in test_stringPropertyNames_scenario2()572 assertEquals(keyList.size(), nameSet.size()); in test_stringPropertyNames_scenario2()575 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario2()[all …]