Home
last modified time | relevance | path

Searched refs:mSessionKey (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DBluetoothPbapObexAuthenticator.java37 private String mSessionKey = "0000"; field in BluetoothPbapObexAuthenticator
51 if (mSessionKey != null && mSessionKey.length() != 0) { in onAuthenticationChallenge()
52 if (DBG) Log.v(TAG, "onAuthenticationChallenge: mSessionKey=" + mSessionKey); in onAuthenticationChallenge()
53 pa = new PasswordAuthentication(null, mSessionKey.getBytes()); in onAuthenticationChallenge()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapAuthenticator.java49 private String mSessionKey; field in BluetoothPbapAuthenticator
56 mSessionKey = null; in BluetoothPbapAuthenticator()
70 mSessionKey = string; in setSessionKey()
92 if (mSessionKey.trim().length() != 0) { in onAuthenticationChallenge()
93 return new PasswordAuthentication(null, mSessionKey.getBytes()); in onAuthenticationChallenge()
DBluetoothPbapActivity.java80 private String mSessionKey = ""; field in BluetoothPbapActivity
166 BluetoothPbapService.EXTRA_SESSION_KEY, mSessionKey); in onPositive()
198 mSessionKey = mKeyView.getText().toString(); in onClick()