HomeSort by relevance Sort by last modified time
    Searched defs:trust (Results 1 - 25 of 45) sorted by null

1 2

  /external/libchrome/crypto/
scoped_test_nss_db.cc 31 // Remove trust from any certs in the test DB before closing it. Otherwise NSS
38 CERTCertTrust trust = {0}; local
39 if (CERT_ChangeCertTrust(CERT_GetDefaultCertDB(), node->cert, &trust) !=
  /external/libcups/cups/
testcreds.c 37 http_trust_t trust; /* Trust evaluation for connection */ local
39 *tcreds; /* Credentials from trust store */
41 tinfo[1024]; /* String for trust store credentials */
42 static const char *trusts[] = /* Trust strings */
78 trust = httpCredentialsGetTrust(hcreds, hostname);
83 if (trust == HTTP_TRUST_OK)
84 puts(" Trust: OK");
86 printf(" Trust: %s (%s)\n", trusts[trust], cupsLastErrorString())
    [all...]
testhttp.c 629 http_trust_t trust = httpCredentialsGetTrust(creds, hostname); local
634 printf("Trust: %s\n", trusts[trust]);
661 if (trust != HTTP_TRUST_OK)
664 trust = httpCredentialsGetTrust(creds, hostname);
665 printf("New Trust: %s\n", trusts[trust]);
tls-darwin.c 435 SecTrustRef peerTrust; /* Peer trust reference */
590 * 'httpCredentialsGetTrust()' - Return the trust of credentials.
595 http_trust_t /* O - Level of trust */
598 const char *common_name) /* I - Common name for trust lookup */
601 http_trust_t trust = HTTP_TRUST_OK; local
647 * Do not trust certificates on first use...
650 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Trust on first use is disabled."), 1);
652 trust = HTTP_TRUST_INVALID;
662 trust = HTTP_TRUST_INVALID;
672 trust = HTTP_TRUST_INVALID
    [all...]
tls-gnutls.c 419 * 'httpCredentialsGetTrust()' - Return the trust of credentials.
424 http_trust_t /* O - Level of trust */
427 const char *common_name) /* I - Common name for trust lookup */
429 http_trust_t trust = HTTP_TRUST_OK; local
479 * Do not trust certificates on first use...
482 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Trust on first use is disabled."), 1);
484 trust = HTTP_TRUST_INVALID;
494 trust = HTTP_TRUST_INVALID;
504 trust = HTTP_TRUST_INVALID;
512 trust = HTTP_TRUST_RENEWED
    [all...]
tls-sspi.c 240 * 'httpCredentialsGetTrust()' - Return the trust of credentials.
245 http_trust_t /* O - Level of trust */
248 const char *common_name) /* I - Common name for trust lookup */
250 http_trust_t trust = HTTP_TRUST_OK; /* Level of trust */ local
276 trust = HTTP_TRUST_INVALID;
280 return (trust);
    [all...]
  /packages/services/Car/TrustAgent/src/com/android/car/trust/
PhoneEnrolmentActivity.java 16 package com.android.car.trust;
PhoneUnlockActivity.java 16 package com.android.car.trust;
Utils.java 16 package com.android.car.trust;
MainActivity.java 16 package com.android.car.trust;
CarEnrolmentService.java 16 package com.android.car.trust;
26 import com.android.car.trust.comms.SimpleBleServer;
CarUnlockService.java 16 package com.android.car.trust;
26 import com.android.car.trust.comms.SimpleBleServer;
PhoneEnrolmentController.java 16 package com.android.car.trust;
32 import com.android.car.trust.comms.SimpleBleClient;
PhoneUnlockController.java 16 package com.android.car.trust;
32 import com.android.car.trust.comms.SimpleBleClient;
CarBleTrustAgent.java 17 package com.android.car.trust;
33 import android.service.trust.TrustAgentService;
36 import com.android.car.trust.comms.SimpleBleServer;
41 * A sample trust agent that demonstrates how to use the escrow token unlock APIs. </p>
43 * This trust agent runs during direct boot and binds to a BLE service that listens for remote
49 public static final String ACTION_REVOKE_TRUST = "revoke-trust-action";
110 Log.d(TAG, "Bluetooth trust agent starting up");
138 Log.d(TAG, "Car Trust agent shutting down");
218 // The BLE stack is started up before the trust agent service, however Gatt capabilities
259 grantTrust("Granting trust from escrow token"
    [all...]
CarEnrolmentActivity.java 16 package com.android.car.trust;
36 import com.android.car.trust.CarEnrolmentService.EnrolmentCallback;
37 import com.android.car.trust.comms.SimpleBleServer.ConnectionListener;
39 import static com.android.car.trust.CarBleTrustAgent.ACTION_ADD_TOKEN_RESULT;
40 import static com.android.car.trust.CarBleTrustAgent.ACTION_TOKEN_STATUS_RESULT;
41 import static com.android.car.trust.CarBleTrustAgent.INTENT_EXTRA_TOKEN_HANDLE;
42 import static com.android.car.trust.CarBleTrustAgent.INTENT_EXTRA_TOKEN_STATUS;
  /external/google-breakpad/src/google_breakpad/processor/
stack_frame.h 46 // In rough order of "trust metric".
65 trust(FRAME_TRUST_NONE) {}
71 switch (trust) {
137 // Amount of trust the stack walker has in the instruction pointer
139 FrameTrust trust; member in struct:google_breakpad::StackFrame
  /frameworks/base/core/java/android/app/trust/
TrustManager.java 17 package android.app.trust;
31 * See {@link com.android.server.trust.TrustManagerService}
103 * Reports that the list of enabled trust agents changed for user {@param userId}.
129 * Registers a listener for trust events.
160 * Unregisters a listener for trust events.
176 * @return whether {@param userId} has enabled and configured trust agents. Ignores short-term
177 * unavailability of trust due to {@link LockPatternUtils.StrongAuthTracker}.
189 * Updates the trust state for the user due to the user unlocking via fingerprint.
231 * Reports that the trust state has changed.
233 * @param userId the user, for which the trust changed
    [all...]
  /external/google-breakpad/src/processor/
stackwalker_x86.cc 132 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
142 StackFrame::FrameTrust trust = StackFrame::FRAME_TRUST_NONE; local
242 last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT &&
269 trust = StackFrame::FRAME_TRUST_CFI;
391 trust = StackFrame::FRAME_TRUST_SCAN;
399 // %ebp values of 0, trust that the end of the stack has been
431 trust = StackFrame::FRAME_TRUST_CFI_SCAN;
450 (trust != StackFrame::FRAME_TRUST_CFI && ebp <= raSearchStart + offset);
479 frame->trust = trust;
534 StackFrame::FrameTrust trust; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/trust/
TrustArchive.java 17 package com.android.server.trust;
22 import android.service.trust.TrustAgentService;
30 * An archive of trust events.
  /packages/services/Car/TrustAgent/src/com/android/car/trust/comms/
SimpleBleClient.java 16 package com.android.car.trust.comms;
SimpleBleServer.java 16 package com.android.car.trust.comms;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 138 TrustAnchor trust; local
141 trust = CertPathValidatorUtilities.findTrustAnchor((X509Certificate) certs.get(certs.size() - 1),
149 if (trust == null)
151 throw new CertPathValidatorException("Trust anchor for certification path not found.", null, certPath, -1);
154 // RFC 5280 - CRLs must originate from the same trust anchor as the target certificate.
155 paramsPKIX = new PKIXExtendedParameters.Builder(paramsPKIX).setTrustAnchor(trust).build();
240 X509Certificate sign = trust.getTrustedCert();
250 workingIssuerName = PrincipalUtils.getCA(trust);
251 workingPublicKey = trust.getCAPublicKey();
256 throw new ExtCertPathValidatorException("Subject of trust anchor could not be (re)encoded.", ex, certPath
    [all...]
  /frameworks/base/core/java/android/text/
BoringLayout.java 93 boolean trust;
102 trust = true;
110 trust = false;
114 metrics, includepad, trust); local
146 boolean trust;
152 trust = true;
161 trust = false;
165 metrics, includepad, trust); local
  /external/wpa_supplicant_8/src/tls/
x509v3.c 2031 struct x509_certificate *cert, *trust; local
    [all...]

Completed in 507 milliseconds

1 2