Home
last modified time | relevance | path

Searched refs:BluetoothOppObexSession (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppObexClientSession.java63 public class BluetoothOppObexClientSession implements BluetoothOppObexSession {
232 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in run()
336 ? BluetoothOppObexSession.MSG_SHARE_COMPLETE in doSend()
337 : BluetoothOppObexSession.MSG_SESSION_ERROR; in doSend()
465 BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in sendFile()
466 BluetoothOppObexSession.SESSION_TIMEOUT); in sendFile()
486 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in sendFile()
638 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in handleSendException()
655 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in interrupt()
DBluetoothOppTransfer.java92 private BluetoothOppObexSession mSession;
130 mSessionHandler.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in onReceive()
133 BluetoothOppObexSession.MSG_CONNECT_TIMEOUT)); in onReceive()
176 BluetoothOppObexSession session) { in BluetoothOppTransfer()
237 case BluetoothOppObexSession.MSG_SHARE_COMPLETE: in handleMessage()
268 case BluetoothOppObexSession.MSG_SESSION_COMPLETE: in handleMessage()
285 case BluetoothOppObexSession.MSG_SESSION_ERROR: in handleMessage()
305 case BluetoothOppObexSession.MSG_SHARE_INTERRUPTED: in handleMessage()
333 case BluetoothOppObexSession.MSG_CONNECT_TIMEOUT: in handleMessage()
DBluetoothOppObexServerSession.java68 implements BluetoothOppObexSession {
308 BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in onPut()
309 BluetoothOppObexSession.SESSION_TIMEOUT); in onPut()
327 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in onPut()
385 Message msg = Message.obtain(mCallback, BluetoothOppObexSession.MSG_SHARE_COMPLETE); in onPut()
391 Message.obtain(mCallback, BluetoothOppObexSession.MSG_SESSION_ERROR); in onPut()
417 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in onPut()
644 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in onClose()
DBluetoothOppObexSession.java40 public interface BluetoothOppObexSession { interface