/packages/services/Car/car-lib/src/android/car/ |
CarProjectionManager.java | 116 * @param serviceIntent 119 public void registerProjectionRunner(Intent serviceIntent) throws CarNotConnectedException { 120 if (serviceIntent == null) { 121 throw new IllegalArgumentException("null serviceIntent"); 125 mService.registerProjectionRunner(serviceIntent); 135 * @param serviceIntent 138 public void unregisterProjectionRunner(Intent serviceIntent) throws CarNotConnectedException { 139 if (serviceIntent == null) { 140 throw new IllegalArgumentException("null serviceIntent"); 144 mService.unregisterProjectionRunner(serviceIntent); [all...] |
ICarProjection.aidl | 33 void registerProjectionRunner(in Intent serviceIntent) = 0; 39 void unregisterProjectionRunner(in Intent serviceIntent) = 1;
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/sms/ |
OmtpProvisioningService.java | 44 Intent serviceIntent = new Intent(context, OmtpProvisioningService.class); 46 serviceIntent.putExtra(VoicemailContract.EXTRA_VOICEMAIL_SMS_SUBID, 48 serviceIntent.putExtra(VoicemailContract.EXTRA_VOICEMAIL_SMS_FIELDS, 51 return serviceIntent;
|
/packages/apps/Dialer/src/com/android/dialer/contact/ |
ContactUpdateService.java | 39 Intent serviceIntent = new Intent(context, ContactUpdateService.class); 40 serviceIntent.putExtra(EXTRA_PHONE_NUMBER_DATA_ID, dataId); 41 return serviceIntent;
|
/packages/apps/Contacts/src/com/android/contacts/ |
ContactSaveService.java | 285 Intent serviceIntent = new Intent( 287 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT); 289 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name); 290 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type); 291 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet); 293 serviceIntent.putParcelableArrayListExtra( 301 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent); 302 return serviceIntent; 376 Intent serviceIntent = new Intent( 378 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT) [all...] |
/packages/services/Car/service/src/com/android/car/ |
CarProjectionService.java | 92 public void registerProjectionRunner(Intent serviceIntent) { 95 if (serviceIntent.filterEquals(mRegisteredService)) { 99 Log.w(CarLog.TAG_PROJECTION, "Registering new service[" + serviceIntent 104 bindToService(serviceIntent); 108 public void unregisterProjectionRunner(Intent serviceIntent) { 110 if (!serviceIntent.filterEquals(mRegisteredService)) { 112 + serviceIntent + "]. Registered service[" + mRegisteredService + "]"); 120 private void bindToService(Intent serviceIntent) { 122 mRegisteredService = serviceIntent; 125 mContext.startServiceAsUser(serviceIntent, userHandle) [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/location/ |
UpdateCountryService.java | 33 final Intent serviceIntent = new Intent(context, UpdateCountryService.class); 34 serviceIntent.setAction(ACTION_UPDATE_COUNTRY); 35 serviceIntent.putExtra(UpdateCountryService.KEY_INTENT_LOCATION, location); 36 context.startService(serviceIntent);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallLogNotificationsService.java | 166 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class); 167 serviceIntent.setAction( 171 serviceIntent.putExtra( 174 context.startService(serviceIntent); 187 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class); 188 serviceIntent.setAction( 190 serviceIntent.putExtra(EXTRA_MISSED_CALL_COUNT, count); 191 serviceIntent.putExtra(EXTRA_MISSED_CALL_NUMBER, number); 192 context.startService(serviceIntent);
|
VoicemailQueryHandler.java | 61 Intent serviceIntent = new Intent(mContext, CallLogNotificationsService.class); 62 serviceIntent.setAction( 64 mContext.startService(serviceIntent);
|
/developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/ |
MainActivity.java | 62 Intent serviceIntent = new Intent(this, ResponderService.class); 63 serviceIntent.setAction(action); 64 startService(serviceIntent);
|
/developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/ |
MainActivity.java | 62 Intent serviceIntent = new Intent(this, ResponderService.class); 63 serviceIntent.setAction(action); 64 startService(serviceIntent);
|
/development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/ |
MainActivity.java | 62 Intent serviceIntent = new Intent(this, ResponderService.class); 63 serviceIntent.setAction(action); 64 startService(serviceIntent);
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
BugreportReceiver.java | 60 Intent serviceIntent = new Intent(context, BugreportProgressService.class); 61 serviceIntent.putExtra(EXTRA_ORIGINAL_INTENT, intent); 62 context.startService(serviceIntent);
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DirectoryContactUtil.java | 53 Intent serviceIntent = ContactSaveService.createNewRawContactIntent( 56 context.startService(serviceIntent);
|
/frameworks/base/services/print/java/com/android/server/print/ |
RemotePrintServiceRecommendationService.java | 118 Intent serviceIntent = new Intent(); 119 serviceIntent.setComponent(serviceName); 121 return serviceIntent; 139 Intent serviceIntent = getServiceIntent(userHandle); 142 mIsBound = mContext.bindServiceAsUser(serviceIntent, mConnection, 146 throw new Exception("Failed to bind to service " + serviceIntent);
|
/packages/apps/Email/provider_src/com/android/email/service/ |
EmailServiceUtils.java | 92 final Intent serviceIntent = getServiceIntent(info); 93 serviceIntent.putExtra(ServiceProxy.EXTRA_FORCE_SHUTDOWN, true); 94 context.startService(serviceIntent); 104 final Intent serviceIntent = getServiceIntent(info); 105 context.startService(serviceIntent); 115 final Intent serviceIntent = getServiceIntent(info); 116 context.startService(serviceIntent); 159 final Intent serviceIntent = getServiceIntent(info); 160 return new EmailServiceProxy(context, serviceIntent).test(); 164 final Intent serviceIntent = new Intent(info.intentAction) [all...] |
/developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/ |
DeviceDetailFragment.java | 130 Intent serviceIntent = new Intent(getActivity(), FileTransferService.class); 131 serviceIntent.setAction(FileTransferService.ACTION_SEND_FILE); 132 serviceIntent.putExtra(FileTransferService.EXTRAS_FILE_PATH, uri.toString()); 133 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_ADDRESS, 135 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_PORT, 8988); 136 getActivity().startService(serviceIntent);
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
DeviceDetailFragment.java | 129 Intent serviceIntent = new Intent(getActivity(), FileTransferService.class); 130 serviceIntent.setAction(FileTransferService.ACTION_SEND_FILE); 131 serviceIntent.putExtra(FileTransferService.EXTRAS_FILE_PATH, uri.toString()); 132 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_ADDRESS, 134 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_PORT, 8988); 135 getActivity().startService(serviceIntent);
|
/frameworks/base/packages/Osu/src/com/android/ |
MainActivity.java | 84 Intent serviceIntent = new Intent(this, OSUService.class); 85 serviceIntent.putExtra(ACTION_KEY, "dummy-key"); 86 startService(serviceIntent); 196 Intent serviceIntent; 197 serviceIntent = new Intent(c, OSUService.class); 198 serviceIntent.putExtra(ACTION_KEY, intent.getAction()); 199 serviceIntent.putExtras(intent); 200 c.startService(serviceIntent);
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/ |
IntentFilterVerificationReceiver.java | 82 Intent serviceIntent = new Intent(context, DirectStatementService.class); 83 serviceIntent.setAction(DirectStatementService.CHECK_ALL_ACTION); 138 serviceIntent.putExtras(extras); 139 context.startService(serviceIntent);
|
/frameworks/base/tests/OneMedia/src/com/android/onemedia/ |
PlayerController.java | 58 public PlayerController(Activity context, Intent serviceIntent) { 60 if (serviceIntent == null) { 63 mServiceIntent = serviceIntent;
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
ComponentContextFixture.java | 124 Intent serviceIntent, 129 return bindService(serviceIntent, connection, flags); 134 Intent serviceIntent, 140 IInterface service = mServiceByComponentName.get(serviceIntent.getComponent()); 143 + serviceIntent.getComponent()); 146 connection.onServiceConnected(serviceIntent.getComponent(), service.asBinder());
|
/frameworks/base/core/java/android/net/ |
NetworkScorerAppManager.java | 158 Intent serviceIntent = new Intent(NetworkScoreManager.ACTION_SCORE_NETWORKS); 159 serviceIntent.setPackage(receiverInfo.packageName); 160 ResolveInfo resolveServiceInfo = pm.resolveService(serviceIntent, 0 /* flags */);
|
/frameworks/base/docs/html/training/testing/integration-testing/ |
service-testing.jd | 109 Intent serviceIntent = 114 serviceIntent.putExtra(LocalService.SEED_KEY, 42L); 117 IBinder binder = mServiceRule.bindService(serviceIntent);
|
/frameworks/support/customtabs/src/android/support/customtabs/ |
CustomTabsClient.java | 107 Intent serviceIntent = new Intent(CustomTabsService.ACTION_CUSTOM_TABS_CONNECTION); 109 serviceIntent.setPackage(packageName); 110 if (pm.resolveService(serviceIntent, 0) != null) return packageName;
|