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.java61 public class BluetoothOppObexClientSession implements BluetoothOppObexSession {
204 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in run()
298 BluetoothOppObexSession.MSG_SHARE_COMPLETE : in doSend()
299 BluetoothOppObexSession.MSG_SESSION_ERROR; in doSend()
408 .obtainMessage(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in sendFile()
409 BluetoothOppObexSession.SESSION_TIMEOUT); in sendFile()
428 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in sendFile()
561 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in handleSendException()
576 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in interrupt()
DBluetoothOppTransfer.java97 private BluetoothOppObexSession mSession;
133 mSessionHandler.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in onReceive()
136 BluetoothOppObexSession.MSG_CONNECT_TIMEOUT)); in onReceive()
178 BluetoothOppBatch batch, BluetoothOppObexSession session) { in BluetoothOppTransfer()
236 case BluetoothOppObexSession.MSG_SHARE_COMPLETE: in handleMessage()
261 case BluetoothOppObexSession.MSG_SESSION_COMPLETE: in handleMessage()
276 case BluetoothOppObexSession.MSG_SESSION_ERROR: in handleMessage()
294 case BluetoothOppObexSession.MSG_SHARE_INTERRUPTED: in handleMessage()
318 case BluetoothOppObexSession.MSG_CONNECT_TIMEOUT: in handleMessage()
DBluetoothOppObexServerSession.java67 BluetoothOppObexSession {
310 .obtainMessage(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT), in onPut()
311 BluetoothOppObexSession.SESSION_TIMEOUT); in onPut()
323 mCallback.removeMessages(BluetoothOppObexSession.MSG_CONNECT_TIMEOUT); in onPut()
374 Message msg = Message.obtain(mCallback, BluetoothOppObexSession.MSG_SHARE_COMPLETE); in onPut()
380 BluetoothOppObexSession.MSG_SESSION_ERROR); in onPut()
411 msg.what = BluetoothOppObexSession.MSG_SHARE_INTERRUPTED; in onPut()
608 msg.what = BluetoothOppObexSession.MSG_SESSION_COMPLETE; in onClose()
DBluetoothOppObexSession.java40 public interface BluetoothOppObexSession { interface