Home
last modified time | relevance | path

Searched refs:certificate (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/packages/modules/vndk/apex/
DAndroid.bp23 certificate: ":com.android.vndk.current.certificate",
42 name: "com.android.vndk.current.certificate",
43 certificate: "com.android.vndk.current",
50 certificate: ":com.android.vndk.v32.certificate",
64 name: "com.android.vndk.v32.certificate",
65 certificate: "com.android.vndk.v32",
72 certificate: ":com.android.vndk.v31.certificate",
86 name: "com.android.vndk.v31.certificate",
87 certificate: "com.android.vndk.v31",
94 certificate: ":com.android.vndk.v30.certificate",
[all …]
DREADME.md13 certificate: ":com.android.vndk.v30.certificate",
26 name: "com.android.vndk.v30.certificate",
27 certificate: "com.android.vndk.v30",
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeCertX509CertPayload.java41 public final X509Certificate certificate; field in IkeCertX509CertPayload
46 certificate = x509Certificate; in IkeCertX509CertPayload()
54 certificate = in IkeCertX509CertPayload()
58 if (certificate == null) { in IkeCertX509CertPayload()
62 if (certificate.getEncoded().length < certData.length) { in IkeCertX509CertPayload()
82 byteBuffer.put(certificate.getEncoded()); in encodeToByteBuffer()
96 return GENERIC_HEADER_LENGTH + CERT_ENCODING_LEN + certificate.getEncoded().length; in getPayloadLength()
/packages/modules/Wifi/OsuLogin/
DAndroid.bp12 certificate: ":com.android.hotspot2.osulogin.certificate",
20 name: "com.android.hotspot2.osulogin.certificate",
21 certificate: "certs/com.android.hotspot2.osulogin"
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DOsuServerConnection.java424 X509Certificate certificate = getCert(certInfo.getKey()); in performRetrievingTrustRootCerts() local
426 if (certificate == null) { in performRetrievingTrustRootCerts()
436 certificate, certInfo.getValue())) { in performRetrievingTrustRootCerts()
441 if (certificate.getSubjectDN() != null) { in performRetrievingTrustRootCerts()
442 certName = certificate.getSubjectDN().getName(); in performRetrievingTrustRootCerts()
447 certificates.add(certificate); in performRetrievingTrustRootCerts()
544 X509Certificate certificate = (X509Certificate) certFactory.generateCertificate( in getCert() local
547 Log.v(TAG, "cert : " + certificate.getSubjectDN()); in getCert()
549 return certificate; in getCert()
669 for (X509Certificate certificate : mServerCerts) { in getProviderCert()
[all …]
/packages/services/BuiltInPrintService/jni/lib/
Dlib_wprint.c159 uint8 *certificate; member
476 if (jq->job_params.certificate != NULL) { in _recycle_handle()
477 free((void *) jq->job_params.certificate); in _recycle_handle()
490 if (jq->certificate) { in _recycle_handle()
491 free(jq->certificate); in _recycle_handle()
492 jq->certificate = NULL; in _recycle_handle()
529 cb_param.certificate = jq->certificate; in _job_status_callback()
668 cb_param.certificate = jq->certificate; in _print_job_state_callback()
805 if (jq->job_params.certificate && jq->certificate) { in _is_certificate_allowed()
810 } else if (0 != memcmp(jq->job_params.certificate, jq->certificate, jq->certificate_len)) { in _is_certificate_allowed()
[all …]
/packages/apps/CellBroadcastReceiver/apex/
DAndroid.bp16 certificate: ":com.android.cellbroadcast.certificate",
29 name: "com.android.cellbroadcast.certificate",
30 certificate: "com.android.cellbroadcast",
/packages/modules/DnsResolver/tests/doh/src/
Ddns_https_frontend.rs71 certificate: String, field
109 certificate: String::new(), in new()
122 ensure!(!self.certificate.is_empty(), "certificate is empty"); in start()
153 pub fn set_certificate(&mut self, certificate: &str) -> Result<()> { in set_certificate()
154 self.certificate = certificate.to_string(); in set_certificate()
240 self.certificate.to_string(), in init_worker_thread_params()
417 certificate: String, in create_quiche_config()
426 wr.write_all(certificate.as_bytes()).expect("Failed to write to pipe"); in create_quiche_config()
Dffi.rs94 certificate: *const c_char, in frontend_set_certificate()
96 if certificate.is_null() { in frontend_set_certificate()
99 let certificate = CStr::from_ptr(certificate).to_str().unwrap(); in frontend_set_certificate() localVariable
100 doh.set_certificate(certificate).or_else(logging_and_return_err).is_ok() in frontend_set_certificate()
/packages/modules/Wifi/service/ServiceWifiResources/
DAndroid.bp35 certificate: ":com.android.wifi.resources.certificate",
39 name: "com.android.wifi.resources.certificate",
40 certificate: "resources-certs/com.android.wifi.resources"
/packages/modules/Uwb/service/ServiceUwbResources/
DAndroid.bp34 certificate: ":com.android.uwb.resources.certificate",
38 name: "com.android.uwb.resources.certificate",
39 certificate: "resources-certs/com.android.uwb.resources"
/packages/modules/Connectivity/service/ServiceConnectivityResources/
DAndroid.bp35 certificate: ":com.android.connectivity.resources.certificate",
39 name: "com.android.connectivity.resources.certificate",
40 certificate: "resources-certs/com.android.connectivity.resources",
/packages/modules/Wifi/WifiDialog/
DAndroid.bp22 certificate: ":com.android.wifi.dialog.certificate",
41 name: "com.android.wifi.dialog.certificate",
42 certificate: "certs/com.android.wifi.dialog"
/packages/modules/Permission/SafetyCenter/Resources/
DAndroid.bp29 certificate: ":com.android.safetycenter.resources.certificate",
36 name: "com.android.safetycenter.resources.certificate",
37 certificate: "com.android.safetycenter.resources"
/packages/services/BuiltInPrintService/src/com/android/bips/
DLocalPrintJob.java130 mCapabilities.certificate = mCertificateStore.get(mCapabilities.uuid); in restart()
268 if (mCapabilities.certificate != null && !IPPS_SCHEME.equals(mPath.getScheme())) { in deliver()
283 byte[] certificate = jobStatus.getCertificate(); in handleJobStatus()
284 if (certificate != null && mCapabilities != null) { in handleJobStatus()
288 mCertificateStore.put(mCapabilities.uuid, certificate); in handleJobStatus()
350 byte[] certificate = jobStatus.getCertificate(); in handleBadCertificate()
352 if (certificate == null) { in handleBadCertificate()
359 mPrintJob.getInfo().getPrinterId(), mCapabilities.uuid, certificate); in handleBadCertificate()
DBuiltInPrintService.java308 byte[] certificate) { in notifyCertificateChange() argument
310 if (certificate == null) { in notifyCertificateChange()
332 if (certificate != null) { in notifyCertificateChange()
333 acceptIntent.putExtra(EXTRA_CERTIFICATE, certificate); in notifyCertificateChange()
363 byte[] certificate = intent.getByteArrayExtra(EXTRA_CERTIFICATE); in onStartCommand()
366 if (certificate != null) { in onStartCommand()
367 mCertificateStore.put(printerUuid, certificate); in onStartCommand()
/packages/modules/Bluetooth/apex/
DAndroid.bp26 certificate: ":com.android.btservices.certificate",
61 certificate: ":com.android.btservices.certificate",
73 name: "com.android.btservices.certificate",
74 certificate: "com.android.btservices",
/packages/modules/AdServices/adservices/apk/
DAndroid.bp20 name: "com.android.adservices.api.certificate",
21 certificate: "com.android.adservices.api",
28 certificate: ":com.android.adservices.api.certificate",
/packages/modules/adb/apex/
DAndroid.bp30 certificate: ":com.android.adbd.certificate",
84 name: "com.android.adbd.certificate",
85 certificate: "com.android.adbd",
/packages/modules/Bluetooth/android/BluetoothLegacyMigration/
DAndroid.bp11 // Must match Bluetooth.apk certificate because of sharedUserId
12 certificate: ":com.android.bluetooth.certificate",
/packages/modules/Virtualization/compos/apex/
DAndroid.bp25 name: "com.android.compos.certificate",
26 certificate: "com.android.compos",
34 certificate: ":com.android.compos.certificate",
/packages/modules/ExtServices/apex/
DAndroid.bp34 certificate: ":com.android.extservices.certificate",
49 name: "com.android.extservices.certificate",
50 certificate: "com.android.extservices",
/packages/modules/NeuralNetworks/apex/
DAndroid.bp31 name: "com.android.neuralnetworks.certificate",
32 certificate: "com.android.neuralnetworks",
49 certificate: ":com.android.neuralnetworks.certificate",
/packages/modules/Virtualization/apex/
DAndroid.bp27 certificate: ":com.android.virt.certificate",
81 name: "com.android.virt.certificate",
82 certificate: "com.android.virt",
/packages/modules/DnsResolver/apex/
DAndroid.bp34 certificate: ":com.android.resolv.certificate",
59 name: "com.android.resolv.certificate",
61 certificate: "testcert",

12345678910>>...12