Searched refs:secure (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/native/include/ui/
H A DDisplayInfo.h35 bool secure{false};
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DRttManagerTest.java66 && params1.secure == params2.secure
77 params.secure = true;
82 params2.secure = false;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DUnlockMethodCache.java40 /** Whether the user configured a secure unlock method (PIN, password, etc.) */
63 * @return whether the user configured a secure unlock method like PIN, password, etc.
91 boolean secure = mLockPatternUtils.isSecure(user);
92 boolean canSkipBouncer = !secure || mKeyguardUpdateMonitor.getUserCanSkipBouncer(user);
97 boolean changed = secure != mSecure || canSkipBouncer != mCanSkipBouncer ||
100 mSecure = secure;
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoPlugin.cpp35 ssize_t CryptoPlugin::decrypt(bool secure, const KeyId keyId, const Iv iv, argument
39 if (secure) {
H A DCryptoPlugin.h46 bool secure, const KeyId keyId, const Iv iv,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitorImpl.java96 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { argument
97 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return;
99 mSecure = secure;
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java59 boolean secure; field in class:KeyguardServiceDelegate.KeyguardState
71 // Assume keyguard is showing and secure until we know for sure. This is here in
76 secure = true;
141 mKeyguardState.secure = false;
256 mKeyguardState.secure = mKeyguardService.isSecure(userId);
258 return mKeyguardState.secure;
388 pw.println(prefix + "secure=" + mKeyguardState.secure);
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DVoiceInteractionMain.java35 findViewById(R.id.secure).setOnClickListener(mSecureListener);
/frameworks/native/include/media/cas/
H A DDescramblerAPI.h61 // If this method returns false, a non-secure decoder will be used to
63 // to support insecure decryption of the data (secure = false) for
84 bool secure,
/frameworks/native/include/media/hardware/
H A DCryptoAPI.h71 // If this method returns false, a non-secure decoder will be used to
73 // to support insecure decryption of the data (secure = false) for
103 bool secure,
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java80 private static native IBinder nativeCreateDisplay(String name, boolean secure); argument
128 * Surface creation flag: The surface contains secure content, special
609 public boolean secure; field in class:SurfaceControl.PhysicalDisplayInfo
633 && secure == other.secure
650 secure = other.secure;
659 + "density " + density + ", " + xDpi + " x " + yDpi + " dpi, secure " + secure
769 public static IBinder createDisplay(String name, boolean secure) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DOverlayDisplayAdapter.java65 * <li><pre>secure</pre>: creates a secure display</li>
195 boolean secure = flagString != null && flagString.contains(",secure");
200 mOverlays.add(new OverlayDisplayHandle(name, modes, gravity, secure, number));
240 boolean secure, int state,
246 mSecure = secure;
372 boolean secure, int number) {
376 mSecure = secure;
237 OverlayDisplayDevice(IBinder displayToken, String name, List<OverlayMode> modes, int activeMode, int defaultMode, float refreshRate, long presentationDeadlineNanos, boolean secure, int state, SurfaceTexture surfaceTexture, int number) argument
371 OverlayDisplayHandle(String name, List<OverlayMode> modes, int gravity, boolean secure, int number) argument
H A DVirtualDisplayAdapter.java71 (String name, boolean secure) -> SurfaceControl.createDisplay(name, secure));
86 boolean secure = (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0;
88 IBinder displayToken = mSurfaceControlDisplayFactory.createDisplay(name, secure);
433 public IBinder createDisplay(String name, boolean secure); argument
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeySessionLibrary.h36 bool secure,
H A DClearKeyCasPlugin.cpp343 bool secure, DescramblerPlugin::ScramblingControl scramblingControl,
346 if (secure) {
431 bool secure,
441 ALOGV("descramble: secure=%d, sctrl=%d, subSamples=%s, "
443 (int)secure, (int)scramblingControl,
453 secure, scramblingControl,
342 decrypt( bool secure, DescramblerPlugin::ScramblingControl scramblingControl, size_t numSubSamples, const DescramblerPlugin::SubSample *subSamples, const void *srcPtr, void *dstPtr, AString * ) argument
430 descramble( bool secure, ScramblingControl scramblingControl, size_t numSubSamples, const SubSample *subSamples, const void *srcPtr, int32_t srcOffset, void *dstPtr, int32_t dstOffset, AString *errorDetailMsg) argument
H A DClearKeyCasPlugin.h112 bool secure,
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp256 bool secure = false; local
259 secure = true;
264 ssize_t result = mPlugin->decrypt(secure, key, iv, mode, pattern, srcPtr, subSamples,
H A DCryptoHal.cpp324 bool secure; local
333 secure = false;
337 secure = true;
349 Return<void> hResult = mPlugin->decrypt(secure, toHidlArray16(keyId), toHidlArray16(iv), hMode,
/frameworks/base/core/java/android/provider/
H A DBrowser.java267 boolean secure = false;
273 secure = true;
279 if (secure) {
/frameworks/av/drm/mediacas/plugins/mock/
H A DMockCasPlugin.h105 bool secure,
H A DMockCasPlugin.cpp211 bool secure,
220 ALOGV("MockDescramblerPlugin::descramble(secure=%d, sctrl=%d,"
222 (int)secure, (int)scramblingControl,
210 descramble( bool secure, ScramblingControl scramblingControl, size_t numSubSamples, const SubSample *subSamples, const void *srcPtr, int32_t srcOffset, void *dstPtr, int32_t dstOffset, AString *errorDetailMsg) argument
/frameworks/av/include/media/stagefright/
H A DACodecBufferChannel.h57 // Encrypted buffer in case of secure input.
69 bool secure,
/frameworks/av/media/libstagefright/foundation/include/
H A DACodecBufferChannel.h57 // Encrypted buffer in case of secure input.
69 bool secure,
/frameworks/av/media/libstagefright/include/
H A DACodecBufferChannel.h57 // Encrypted buffer in case of secure input.
69 bool secure,
/frameworks/base/wifi/java/android/net/wifi/
H A DRttManager.java204 /** Whether the secure RTT protocol is supported. */
345 * Whether the secure RTT protocol needs to be used for ranging this peer device.
347 public boolean secure; field in class:RttManager.RttParams
488 sb.append(", secure=" + secure);
538 dest.writeByte(params.secure ? (byte) 1 : 0);
569 params[i].secure = (in.readByte() != 0);
748 * Whether the secure RTT protocol was used for ranging.
750 public boolean secure; field in class:RttManager.RttResult
803 sb.append(", secure
[all...]

Completed in 5356 milliseconds

123