Searched defs:isSecure (Results 1 - 18 of 18) sorted by path

/frameworks/base/core/java/android/view/
H A DSurfaceView.java406 * @param isSecure True if the surface view is secure.
408 public void setSecure(boolean isSecure) { argument
409 if (isSecure) {
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java526 if (!isSecure() && getLong(DISABLE_LOCKSCREEN_KEY, 0) != 0) {
1536 public boolean isSecure() { method in class:LockPatternUtils
1537 return isSecure(getCurrentOrCallingUserId());
1540 public boolean isSecure(int userId) { method in class:LockPatternUtils
/frameworks/base/media/java/android/media/projection/
H A DMediaProjection.java102 int width, int height, int dpi, boolean isSecure, @Nullable Surface surface,
105 int flags = isSecure ? DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE : 0;
101 createVirtualDisplay(@onNull String name, int width, int height, int dpi, boolean isSecure, @Nullable Surface surface, @Nullable VirtualDisplay.Callback callback, @Nullable Handler handler) argument
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java368 public boolean isSecure() { method in class:KeyguardTestActivity.LockPatternUtilsMock
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java641 mLockPatternUtils.getPowerButtonInstantlyLocks() || !mLockPatternUtils.isSecure();
750 if (mScreenOn && mLockPatternUtils.isSecure()) {
998 return !mUpdateMonitor.isDeviceProvisioned() && !isSecure();
1077 public boolean isSecure() { method in class:KeyguardViewMediator
1078 return mLockPatternUtils.isSecure()
1424 + " isSecure=" + isSecure() + " --> flags=0x" + Integer.toHexString(flags));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBouncer.java220 public boolean isSecure() { method in class:KeyguardBouncer
H A DStatusBarKeyguardViewManager.java309 public boolean isSecure() { method in class:StatusBarKeyguardViewManager
310 return mBouncer.isSecure();
435 public boolean isSecure(int userId) { method in class:StatusBarKeyguardViewManager
436 return mBouncer.isSecure() || mLockPatternUtils.isSecure(userId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java40 public boolean isSecure() { method in class:KeyguardMonitor
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java194 public boolean isSecure() { method in class:KeyguardServiceDelegate
196 mKeyguardState.secure = mKeyguardService.isSecure();
H A DKeyguardServiceWrapper.java199 public boolean isSecure() { method in class:KeyguardServiceWrapper
200 return mKeyguardStateMonitor.isSecure();
H A DKeyguardStateMonitor.java60 public boolean isSecure() { method in class:KeyguardStateMonitor
61 return mLockPatternUtils.isSecure() || mSimSecure;
/frameworks/base/services/core/java/com/android/server/wm/
H A DScreenRotationAnimation.java203 boolean isSecure) {
246 if (isSecure) {
201 ScreenRotationAnimation(Context context, DisplayContent displayContent, SurfaceSession session, boolean inTransaction, boolean forceDefaultOrientation, boolean isSecure) argument
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp57 bool isSecure,
72 mIsSecure(isSecure),
303 if (layer->isSecure()) {
498 "flips=%u, isSecure=%d, secureVis=%d, powerMode=%d, activeConfig=%d, numLayers=%zu\n"
52 DisplayDevice( const sp<SurfaceFlinger>& flinger, DisplayType type, int32_t hwcId, int format, bool isSecure, const wp<IBinder>& displayToken, const sp<DisplaySurface>& displaySurface, const sp<IGraphicBufferProducer>& producer, EGLConfig config) argument
H A DDisplayDevice.h80 bool isSecure,
92 // isSecure indicates whether this display can be trusted to display
94 bool isSecure() const { return mIsSecure; } function in class:android::DisplayDevice
H A DLayer.h167 * isSecure - true if this surface is secure, that is if it prevents
170 virtual bool isSecure() const { return mSecure; } function in class:android::Layer
H A DLayerDim.h40 virtual bool isSecure() const { return false; } function in class:android::LayerDim
H A DSurfaceFlinger.cpp232 info.isSecure = secure;
263 info.isSecure = true;
418 bool isSecure = true; local
431 type, hwcId, mHwc->getFormat(hwcId), isSecure, token,
1385 mHwc->getFormat(hwcDisplayId), state.isSecure,
H A DSurfaceFlinger.h175 bool isSecure; member in struct:android::SurfaceFlinger::DisplayDeviceState

Completed in 381 milliseconds