Home
last modified time | relevance | path

Searched refs:keyList (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/spi/
DAbstractSelectableChannel.java43 private List<SelectionKey> keyList = new ArrayList<SelectionKey>(); field in AbstractSelectableChannel
78 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()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DPropertiesTest.java506 List<String> keyList = Arrays.asList(keys); in test_stringPropertyNames_scenario1() local
518 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() local
560 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 …]