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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java44 public void notifyKeyguardState(boolean showing, boolean secure) { argument
45 if (mShowing == showing && mSecure == secure) return;
47 mSecure = secure;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DUnlockMethodCache.java39 /** Whether the user configured a secure unlock method (PIN, password, etc.) */
61 * @return whether the user configured a secure unlock method like PIN, password, etc.
84 boolean secure = mLockPatternUtils.isSecure();
85 boolean currentlyInsecure = !secure || mKeyguardUpdateMonitor.getUserHasTrust(user);
89 boolean changed = secure != mSecure || currentlyInsecure != mCurrentlyInsecure ||
92 mSecure = secure;
/frameworks/native/include/ui/
H A DDisplayInfo.h36 bool secure; member in struct:android::DisplayInfo
/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.h43 bool secure, const KeyId keyId, const Iv iv,
/frameworks/av/media/libmedia/
H A DICrypto.cpp96 bool secure,
106 data.writeInt32(secure);
134 if (secure) {
146 if (!secure && result >= 0) {
238 bool secure = data.readInt32() != 0; local
261 if (secure) {
269 secure,
285 if (!secure) {
95 decrypt( bool secure, const uint8_t key[16], const uint8_t iv[16], CryptoPlugin::Mode mode, const void *srcPtr, const CryptoPlugin::SubSample *subSamples, size_t numSubSamples, void *dstPtr, AString *errorDetailMsg) argument
/frameworks/base/services/core/java/com/android/server/display/
H A DOverlayDisplayAdapter.java159 boolean secure = flagString != null && flagString.contains(",secure");
163 + ", densityDpi=" + densityDpi + ", secure=" + secure);
166 width, height, densityDpi, gravity, secure, number));
208 int densityDpi, boolean secure, int state,
217 mSecure = secure;
292 int height, int densityDpi, int gravity, boolean secure, int number) {
298 mSecure = secure;
206 OverlayDisplayDevice(IBinder displayToken, String name, int width, int height, float refreshRate, long presentationDeadlineNanos, int densityDpi, boolean secure, int state, SurfaceTexture surfaceTexture, int number) argument
291 OverlayDisplayHandle(String name, int width, int height, int densityDpi, int gravity, boolean secure, int number) argument
H A DOverlayDisplayWindow.java96 int width, int height, int densityDpi, int gravity, boolean secure,
104 mSecure = secure;
109 if (secure) {
95 OverlayDisplayWindow(Context context, String name, int width, int height, int densityDpi, int gravity, boolean secure, Listener listener) argument
H A DVirtualDisplayAdapter.java66 boolean secure = (flags & DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE) != 0;
68 IBinder displayToken = SurfaceControl.createDisplay(name, secure);
H A DWifiDisplayAdapter.java370 boolean secure = (flags & RemoteDisplay.DISPLAY_FLAG_SECURE) != 0;
372 if (secure) {
383 IBinder displayToken = SurfaceControl.createDisplay(name, secure);
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java67 private static native IBinder nativeCreateDisplay(String name, boolean secure); argument
98 * Surface creation flag: The surface contains secure content, special
471 public boolean secure; field in class:SurfaceControl.PhysicalDisplayInfo
495 && secure == other.secure
512 secure = other.secure;
521 + "density " + density + ", " + xDpi + " x " + yDpi + " dpi, secure " + secure
603 public static IBinder createDisplay(String name, boolean secure) { argument
[all...]
/frameworks/av/include/media/
H A DICrypto.h47 bool secure,
/frameworks/av/media/libmediaplayerservice/
H A DCrypto.h51 bool secure,
H A DCrypto.cpp237 bool secure,
256 secure, key, iv, mode, srcPtr, subSamples, numSubSamples, dstPtr,
236 decrypt( bool secure, const uint8_t key[16], const uint8_t iv[16], CryptoPlugin::Mode mode, const void *srcPtr, const CryptoPlugin::SubSample *subSamples, size_t numSubSamples, void *dstPtr, AString *errorDetailMsg) argument
/frameworks/native/include/media/hardware/
H A DCryptoAPI.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
82 bool secure,
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java44 // Assume keyguard is showing and secure until we know for sure. This is here in
49 secure = true;
56 boolean secure; field in class:KeyguardServiceDelegate.KeyguardState
120 mKeyguardState.secure = false;
196 mKeyguardState.secure = mKeyguardService.isSecure();
198 return mKeyguardState.secure;
/frameworks/native/include/gui/
H A DISurfaceComposer.h89 bool secure) = 0;
141 * This function will fail if there is a secure window on screen.
/frameworks/base/core/java/android/provider/
H A DBrowser.java264 boolean secure = false;
270 secure = true;
276 if (secure) {
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java79 boolean secure, String path, int outerLoop, int innerLoop,
85 Socket socket = secure ? socketFactory.createSocket()
180 private void fetch(String host, int port, boolean secure, String path, argument
183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop,
78 fetch(SSLSocketFactory socketFactory, String host, int port, boolean secure, String path, int outerLoop, int innerLoop, int delay, int timeout) argument
/frameworks/native/libs/gui/
H A DISurfaceComposer.cpp184 virtual sp<IBinder> createDisplay(const String8& displayName, bool secure) argument
189 data.writeInt32(secure ? 1 : 0);
387 bool secure = bool(data.readInt32()); local
388 sp<IBinder> display(createDisplay(displayName, secure));
H A DSurfaceComposerClient.cpp137 sp<IBinder> createDisplay(const String8& displayName, bool secure);
188 sp<IBinder> Composer::createDisplay(const String8& displayName, bool secure) { argument
190 secure);
508 bool secure) {
509 return Composer::getInstance().createDisplay(displayName, secure);
507 createDisplay(const String8& displayName, bool secure) argument
/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java63 * verify the server's identity yourself to ensure a secure connection.</p>
103 int handshakeTimeoutMillis, SSLSessionCache cache, boolean secure) {
106 mSecure = secure;
252 // Clear out all cached secure factories since configurations have changed.
102 SSLCertificateSocketFactory( int handshakeTimeoutMillis, SSLSessionCache cache, boolean secure) argument
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl381 void createVirtualNetwork(int netId, boolean hasDNS, boolean secure);
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp63 jfieldID secure; member in struct:android::__anon873
326 jboolean secure) {
329 String8(name.c_str()), bool(secure)));
401 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
663 gPhysicalDisplayInfoClassInfo.secure = env->GetFieldID(clazz, "secure", "Z");
325 nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj, jboolean secure) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp143 int32_t secure = 0; local
144 if (format->findInt32("secure", &secure) && secure != 0) {
147 mComponentName.append(".secure");
156 (secure ? "secure " : ""), mime.c_str());
160 mIsSecure = secure;

Completed in 2321 milliseconds

12