Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapRilReceiver.java54 mSapServerMsgHandler.obtainMessage(SapServer.SAP_PROXY_DEAD, cookie), in serviceDied()
55 SapServer.ISAP_GET_SERVICE_DELAY_MILLIS); in serviceDied()
233 SapServer.SAP_PROXY_DEAD, mSapProxyCookie.get()), in getSapProxy()
234 SapServer.ISAP_GET_SERVICE_DELAY_MILLIS); in getSapProxy()
324 mSapServerMsgHandler.sendEmptyMessage(SapServer.SAP_MSG_RIL_CONNECT); in sendRilConnectMessage()
333 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RFC_REPLY, sapMsg); in sendClientMessage()
342 mSapServerMsgHandler.sendEmptyMessage(SapServer.SAP_RIL_SOCK_CLOSED); in sendShutdownMessage()
351 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RIL_IND, sapMsg); in sendRilIndMessage()
DSapServer.java46 public class SapServer extends Thread implements Callback { class
105 public SapServer(Handler serviceHandler, Context context, InputStream inStream, in SapServer() method in SapServer
144 int disconnectType = intent.getIntExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA,
228 Intent sapDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in setNotification()
241 sapDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, type); in setNotification()
257 sapDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, in setNotification()
259 Intent sapForceDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in setNotification()
260 sapForceDisconnectIntent.putExtra(SapServer.SAP_DISCONNECT_TYPE_EXTRA, in setNotification()
296 notificationManager.cancel(SapServer.NOTIFICATION_ID); in clearNotification()
684 Intent sapDisconnectIntent = new Intent(SapServer.SAP_DISCONNECT_ACTION); in startDisconnectTimer()
DSapService.java87 private SapServer mSapServer = null;
253 …mSapServer = new SapServer(mSessionStatusHandler, this, mConnSocket.getInputStream(), mConnSocket.… in startSapServerSession()