Home
last modified time | relevance | path

Searched refs:serviceName (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/snep/
DSnepClient.java53 public SnepClient(String serviceName) { in SnepClient() argument
54 mServiceName = serviceName; in SnepClient()
60 SnepClient(String serviceName, int fragmentLength) { in SnepClient() argument
61 mServiceName = serviceName; in SnepClient()
67 SnepClient(String serviceName, int acceptableLength, int fragmentLength) { in SnepClient() argument
68 mServiceName = serviceName; in SnepClient()
DSnepServer.java64 public SnepServer(String serviceName, int serviceSap, Callback callback) { in SnepServer() argument
66 mServiceName = serviceName; in SnepServer()
71 SnepServer(String serviceName, int serviceSap, int fragmentLength, Callback callback) { in SnepServer() argument
73 mServiceName = serviceName; in SnepServer()
/packages/apps/Nfc/src/com/android/nfc/nxp/
DNativeLlcpSocket.java45 public void connectToService(String serviceName) throws IOException { in connectToService() argument
46 if (!doConnectBy(serviceName)) { in connectToService()
/packages/experimental/AndroidVendorSecurityTool/src/com/google/android/googlelogin/
DGoogleAppsVerifier.java65 public static boolean isServiceAvailable(Context context, String serviceName) { in isServiceAvailable() argument
79 if (!TextUtils.isEmpty(name) && name.equals(serviceName)) { in isServiceAvailable()
/packages/apps/Nfc/jni/
Dcom_android_nfc_NativeLlcpSocket.cpp170 phNfc_sData_t serviceName; in com_android_nfc_NativeLlcpSocket_doConnectBy() local
187 serviceName.buffer = (uint8_t*)e->GetStringUTFChars(sn, NULL); in com_android_nfc_NativeLlcpSocket_doConnectBy()
188 serviceName.length = (uint32_t)e->GetStringUTFLength(sn); in com_android_nfc_NativeLlcpSocket_doConnectBy()
194 &serviceName, in com_android_nfc_NativeLlcpSocket_doConnectBy()
Dcom_android_nfc_NativeNfcManager.cpp2275 phNfc_sData_t serviceName; in com_android_nfc_NfcManager_doCreateLlcpServiceSocket() local
2329 serviceName.buffer = NULL; in com_android_nfc_NfcManager_doCreateLlcpServiceSocket()
2330 serviceName.length = 0; in com_android_nfc_NfcManager_doCreateLlcpServiceSocket()
2332 serviceName.buffer = (uint8_t*)e->GetStringUTFChars(sn, NULL); in com_android_nfc_NfcManager_doCreateLlcpServiceSocket()
2333 serviceName.length = (uint32_t)e->GetStringUTFLength(sn); in com_android_nfc_NfcManager_doCreateLlcpServiceSocket()
2339 &serviceName, in com_android_nfc_NfcManager_doCreateLlcpServiceSocket()
/packages/apps/Music/src/com/android/music/
DMediaAppWidgetProvider.java177 final ComponentName serviceName = new ComponentName(context, MediaPlaybackService.class); in linkButtons() local
192 intent.setComponent(serviceName); in linkButtons()
198 intent.setComponent(serviceName); in linkButtons()
/packages/apps/Nfc/tests/src/com/android/nfc/
DMockLlcpSocket.java77 public void connectToService(String serviceName) throws IOException { in connectToService() argument
/packages/apps/Nfc/src/com/android/nfc/
DDeviceHost.java126 public void connectToService(String serviceName) throws IOException; in connectToService() argument
/packages/apps/Contacts/src/com/android/contacts/
DContactLoader.java1222 final String serviceName = accountType.getViewContactNotifyServiceClassName(); in postViewNotificationToSyncAdapter() local
1224 if (!TextUtils.isEmpty(serviceName) && !TextUtils.isEmpty(resPackageName)) { in postViewNotificationToSyncAdapter()
1227 intent.setClassName(resPackageName, serviceName); in postViewNotificationToSyncAdapter()