Home
last modified time | relevance | path

Searched refs:SapService (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapService.java41 public class SapService extends ProfileService { class
95 private static SapService sSapService;
102 public SapService() { in SapService() method in SapService
351 synchronized (SapService.this) { in run()
541 synchronized (SapService.this) { in disconnect()
707 public static synchronized SapService getSapService() { in getSapService()
719 private static synchronized void setSapService(SapService instance) { in setSapService()
912 private SapService mService;
914 private SapService getService() { in getService()
928 SapBinder(SapService service) { in SapBinder()
[all …]
DSapRilReceiver.java73 SapService.notifyUpdateWakeLock(mSapServiceHandler); in connectResponse()
86 SapService.notifyUpdateWakeLock(mSapServiceHandler); in disconnectResponse()
96 SapService.notifyUpdateWakeLock(mSapServiceHandler); in disconnectIndication()
105 SapService.notifyUpdateWakeLock(mSapServiceHandler); in apduResponse()
117 SapService.notifyUpdateWakeLock(mSapServiceHandler); in transferAtrResponse()
129 SapService.notifyUpdateWakeLock(mSapServiceHandler); in powerResponse()
150 SapService.notifyUpdateWakeLock(mSapServiceHandler); in resetSimResponse()
159 SapService.notifyUpdateWakeLock(mSapServiceHandler); in statusIndication()
171 SapService.notifyUpdateWakeLock(mSapServiceHandler); in transferCardReaderStatusResponse()
183 SapService.notifyUpdateWakeLock(mSapServiceHandler); in errorResponse()
[all …]
DSapServer.java51 public static final boolean DEBUG = SapService.DEBUG;
52 public static final boolean VERBOSE = SapService.VERBOSE;
358 SapService.notifyUpdateWakeLock(mSapServiceHandler); in run()
533 msg.what = SapService.MSG_SERVERSESSION_CLOSE; in run()
879 msg.what = SapService.MSG_CHANGE_STATE; in handleRfcommReply()
DSapMessage.java41 public static final boolean DEBUG = SapService.DEBUG;
42 public static final boolean VERBOSE = SapService.VERBOSE;
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/sap/
DSapServiceTest.java43 private SapService mService = null;
58 TestUtils.startService(mServiceRule, SapService.class); in setUp()
59 mService = SapService.getSapService(); in setUp()
71 TestUtils.stopService(mServiceRule, SapService.class); in tearDown()
72 mService = SapService.getSapService(); in tearDown()
79 Assert.assertNotNull(SapService.getSapService()); in testInitialize()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DConfig.java45 import com.android.bluetooth.sap.SapService;
89 new ProfileConfig(SapService.class, R.bool.profile_supported_sap,
DAdapterService.java99 import com.android.bluetooth.sap.SapService;
242 private SapService mSapService;
1038 mSapService = SapService.getSapService(); in initProfileServices()