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

1 2 3 4 5 6

  /frameworks/base/core/java/android/app/trust/
IStrongAuthTracker.aidl 17 package android.app.trust;
ITrustListener.aidl 17 package android.app.trust;
20 * Private API to be notified about trust changes.
ITrustManager.aidl 17 package android.app.trust;
19 import android.app.trust.ITrustListener;
22 * System private API to comunicate with trust service.
  /packages/services/Car/car-lib/src/android/car/trust/
ICarTrustAgentEnrolmentCallback.aidl 17 package android.car.trust;
ICarTrustAgentUnlockCallback.aidl 17 package android.car.trust;
ICarTrustAgentTokenRequestDelegate.aidl 17 package android.car.trust;
30 /** Called to revoke trust */
ICarTrustAgentTokenResponseCallback.aidl 17 package android.car.trust;
ICarTrustAgentBleService.aidl 17 package android.car.trust;
20 import android.car.trust.ICarTrustAgentBleCallback;
21 import android.car.trust.ICarTrustAgentEnrolmentCallback;
22 import android.car.trust.ICarTrustAgentTokenRequestDelegate;
23 import android.car.trust.ICarTrustAgentTokenResponseCallback;
24 import android.car.trust.ICarTrustAgentUnlockCallback;
ICarTrustAgentBleCallback.aidl 17 package android.car.trust;
  /external/boringssl/src/crypto/x509/
x509_trs.c 66 static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
67 static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
68 static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
74 * WARNING: the following table should be kept in order of trust and without
75 * any gaps so we can just subtract the minimum trust value to get an index
103 return (*a)->trust - (*b)->trust;
106 int (*X509_TRUST_set_default(int (*trust) (int, X509 *, int))) (int, X509 *,
110 default_trust = trust;
158 tmp.trust = id
    [all...]
x_x509a.c 74 ASN1_SEQUENCE_OF_OPT(X509_CERT_AUX, trust, ASN1_OBJECT),
150 if (aux->trust == NULL) {
151 aux->trust = sk_ASN1_OBJECT_new_null();
152 if (aux->trust == NULL)
155 if (!sk_ASN1_OBJECT_push(aux->trust, objtmp))
186 if (x->aux && x->aux->trust) {
187 sk_ASN1_OBJECT_pop_free(x->aux->trust, ASN1_OBJECT_free);
188 x->aux->trust = NULL;
t_x509a.c 72 if (aux->trust) {
75 for (i = 0; i < sk_ASN1_OBJECT_num(aux->trust); i++) {
81 sk_ASN1_OBJECT_value(aux->trust, i), 0);
  /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
  /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...]
  /frameworks/base/core/java/android/service/trust/
ITrustAgentService.aidl 16 package android.service.trust;
20 import android.service.trust.ITrustAgentServiceCallback;
ITrustAgentServiceCallback.aidl 16 package android.service.trust;
  /external/google-breakpad/src/processor/
stackwalker_address_list.cc 67 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
84 // All frames have the highest level of trust because they were
88 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
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...]
stackwalker_ppc64.cc 68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
122 frame->trust = StackFrame::FRAME_TRUST_FP;
stackwalker_sparc.cc 68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
133 frame->trust = StackFrame::FRAME_TRUST_FP;
stackwalker_ppc.cc 77 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
131 frame->trust = StackFrame::FRAME_TRUST_FP;
  /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) !=
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_darwin.go 41 // 1. Run "security trust-settings-export" and "security
42 // trust-settings-export -d" to discover the set of certs with some
43 // user-tweaked trust policy. We're too lazy to parse the XML (at
44 // least at this stage of Go 1.8) to understand what the trust
62 println(fmt.Sprintf("crypto/x509: %d certs have a trust policy", len(hasPolicy)))
106 // tweaked their trust policy. These 4 goroutines are only
107 // defensive in the pathological case of many trust edits.
195 // possibly-altered trust policy. The keys of the map are capitalized
198 // verify-cert` to see whether the user altered the default trust
214 // If there are no trust settings, th
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
root_darwin.go 41 // 1. Run "security trust-settings-export" and "security
42 // trust-settings-export -d" to discover the set of certs with some
43 // user-tweaked trust policy. We're too lazy to parse the XML (at
44 // least at this stage of Go 1.8) to understand what the trust
62 println(fmt.Sprintf("crypto/x509: %d certs have a trust policy", len(hasPolicy)))
106 // tweaked their trust policy. These 4 goroutines are only
107 // defensive in the pathological case of many trust edits.
195 // possibly-altered trust policy. The keys of the map are capitalized
198 // verify-cert` to see whether the user altered the default trust
214 // If there are no trust settings, th
    [all...]
  /external/trappy/scripts/
publish_interactive_plots.py 80 trust = TrustNotebookApp()
81 trust.sign_notebook(target)

Completed in 203 milliseconds

1 2 3 4 5 6