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.java60 public class BluetoothOppObexClientSession implements BluetoothOppObexSession {
199 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in run()
293 msg.what = BluetoothOppObexSession.MSG_SHARE_COMPLETE; in doSend()
298 msg.what = BluetoothOppObexSession.MSG_SESSION_ERROR; in doSend()
406 .obtainMessage(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in sendFile()
407 BluetoothOppObexSession.SESSION_TIMEOUT); in sendFile()
418 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in sendFile()
426 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in sendFile()
547 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in handleSendException()
562 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in interrupt()
DBluetoothOppObexServerSession.java63 BluetoothOppObexSession {
319 .obtainMessage(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in onPut()
320 BluetoothOppObexSession.SESSION_TIMEOUT); in onPut()
332 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in onPut()
383 Message msg = Message.obtain(mCallback, BluetoothOppObexSession.MSG_SHARE_COMPLETE); in onPut()
389 BluetoothOppObexSession.MSG_SESSION_ERROR); in onPut()
420 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in onPut()
603 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in onClose()
DBluetoothOppTransfer.java95 private BluetoothOppObexSession mSession;
108 BluetoothOppBatch batch, BluetoothOppObexSession session) { in BluetoothOppTransfer()
166 case BluetoothOppObexSession.MSG_SHARE_COMPLETE: in handleMessage()
191 case BluetoothOppObexSession.MSG_SESSION_COMPLETE: in handleMessage()
205 case BluetoothOppObexSession.MSG_SESSION_ERROR: in handleMessage()
215 case BluetoothOppObexSession.MSG_SHARE_INTERRUPTED: in handleMessage()
239 case BluetoothOppObexSession.MSG_CONNECT_TIMEOUT: in handleMessage()
DBluetoothOppObexSession.java40 public interface BluetoothOppObexSession { interface