OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:providerlist
(Results
1 - 7
of
7
) sorted by null
/libcore/ojluni/src/main/java/sun/security/jca/
Providers.java
43
private static final ThreadLocal<
ProviderList
> threadLists =
52
private static volatile
ProviderList
providerList
;
55
// set
providerList
to empty list first in case initialization somehow
57
providerList
=
ProviderList
.EMPTY;
58
providerList
=
ProviderList
.fromSecurityProperties();
63
final int numConfiguredProviders =
providerList
.size();
64
providerList
= providerList.removeInvalid()
[
all
...]
ProviderList.java
36
* The system starts out with a
ProviderList
that only has the classNames
42
* to force all Providers to be loaded and to obtain a
ProviderList
with
56
public final class
ProviderList
{
59
sun.security.util.Debug.getInstance("jca", "
ProviderList
");
65
// constant for an
ProviderList
with no elements
66
static final
ProviderList
EMPTY = new
ProviderList
(PC0, true);
78
// construct a
ProviderList
from the security properties
80
static
ProviderList
fromSecurityProperties() {
83
new PrivilegedAction<
ProviderList
>() {
[
all
...]
GetInstance.java
66
ProviderList
list = Providers.getProviderList();
113
ProviderList
list = Providers.getProviderList();
125
ProviderList
list = Providers.getProviderList();
134
ProviderList
list = Providers.getProviderList();
156
ProviderList
list = Providers.getProviderList();
/frameworks/base/services/core/java/com/android/server/search/
Searchables.java
369
private ComponentName getDefaultGlobalSearchProvider(List<ResolveInfo>
providerList
) {
370
if (
providerList
!= null && !
providerList
.isEmpty()) {
371
ActivityInfo ai =
providerList
.get(0).activityInfo;
/libcore/ojluni/src/main/java/java/security/
Security.java
36
import sun.security.jca.
ProviderList
;
252
ProviderList
list = Providers.getFullProviderList();
253
ProviderList
newList =
ProviderList
.insertAt(list, provider, position - 1);
337
ProviderList
list = Providers.getFullProviderList();
338
ProviderList
newList =
ProviderList
.remove(list, name);
[
all
...]
/frameworks/base/
preloaded-classes
[
all
...]
/libcore/
openjdk_java_files.mk
[
all
...]
Completed in 633 milliseconds