/packages/apps/Contacts/src/com/android/contacts/ |
ViewNotificationService.java | 19 import android.app.Service; 31 * Service that sends out a view notification for a contact. At the moment, this is only 34 public class ViewNotificationService extends Service { 57 // startId will stop this service. In practice, this shouldn't be a problem, 58 // as this service is supposed to be called by the Phone app which only sends 63 Log.e(TAG, "Error stopping service", e);
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ServiceStore.java | 24 import com.android.email.service.EmailServiceUtils; 28 import com.android.emailcommon.service.EmailServiceProxy; 29 import com.android.emailcommon.service.IEmailService; 32 * Base class for service-based stores 76 * We handle AutoDiscover here, wrapping the EmailService call. The service call returns a 77 * HostAuth and we return null if there was a service issue
|
/packages/apps/Settings/src/com/android/settings/nfc/ |
PaymentBackend.java | 62 for (ApduServiceInfo service : serviceInfos) { 64 appInfo.banner = service.loadBanner(pm); 65 appInfo.caption = service.getDescription(); 67 appInfo.caption = service.loadLabel(pm); 69 appInfo.isDefault = service.getComponent().equals(defaultApp); 70 appInfo.componentName = service.getComponent();
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
GattService.java | 19 import android.app.Service; 46 * Provides Bluetooth Gatt profile, as a service in 70 * Byte size of 16 bit service uuid. 74 * Byte size of 128 bit service uuid. 111 * Pending service declaration queue 212 return Service.START_NOT_STICKY; 254 * Handlers for incoming service calls 270 Log.e(TAG, "getService() - Service requested, but not available!"); 275 GattService service = getService(); local 276 if (service == null) return new ArrayList<BluetoothDevice>() 281 GattService service = getService(); local 287 GattService service = getService(); local 293 GattService service = getService(); local 299 GattService service = getService(); local 309 GattService service = getService(); local 315 GattService service = getService(); local 321 GattService service = getService(); local 327 GattService service = getService(); local 333 GattService service = getService(); local 342 GattService service = getService(); local 353 GattService service = getService(); local 366 GattService service = getService(); local 380 GattService service = getService(); local 390 GattService service = getService(); local 396 GattService service = getService(); local 405 GattService service = getService(); local 413 GattService service = getService(); local 419 GattService service = getService(); local 425 GattService service = getService(); local 431 GattService service = getService(); local 437 GattService service = getService(); local 445 GattService service = getService(); local 453 GattService service = getService(); local 461 GattService service = getService(); local 469 GattService service = getService(); local 475 GattService service = getService(); local 482 GattService service = getService(); local 489 GattService service = getService(); local 496 GattService service = getService(); local 505 GattService service = getService(); local 513 GattService service = getService(); local 520 GattService service = getService(); local 527 GattService service = getService(); local 534 GattService service = getService(); local 541 GattService service = getService(); local 549 GattService service = getService(); local 556 GattService service = getService(); local 563 GattService service = getService(); local 570 GattService service = getService(); local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/pan/ |
PanService.java | 19 import android.app.Service; 57 * Provides Bluetooth Pan Device profile, as a service in 213 * Handlers for incoming service calls 237 PanService service = getService(); local 238 if (service == null) return false; 239 return service.connect(device); 242 PanService service = getService(); local 243 if (service == null) return false; 244 return service.disconnect(device); 247 PanService service = getService() local 252 PanService service = getService(); local 258 PanService service = getService(); local 263 PanService service = getService(); local 268 PanService service = getService(); local 275 PanService service = getService(); local 281 PanService service = getService(); local 490 INetworkManagementService service = INetworkManagementService.Stub.asInterface(b); local [all...] |
/frameworks/base/core/java/android/net/nsd/ |
NsdManager.java | 40 * The Network Service Discovery Manager class provides the API to discover services 45 * <p> The API currently supports DNS based service discovery and discovery is currently 46 * limited to a local network over Multicast DNS. DNS service discovery is described at 72 * | add service to list 80 * | remove service from list 85 * | Connect to a service 92 * Establish connection to service 99 * with service type "_http._tcp". A successful registration is notified with a callback to 104 * with a call to {@link #discoverServices}. A service found is notified with a callback 105 * to {@link DiscoveryListener#onServiceFound} and a service lost is notified o [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
search_engines_helper.cc | 25 GUIDToTURLMap CreateGUIDToTURLMap(TemplateURLService* service) { 26 CHECK(service); 29 TemplateURLService::TemplateURLVector turls = service->GetTemplateURLs(); 76 LOG(ERROR) << "Service a and b do not match in size: " << a_turls.size() 137 LOG(ERROR) << "Verifier and other service have a different count of TURLs: " 150 LOG(ERROR) << "The other service did not contain a TURL with keyword: " 171 << "service 0."; 223 TemplateURLService* service = GetServiceForBrowserContext(profile_index); local 224 TemplateURL* turl = service->GetTemplateURLForKeyword(keyword); 227 service->ResetTemplateURL(turl, short_name, new_keyword, url) 239 TemplateURLService* service = GetServiceForBrowserContext(profile_index); local 254 TemplateURLService* service = GetServiceForBrowserContext(profile_index); local [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/ |
Display.java | 30 * A client for the braille display service. 34 /** Service name used for connecting to the service. */ 36 "com.googlecode.eyesfree.braille.service.ACTION_DISPLAY_SERVICE"; 56 * Delay before the first rebind attempt on bind error or service 78 * Constructs an instance and connects to the braille display service. 88 * Constructs an instance and connects to the braille display service. 137 Log.v(LOG_TAG, "Error in displayDots: service not connected"); 142 * Unbinds from the braille display service and deallocates any 158 Log.i(LOG_TAG, "Connected to braille service"); [all...] |
/external/chromium_org/chrome/browser/background/ |
background_mode_manager_mac.mm | 22 PrefService* service = g_browser_process->local_state(); 23 service->SetBoolean(prefs::kUserRemovedLoginItem, true); 28 PrefService* service = g_browser_process->local_state(); 29 service->SetBoolean(prefs::kChromeCreatedLoginItem, true); 109 PrefService* service = g_browser_process->local_state(); 111 if (service->GetBoolean(prefs::kUserRemovedLoginItem)) 114 if (service->GetBoolean(prefs::kChromeCreatedLoginItem)) { 115 DCHECK(service->GetBoolean(prefs::kMigratedLoginItemPref)); 123 bool need_migration = !service->GetBoolean( 125 service->SetBoolean(prefs::kMigratedLoginItemPref, true) [all...] |
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list_controller_delegate.cc | 25 const ExtensionService* service = local 28 service->GetInstalledExtension(extension_id); 108 const ExtensionService* service = local 111 return extension_util::IsAppLaunchableWithoutEnabling(app_id, service) && 133 ExtensionService* service = local 135 return extensions::GetLaunchType(service->extension_prefs(), 143 ExtensionService* service = local 146 service->extension_prefs(), extension_id, launch_type); 163 ExtensionService* service = local 165 DCHECK(service); [all...] |
/frameworks/base/core/java/android/printservice/ |
PrintService.java | 20 import android.app.Service; 39 * This is the base class for implementing print services. A print service knows 44 * A print service is responsible for discovering printers, adding discovered printers, 46 * in printers managed by your service it will call {@link 49 * between the system and your service during printer discovery. For description of this 54 * not retain printers across sessions. Hence, each printer known to this print service 60 * When a new print job targeted to a printer managed by this print service is is queued, 61 * i.e. ready for processing by the print service, you will receive a call to {@link 62 * #onPrintJobQueued(PrintJob)}. The print service may handle the print job immediately 64 * jobs for this service is obtained by calling {@link #getActivePrintJobs()}. Activ [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_sock_sdp.c | 74 /* register the service */ 107 /* Make the service browseable */ 146 APPL_TRACE_DEBUG2("add_pbap_sdd:scn %d, service name %s", scn, p_service_name); 150 APPL_TRACE_ERROR0("PBS SDP: Unable to register PBS Service"); 154 /* add service class */ 185 } /* end of setting mandatory service class */ 193 /* Make the service browseable */ 244 UINT16 service = UUID_SERVCLASS_MESSAGE_ACCESS; local 251 APPL_TRACE_DEBUG2("add_maps_sdd:scn %d, service name %s", scn, p_service_name); 255 APPL_TRACE_ERROR0("MAPS SDP: Unable to register MAPS Service"); [all...] |
/external/openssh/ |
auth2.c | 185 char *service = packet_get_cstring(&len); local 191 if (strcmp(service, "ssh-userauth") == 0) { 198 /* XXX all other service requests are denied */ 202 packet_put_cstring(service); 206 debug("bad service request %s", service); 207 packet_disconnect("bad service request %s", service); 209 xfree(service); 218 char *user, *service, *method, *style = NULL local [all...] |
/frameworks/base/docs/html/training/id-auth/ |
custom_auth.jd | 18 <li><a href="#TaskFour">Create an Authenticator Service</a></li> 19 <li><a href="#DistributeService">Distribute Your Service</a></li> 32 defined by Google. If you have your own online service, though, it won't have 76 service 137 <h2 id="TaskFour">Create an Authenticator Service</h2> 141 the background, so naturally they're required to run inside a {@link android.app.Service}. We'll 142 call this the authenticator service.</p> 144 <p>Your authenticator service can be very simple. All it needs to do is create 145 an instance of your authenticator class in {@link android.app.Service#onCreate onCreate()} and call 147 android.app.Service#onBind onBind()}. The < [all...] |
/frameworks/base/services/java/com/android/server/accessibility/ |
AccessibilityManagerService.java | 108 * This class is instantiated by the system as a system level service and can be 109 * accessed only by the system. The task of this service is to be a centralized 173 private Service mQueryBridge; 242 // We will update when the automation service dies. 281 // We will update when the automation service dies. 313 // We will update when the automation service dies. 343 // We will update when the automation service dies. 412 // The automation service is a fake one and should not be reported 433 // The automation service is a fake one and should not be reported 434 // to clients as being enabled. The automation service is always th 449 Service service = services.get(i); local 471 Service service = services.get(i); local 697 Service service = getQueryBridge(); local 846 Service service = state.mBoundServices.get(i); local 864 Service service = state.mBoundServices.get(i); local 883 Service service = state.mBoundServices.get(i); local 992 Service service = state.mBoundServices.get(i); local 1079 Service service = services.get(i); local 1145 Service service = componentNameToServiceMap.get(componentName); local 1329 Service service = userState.mBoundServices.get(i); local 1410 Service service = userState.mBoundServices.get(i); local 1468 Service service = userState.mBoundServices.get(i); local 1523 Service service = userState.mBoundServices.get(j); local 1621 Service service = (Service) msg.obj; local [all...] |
/cts/tests/src/android/content/cts/ |
MockSyncAdapterService.java | 19 import android.app.Service; 23 public class MockSyncAdapterService extends Service {
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
MyRssReader.java | 58 // "start service" or "stop service", depending on whether the service is currently running. 65 menu.add(0, 0, "Start RSS Service", null); 66 menu.add(0, 1, "Stop RSS Service", null); 74 // Toggle out start service/stop service depending on whether the service is running.
|
/development/samples/SoftKeyboard/ |
AndroidManifest.xml | 4 <service android:name="SoftKeyboard" 10 </service>
|
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
_index.html | 15 <dt><a href="SampleMediaRouteProviderService.html">Media Route Provider Service</a></dt> 17 running applications by registering it as a service.</dd>
|
/external/chromium/chrome/browser/chromeos/ |
external_metrics.h | 18 // ExternalMetrics is a service that Chrome offers to Chrome OS to upload 31 // Begins the external data collection. This service is started and stopped 32 // by the chrome metrics service. Calls to RecordAction originate in the 47 // Passes an action event to the UMA service on the UI thread. 50 // Passes an action event to the UMA service. 54 // UMA service on the UI thread. 60 // Passes an histogram event to the UMA service. |histogram_data| is in the 64 // Passes a linear histogram event to the UMA service. |histogram_data| is
|
/external/chromium/chrome/browser/notifications/ |
desktop_notification_service_factory.cc | 36 DesktopNotificationService* service = new DesktopNotificationService(profile, local 39 return service;
|
/external/chromium/chrome/browser/prefs/ |
scoped_user_pref_update.cc | 13 ScopedUserPrefUpdateBase::ScopedUserPrefUpdateBase(PrefService* service, 15 : service_(service),
|
/external/chromium/chrome/browser/remoting/ |
remoting_options_handler.h | 9 #include "chrome/browser/service/service_process_control.h" 17 // messages from the service process (by registering MessageHandler
|
/external/chromium_org/android_webview/native/ |
aw_form_database.cc | 22 AwFormDatabaseService* service = context->GetFormDatabaseService(); local 23 return service;
|
/external/chromium_org/base/prefs/ |
scoped_user_pref_update.cc | 13 ScopedUserPrefUpdateBase::ScopedUserPrefUpdateBase(PrefService* service, 15 : service_(service),
|