Searched refs:providerList (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/jca/ |
D | Providers.java | 55 private static volatile ProviderList providerList; field in Providers 64 providerList = ProviderList.EMPTY; 65 providerList = ProviderList.fromSecurityProperties(); 71 final int numConfiguredProviders = providerList.size(); 72 providerList = providerList.removeInvalid(); 73 if (numConfiguredProviders != providerList.size()) { 78 SYSTEM_BOUNCY_CASTLE_PROVIDER = providerList.getProvider("BC"); 213 return providerList; in getSystemProviderList() 217 providerList = list; in setSystemProviderList() 329 && providerList.getProvider(provider) == SYSTEM_BOUNCY_CASTLE_PROVIDER) { in checkBouncyCastleDeprecation()
|
D | ProviderList.java | 91 public static ProviderList add(ProviderList providerList, Provider p) { 92 return insertAt(providerList, p, -1); 95 public static ProviderList insertAt(ProviderList providerList, Provider p, 97 if (providerList.getProvider(p.getName()) != null) { 98 return providerList; 101 (Arrays.asList(providerList.configs)); 110 public static ProviderList remove(ProviderList providerList, String name) { 112 if (providerList.getProvider(name) == null) { 113 return providerList; 116 ProviderConfig[] configs = new ProviderConfig[providerList.size() - 1]; [all …]
|
/libcore/ojluni/annotations/hiddenapi/sun/security/jca/ |
D | ProviderList.java | 47 sun.security.jca.ProviderList providerList, java.security.Provider p) { in add() argument 52 sun.security.jca.ProviderList providerList, java.security.Provider p, int position) { in insertAt() argument 57 sun.security.jca.ProviderList providerList, java.lang.String name) { in remove() argument
|
D | Providers.java | 137 private static volatile sun.security.jca.ProviderList providerList; field in Providers
|