OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pols
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/x509v3/
v3_cpols.c
134
STACK_OF(POLICYINFO) *
pols
= NULL;
141
pols
= sk_POLICYINFO_new_null();
142
if (
pols
== NULL) {
184
if (!sk_POLICYINFO_push(
pols
, pol)){
191
return
pols
;
194
sk_POLICYINFO_pop_free(
pols
, POLICYINFO_free);
/libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java
868
HashSet<String>
pols
= new HashSet<String>(policies.size());
local
871
pols
.add(certPolicyId);
873
this.policies = Collections.unmodifiableSet(
pols
);
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java
1283
Set
pols
= new HashSet();
local
[
all
...]
/frameworks/base/services/java/com/android/server/
DevicePolicyManagerService.java
362
ArrayList<DeviceAdminInfo.PolicyInfo>
pols
= info.getUsedPolicies();
local
363
if (
pols
!= null) {
364
for (int i=0; i<
pols
.size(); i++) {
365
pw.print(prefix); pw.print(" "); pw.println(
pols
.get(i).tag);
[
all
...]
Completed in 137 milliseconds