/frameworks/base/core/jni/ |
D | android_bluetooth_BluetoothSocket.cpp | 98 jboolean encrypt; in initSocketNative() local 125 encrypt = env->GetBooleanField(obj, field_mEncrypt); in initSocketNative() 131 lm |= encrypt ? RFCOMM_LM_ENCRYPT : 0; in initSocketNative() 132 lm |= (auth && encrypt) ? RFCOMM_LM_SECURE : 0; in initSocketNative() 136 lm |= encrypt ? L2CAP_LM_ENCRYPT : 0; in initSocketNative() 137 lm |= (auth && encrypt) ? L2CAP_LM_SECURE : 0; in initSocketNative() 345 jboolean encrypt; in acceptNative() local 393 encrypt = env->GetBooleanField(obj, field_mEncrypt); in acceptNative() 399 type, fd, auth, encrypt, addr_jstr, -1); in acceptNative()
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothServerSocket.java | 82 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) in BluetoothServerSocket() argument 85 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null); in BluetoothServerSocket()
|
D | BluetoothSocket.java | 130 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, in BluetoothSocket() argument 146 mEncrypt = encrypt; in BluetoothSocket() 175 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, in BluetoothSocket() argument 177 this(type, fd, auth, encrypt, new BluetoothDevice(address), port, null); in BluetoothSocket()
|
D | BluetoothAdapter.java | 1000 boolean auth, boolean encrypt) throws IOException { in createNewRfcommSocketAndRecord() argument 1014 BluetoothSocket.TYPE_RFCOMM, auth, encrypt, channel); in createNewRfcommSocketAndRecord()
|
/frameworks/base/core/java/android/app/admin/ |
D | IDevicePolicyManager.aidl | 78 int setStorageEncryption(in ComponentName who, boolean encrypt); in setStorageEncryption() argument
|
D | DevicePolicyManager.java | 1187 public int setStorageEncryption(ComponentName admin, boolean encrypt) { in setStorageEncryption() argument 1190 return mService.setStorageEncryption(admin, encrypt); in setStorageEncryption()
|
/frameworks/base/services/java/com/android/server/ |
D | DevicePolicyManagerService.java | 1943 public int setStorageEncryption(ComponentName who, boolean encrypt) { in setStorageEncryption() argument 1958 if (ap.encryptionRequested != encrypt) { in setStorageEncryption() 1959 ap.encryptionRequested = encrypt; in setStorageEncryption() 2043 private void setEncryptionRequested(boolean encrypt) { in setEncryptionRequested() argument
|
/frameworks/base/docs/html/guide/google/play/billing/ |
D | billing_best_practices.jd | 55 sure to encrypt the content and use a device-specific encryption key.</p>
|
D | billing_integrate.jd | 1082 encrypt the data and use a device-specific encryption key. Also, if the purchase type for any of
|
/frameworks/base/docs/html/guide/practices/ |
D | security.jd | 136 choose to encrypt local files using a key that is not accessible to the
|
/frameworks/base/docs/html/guide/topics/security/ |
D | security.jd | 137 choose to encrypt local files using a key that is not accessible to the
|
/frameworks/base/docs/html/guide/google/play/licensing/ |
D | adding-licensing.jd | 411 encrypt and decrypt the data as it is written to or read from storage.
|