Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapServer.java50 public class SapServer extends Thread implements Callback { class
109 public SapServer(Handler serviceHandler, Context context, InputStream inStream, in SapServer() method in SapServer
148 int disconnectType = intent.getIntExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA,
226 Intent sapDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in setNotification()
240 sapDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, type); in setNotification()
255 sapDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, in setNotification()
257 Intent sapForceDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in setNotification()
258 sapForceDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, in setNotification()
293 notificationManager.cancel(SapServer.NOTIFICATION_ID); in clearNotification()
677 Intent sapDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in startDisconnectTimer()
DSapRilReceiver.java259 mSapServerMsgHandler.sendEmptyMessage(SapServer.SAP_MSG_RIL_CONNECT); in sendRilConnectMessage()
268 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RFC_REPLY, sapMsg); in sendClientMessage()
277 mSapServerMsgHandler.sendEmptyMessage(SapServer.SAP_RIL_SOCK_CLOSED); in sendShutdownMessage()
286 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RIL_IND, sapMsg); in sendRilIndMessage()
DSapService.java90 private SapServer mSapServer = null;
261 …mSapServer = new SapServer(mSessionStatusHandler, this, mConnSocket.getInputStream(), mConnSocket.… in startSapServerSession()
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
DSapServerTest.java22 import com.android.bluetooth.sap.SapServer;
260 Intent sapDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in testSapServerTimeouts()
262 SapServer.SAP_DISCONNECT_TYPE_EXTRA, SapMessage.DISC_IMMEDIATE); in testSapServerTimeouts()
302 private SapServer sapServer = null;
354 sapServer = new SapServer(null, mContext, new PipedInputStream(outStream, 8092), in SapSequencer()