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.java29 private String mSessionKey; field in BluetoothPbapObexAuthenticator
42 mSessionKey = key; in setReply()
70 if (mSessionKey != null && mSessionKey.length() != 0) { in onAuthenticationChallenge()
71 Log.v(TAG, "onAuthenticationChallenge: mSessionKey=" + mSessionKey); in onAuthenticationChallenge()
72 pa = new PasswordAuthentication(null, mSessionKey.getBytes()); in onAuthenticationChallenge()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapAuthenticator.java53 private String mSessionKey; field in BluetoothPbapAuthenticator
61 mSessionKey = null; in BluetoothPbapAuthenticator()
73 mSessionKey = string; in setSessionKey()
94 if (mSessionKey.trim().length() != 0) { in onAuthenticationChallenge()
95 PasswordAuthentication pa = new PasswordAuthentication(null, mSessionKey.getBytes()); in onAuthenticationChallenge()
DBluetoothPbapActivity.java84 private String mSessionKey = ""; field in BluetoothPbapActivity
178 BluetoothPbapService.EXTRA_SESSION_KEY, mSessionKey); in onPositive()
220 mSessionKey = mKeyView.getText().toString(); in onClick()