Searched refs:trusted (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DUnlockMethodCache.java41 /** Whether the unlock method is currently insecure (insecure method or trusted environment) */
92 boolean trusted = mKeyguardUpdateMonitor.getUserHasTrust(user);
100 mTrusted = trusted;
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java99 HashSet<X509Certificate> trusted = new HashSet<X509Certificate>();
111 trusted.add((X509Certificate) cf.generateCertificate(is));
119 return trusted;
230 // in the package equals one of our trusted public keys.
232 HashSet<X509Certificate> trusted = getTrustedCerts(
237 for (X509Certificate c : trusted) {
244 throw new SignatureException("signature doesn't match any trusted key");
247 // The signature cert matches a trusted key. Now verify that
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java190 boolean trusted = aggregateIsTrusted(userId);
193 changed = mUserIsTrusted.get(userId) != trusted;
194 mUserIsTrusted.put(userId, trusted);
196 dispatchOnTrustChanged(trusted, userId, flags);
324 boolean trusted = aggregateIsTrusted(id);
332 boolean deviceLocked = secure && showingKeyguard && !trusted;
722 fout.print(": trusted=" + dumpBool(aggregateIsTrusted(user.id)));
733 boolean trusted = info.agent.isTrusted();
738 fout.print(", trusted=" + dumpBool(trusted));
[all...]
/frameworks/av/include/media/nbaio/
H A DNBLog.h142 void log(const Entry *entry, bool trusted = false);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java131 final boolean trusted = mContext.checkCallingOrSelfPermission(
137 registerClientLocked(client, pid, packageName, resolvedUserId, trusted);
312 int pid, String packageName, int userId, boolean trusted) {
322 clientRecord = new ClientRecord(userRecord, client, pid, packageName, trusted);
507 int pid, String packageName, boolean trusted) {
512 mTrusted = trusted;
996 // Build a new client state for trusted clients.
311 registerClientLocked(IMediaRouterClient client, int pid, String packageName, int userId, boolean trusted) argument
506 ClientRecord(UserRecord userRecord, IMediaRouterClient client, int pid, String packageName, boolean trusted) argument
/frameworks/av/media/libnbaio/
H A DNBLog.cpp167 log(&entry, true /*trusted*/);
170 void NBLog::Writer::log(const NBLog::Entry *entry, bool trusted) argument
175 if (!trusted) {

Completed in 249 milliseconds