Home
last modified time | relevance | path

Searched refs:configs (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/jca/
DProviderList.java101 (Arrays.asList(providerList.configs));
116 ProviderConfig[] configs = new ProviderConfig[providerList.size() - 1];
118 for (ProviderConfig config : providerList.configs) {
120 configs[j++] = config;
123 return new ProviderList(configs, true);
129 ProviderConfig[] configs = new ProviderConfig[providers.length];
131 configs[i] = new ProviderConfig(providers[i]);
133 return new ProviderList(configs, true);
137 private final ProviderConfig[] configs;
145 return configs.length;
[all …]
/libcore/ojluni/src/main/java/java/util/
DServiceLoader.java330 Enumeration<URL> configs = null; field in ServiceLoader.LazyIterator
343 if (configs == null) { in hasNextService()
347 configs = ClassLoader.getSystemResources(fullName); in hasNextService()
349 configs = loader.getResources(fullName); in hasNextService()
355 if (!configs.hasMoreElements()) { in hasNextService()
358 pending = parse(service, configs.nextElement()); in hasNextService()
/libcore/ojluni/annotations/hiddenapi/sun/security/jca/
DProviderList.java34 private ProviderList(sun.security.jca.ProviderConfig[] configs, boolean allLoaded) { in ProviderList() argument
156 private final sun.security.jca.ProviderConfig[] configs; field in ProviderList
159 configs = new sun.security.jca.ProviderConfig[0];
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DSequentialOpTest.java57 UnaryOperator<Stream<Integer>>[] configs in testLazy() local
71 for (int j = 0; j < configs.length; j++) { in testLazy()
73 UnaryOperator<Stream<Integer>> config = configs[j]; in testLazy()