Home
last modified time | relevance | path

Searched refs:cert_array (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py164 cert_array = CoreFoundation.CFArrayCreateMutable(
169 if not cert_array:
184 CoreFoundation.CFArrayAppendValue(cert_array, cert)
190 CoreFoundation.CFRelease(cert_array)
193 return cert_array
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py164 cert_array = CoreFoundation.CFArrayCreateMutable(
169 if not cert_array:
184 CoreFoundation.CFArrayAppendValue(cert_array, cert)
190 CoreFoundation.CFRelease(cert_array)
193 return cert_array
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py164 cert_array = CoreFoundation.CFArrayCreateMutable(
169 if not cert_array:
184 CoreFoundation.CFArrayAppendValue(cert_array, cert)
190 CoreFoundation.CFRelease(cert_array)
193 return cert_array
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py164 cert_array = CoreFoundation.CFArrayCreateMutable(
169 if not cert_array:
184 CoreFoundation.CFArrayAppendValue(cert_array, cert)
190 CoreFoundation.CFRelease(cert_array)
193 return cert_array
/aosp_15_r20/external/cronet/net/cert/
H A Dcert_verify_proc_ios.cc167 int BuildAndEvaluateSecTrustRef(CFArrayRef cert_array, in BuildAndEvaluateSecTrustRef() argument
176 OSStatus status = SecTrustCreateWithCertificates(cert_array, trust_policies, in BuildAndEvaluateSecTrustRef()
406 ScopedCFTypeRef<CFMutableArrayRef> cert_array( in VerifyInternal() local
409 if (!cert_array) { in VerifyInternal()
452 cert_array.get(), trust_policies.get(), ocsp_response_ref.get(), in VerifyInternal()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/
Dsecuretransport.py440 cert_array = None
445 cert_array = _cert_array_from_pem(trust_bundle)
456 result = Security.SecTrustSetAnchorCertificates(trust, cert_array)
469 if cert_array is not None:
470 CoreFoundation.CFRelease(cert_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/
Dsecuretransport.py440 cert_array = None
445 cert_array = _cert_array_from_pem(trust_bundle)
456 result = Security.SecTrustSetAnchorCertificates(trust, cert_array)
469 if cert_array is not None:
470 CoreFoundation.CFRelease(cert_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/
Dsecuretransport.py440 cert_array = None
445 cert_array = _cert_array_from_pem(trust_bundle)
456 result = Security.SecTrustSetAnchorCertificates(trust, cert_array)
469 if cert_array is not None:
470 CoreFoundation.CFRelease(cert_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/
Dsecuretransport.py440 cert_array = None
445 cert_array = _cert_array_from_pem(trust_bundle)
456 result = Security.SecTrustSetAnchorCertificates(trust, cert_array)
469 if cert_array is not None:
470 CoreFoundation.CFRelease(cert_array)
/aosp_15_r20/external/cronet/net/android/
H A Dnetwork_library.cc78 ScopedJavaLocalRef<jbyteArray> cert_array = ToJavaByteArray(env, cert, len); in AddTestRootCertificate() local
79 DCHECK(!cert_array.is_null()); in AddTestRootCertificate()
80 Java_AndroidNetworkLibrary_addTestRootCertificate(env, cert_array); in AddTestRootCertificate()
/aosp_15_r20/external/cronet/net/cert/internal/
H A Dtrust_store_mac.cc327 base::apple::ScopedCFTypeRef<CFArrayRef> cert_array; in Initialize() local
332 cert_array.InitializeInto()); in Initialize()
342 for (CFIndex i = 0, size = CFArrayGetCount(cert_array.get()); i < size; in Initialize()
345 const_cast<void*>(CFArrayGetValueAtIndex(cert_array.get(), i))); in Initialize()