/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardMonitor.java | 44 public void notifyKeyguardState(boolean showing, boolean secure) { in notifyKeyguardState() argument 45 if (mShowing == showing && mSecure == secure) return; in notifyKeyguardState() 47 mSecure = secure; in notifyKeyguardState()
|
/frameworks/av/media/libmedia/ |
D | ICrypto.cpp | 95 bool secure, in decrypt() 105 data.writeInt32(secure); in decrypt() 133 if (secure) { in decrypt() 145 if (!secure && result >= 0) { in decrypt() 228 bool secure = data.readInt32() != 0; in onTransact() local 251 if (secure) { in onTransact() 259 secure, in onTransact() 275 if (!secure) { in onTransact()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceControl.java | 67 private static native IBinder nativeCreateDisplay(String name, boolean secure); in nativeCreateDisplay() argument 471 public boolean secure; field in SurfaceControl.PhysicalDisplayInfo 495 && secure == other.secure in equals() 512 secure = other.secure; in copyFrom() 521 + "density " + density + ", " + xDpi + " x " + yDpi + " dpi, secure " + secure in toString() 603 public static IBinder createDisplay(String name, boolean secure) { in createDisplay() argument 607 return nativeCreateDisplay(name, secure); in createDisplay()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | OverlayDisplayAdapter.java | 156 boolean secure = flagString != null && flagString.contains(",secure"); in updateOverlayDisplayDevicesLocked() 160 + ", densityDpi=" + densityDpi + ", secure=" + secure); in updateOverlayDisplayDevicesLocked() 163 width, height, densityDpi, gravity, secure)); in updateOverlayDisplayDevicesLocked() 205 int densityDpi, boolean secure, int state, in OverlayDisplayDevice() argument 214 mSecure = secure; in OverlayDisplayDevice() 286 int width, int height, int densityDpi, int gravity, boolean secure) { in OverlayDisplayHandle() argument 292 mSecure = secure; in OverlayDisplayHandle()
|
D | OverlayDisplayWindow.java | 96 int width, int height, int densityDpi, int gravity, boolean secure, in OverlayDisplayWindow() argument 104 mSecure = secure; in OverlayDisplayWindow() 109 if (secure) { in OverlayDisplayWindow()
|
/frameworks/av/drm/mediadrm/plugins/clearkey/ |
D | CryptoPlugin.cpp | 35 ssize_t CryptoPlugin::decrypt(bool secure, const KeyId keyId, const Iv iv, in decrypt() argument 39 if (secure) { in decrypt()
|
D | CryptoPlugin.h | 43 bool secure, const KeyId keyId, const Iv iv,
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
D | KeyguardServiceDelegate.java | 48 secure = true; in KeyguardState() 54 boolean secure; field in KeyguardServiceDelegate.KeyguardState 116 mKeyguardState.secure = false; in bindService() 197 mKeyguardState.secure = mKeyguardService.isSecure(); in isSecure() 199 return mKeyguardState.secure; in isSecure()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | UnlockMethodCache.java | 89 private void notifyListeners(boolean secure) { in notifyListeners() argument 91 listener.onMethodSecureChanged(secure); in notifyListeners()
|
/frameworks/native/include/ui/ |
D | DisplayInfo.h | 36 bool secure; member
|
/frameworks/base/docs/html/guide/topics/connectivity/nfc/ |
D | hce.jd | 38 chip in the device, called a <em>secure element</em>. Many SIM cards provided by 39 wireless carriers also contain a secure element.</p> 42 involve a secure element, called <em>host-based card emulation</em>. This allows any 50 <p>When NFC card emulation is provided using a secure element, the card to be emulated 51 is provisioned into the secure element on 54 from the reader directly to the secure element. Figure 1 illustrates this concept.</p> 56 <img src="{@docRoot}images/nfc/secure-element.png" /> 57 <p class="img-caption"><strong>Figure 1.</strong> NFC card emulation with a secure element.</p> 59 <p>The secure element itself performs the communication with the NFC terminal, 61 transaction is complete, an Android application can query the secure element [all …]
|
/frameworks/base/docs/html/training/ |
D | best-security.jd | 9 keep your app's data secure.</p>
|
/frameworks/base/docs/html/guide/faq/ |
D | security.jd | 6 <li><a href="#secure">Is Android Secure?</a></li> 20 <a name="secure" id="secure"></a><h2>Is Android secure?</h2> 24 of the most secure mobile platforms available while still fulfilling our goal 40 <p>We have made great efforts to secure the Android platform, but it is
|
/frameworks/av/include/media/ |
D | ICrypto.h | 45 bool secure,
|
/frameworks/av/media/libmediaplayerservice/ |
D | Crypto.cpp | 237 bool secure, in decrypt() argument 256 secure, key, iv, mode, srcPtr, subSamples, numSubSamples, dstPtr, in decrypt()
|
D | Crypto.h | 49 bool secure,
|
/frameworks/native/include/media/hardware/ |
D | CryptoAPI.h | 82 bool secure,
|
/frameworks/base/core/jni/ |
D | android_view_SurfaceControl.cpp | 63 jfieldID secure; member 326 jboolean secure) { in nativeCreateDisplay() argument 329 String8(name.c_str()), bool(secure))); in nativeCreateDisplay() 401 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure); in nativeGetDisplayConfigs() 663 gPhysicalDisplayInfoClassInfo.secure = env->GetFieldID(clazz, "secure", "Z"); in register_android_view_SurfaceControl()
|
/frameworks/native/libs/gui/ |
D | ISurfaceComposer.cpp | 184 virtual sp<IBinder> createDisplay(const String8& displayName, bool secure) in createDisplay() argument 189 data.writeInt32(secure ? 1 : 0); in createDisplay() 377 bool secure = bool(data.readInt32()); in onTransact() local 378 sp<IBinder> display(createDisplay(displayName, secure)); in onTransact()
|
D | SurfaceComposerClient.cpp | 137 sp<IBinder> createDisplay(const String8& displayName, bool secure); 188 sp<IBinder> Composer::createDisplay(const String8& displayName, bool secure) { in createDisplay() argument 190 secure); in createDisplay() 508 bool secure) { in createDisplay() argument 509 return Composer::getInstance().createDisplay(displayName, secure); in createDisplay()
|
/frameworks/base/core/java/android/provider/ |
D | Browser.java | 264 boolean secure = false; in getVisitedLike() 270 secure = true; in getVisitedLike() 276 if (secure) { in getVisitedLike()
|
/frameworks/base/docs/html/google/play/billing/ |
D | billing_best_practices.jd | 41 a remote server, be sure that the device-server handshake is secure.</p> 85 <h3 id="nonce">Use secure random nonces</h3> 86 <p>Nonces must not be predictable or reused. Always use a cryptographically secure random number 95 …s a further security precaution, you should perform the verification on your own secure server.</p>
|
/frameworks/base/docs/html/tools/publishing/ |
D | app-signing.jd | 24 <li><a href="#secure-key">Securing Your Private Key</a></li> 75 set of private keys. You must keep your keystore in a safe and secure place.</li> 85 secure place, and ensure that you have secure backups of them. If you publish an app to Google 211 signature-based permissions checks, your apps can share code and data in a secure manner.</li> 224 <h2 id="secure-key">Securing Your Private Key</h2> 241 all times, until the key is expired. Here are some tips for keeping your key secure:</p> 247 <li>Keep the keystore file containing your private key in a safe, secure place.</li> 251 your key, it will remain secure.</p>
|
/frameworks/base/docs/html/training/secure-file-sharing/ |
D | index.jd | 36 In all cases, the only secure way to offer a file from your app to another app is to send the 38 Content URIs with temporary URI access permissions are secure because they apply only to the
|
/frameworks/base/tests/CoreTests/android/core/ |
D | SSLSocketTest.java | 79 boolean secure, String path, int outerLoop, int innerLoop, in fetch() argument 85 Socket socket = secure ? socketFactory.createSocket() in fetch() 180 private void fetch(String host, int port, boolean secure, String path, in fetch() argument 183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop, in fetch()
|