/packages/experimental/TestBack/ |
AndroidManifest.xml | 16 <service 25 </service>
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarProviderBroadcastReceiver.java | 34 // Acquire a wake lock that will be released when the launched Service is doing its work 38 // Launch the Service
|
/packages/wallpapers/Galaxy4/src/com/android/galaxy4/ |
GalaxyView.java | 10 import android.app.Service; 34 .getSystemService(Service.WINDOW_SERVICE))
|
/sdk/apps/SdkController/ |
AndroidManifest.xml | 39 <service 40 android:name=".service.ControllerService"
|
Implementation.txt | 13 - A background service is started by the app. It handles the connection 18 - All the handlers are started when the service starts and shutdown with it. 38 - in onResume this will bind to the service, creating and starting it if necessary. 39 - in onPause, this will unbind from the service, but does not stop it. 42 must not attempt to use the service from onResume. Instead there are 2 callbacks to use: 46 When the activity is connected to the service, it can then use getServiceBinder() 47 to get an interface to talk to the service. 49 In the other direction, the activity provides a listener for the service to notify
|
/system/core/adb/ |
sockets.c | 627 char *skip_host_serial(char *service) { 632 if (!strncmp(service, prefixes[i].str, prefixes[i].len)) 633 return strchr(service + prefixes[i].len, ':'); 636 first_colon = strchr(service, ':'); 638 /* No colon in service string. */ 659 char *service = NULL; local 705 service = (char *)p->data + 4; 706 if(!strncmp(service, "host-serial:", strlen("host-serial:"))) { 708 service += strlen("host-serial:"); 711 serial_end = skip_host_serial(service); [all...] |
/external/bluetooth/bluedroid/stack/include/ |
sdpdefs.h | 28 /* Define the service attribute IDs. 183 /* Define common 16-bit service class UUIDs 254 #define UUID_SERVCLASS_MESSAGE_ACCESS 0X1132 /* Message Access Service UUID */ 255 #define UUID_SERVCLASS_MESSAGE_NOTIFICATION 0X1133 /* Message Notification Service UUID */ 266 #define UUID_SERVCLASS_DEVICE_INFO 0x180A /* device info service */ 268 #define UUID_SERVCLASS_HEART_RATE 0x180D /* Heart Rate service */ 269 #define UUID_SERVCLASS_PHALERT 0x180E /* phone alert service */ 270 #define UUID_SERVCLASS_BATTERY 0x180F /* battery service */ 271 #define UUID_SERVCLASS_BPM 0x1810 /* blood pressure service */ 272 #define UUID_SERVCLASS_ALERT_NOTIFICATION 0x1811 /* alert notification service */ [all...] |
/frameworks/base/docs/html/training/scheduling/ |
wakelock.jd | 43 in your activity (and only in an activity, never in a service or 111 to sleep, you can use a {@link android.os.PowerManager} system service feature called 122 <p>One legitimate case for using a wake lock might be a background service 131 <p>If your app includes a broadcast receiver that uses a service to do some 151 <p>Using a broadcast receiver in conjunction with a service lets you manage the life cycle 159 passes off the work to a {@link android.app.Service} 163 the work to a service, you are effectively allowing the device to go back to sleep before 177 wake lock when the service starts. The intent that is passed with 186 // Start the service, keeping the device awake while the service i [all...] |
/development/apps/BuildWidget/src/com/android/buildwidget/ |
BuildWidget.java | 20 import android.app.Service; 39 * an update we spawn a background {@link Service} to perform the API queries. 45 // To prevent any ANR timeouts, we perform the update in a service 49 public static class UpdateService extends Service { 83 // We don't need to bind to this service
|
/external/bluetooth/bluedroid/stack/gatt/ |
gatt_int.h | 160 tBT_UUID uuid; /* service declaration */ 162 tGATT_INCL_SRVC incl_handle; /* included service */ 198 /* Service Database definition 205 BUFFER_Q svc_buffer; /* buffer queue used for service database */ 213 /* A service registration information record consists of beginning and ending */ 214 /* attribute handle, service UUID and a set of GATT server callback. */ 217 tGATT_SVC_DB *p_db; /* pointer to the service database */ 219 UINT32 sdp_handle; /* primamry service SDP handle */ 220 UINT16 service_instance; /* service instance number */ 221 UINT16 type; /* service type UUID, primary or secondary * [all...] |
/external/chromium/chrome/browser/ |
background_mode_manager_mac.mm | 61 PrefService* service = g_browser_process->local_state(); 62 service->SetBoolean(prefs::kUserCreatedLoginItem, true); 76 PrefService* service = g_browser_process->local_state(); 77 if (service->GetBoolean(prefs::kUserCreatedLoginItem)) { 79 service->ClearPref(prefs::kUserCreatedLoginItem);
|
/external/chromium/chrome/browser/extensions/ |
extension_tab_helper.cc | 83 ExtensionService* service = tab_contents()->profile()->GetExtensionService(); 84 if (!service) 87 for (size_t i = 0; i < service->extensions()->size(); ++i) { 89 service->extensions()->at(i)->browser_action(); 100 service->extensions()->at(i)->page_action();
|
/external/chromium/chrome/browser/policy/ |
cloud_policy_controller.h | 38 CloudPolicyController(DeviceManagementService* service, 80 // The service returned an error when requesting policy, will retry. 82 // The service returned an error that is not going to go away soon. 89 CloudPolicyController(DeviceManagementService* service, 100 void Initialize(DeviceManagementService* service,
|
/external/chromium_org/chrome/browser/automation/ |
automation_provider_json.cc | 129 ExtensionService* service = extensions::ExtensionSystem::Get(profile)-> local 131 if (!service) { 132 *error = "No extensions service."; 135 if (!service->GetInstalledExtension(id)) { 143 service->GetExtensionById(id, include_disabled);
|
/external/chromium_org/chrome/browser/chromeos/system_logs/ |
chrome_internal_log_source.cc | 53 ProfileSyncService* service = 56 sync_ui_util::ConstructAboutInformation(service)); 97 ExtensionService* service = 99 if (!service) 103 const ExtensionSet* extensions = service->extensions();
|
/external/chromium_org/chrome/browser/extensions/ |
app_icon_loader_impl.cc | 22 ExtensionService* service = local 24 if (!service) 26 return service->GetInstalledExtension(id); 108 const ExtensionService* service = local 110 const bool can_launch = extension_util::IsAppLaunchable(id, service);
|
extension_view_host_factory.cc | 52 ExtensionService* service = local 54 return extension_util::IsIncognitoEnabled(extension->id(), service); 88 ExtensionService* service = local 90 if (!service) 96 return service->extensions()->GetByID(extension_id);
|
extension_warning_badge_service.cc | 65 // Suppress all current warnings in the extension service from triggering 132 GlobalErrorService* service = local 134 GlobalError* error = service->GetGlobalErrorByMenuItemCommandID( 139 service->RemoveGlobalError(error); 142 service->AddGlobalError(new ErrorBadge(this));
|
/external/chromium_org/chrome/browser/search_engines/ |
util.cc | 58 WebDataService* service, 63 DCHECK(service == NULL || BrowserThread::CurrentlyOn(BrowserThread::UI)); 89 // Delete the others from the service and from memory. 123 if (service) { 124 service->RemoveKeyword(i->second->id()); 188 WebDataService* service, 194 DCHECK(service == NULL || BrowserThread::CurrentlyOn(BrowserThread::UI)); 213 if (service) { 214 service->RemoveKeyword(template_url->id()); 225 if (service) [all...] |
/external/chromium_org/chrome/browser/signin/ |
signin_account_id_helper.cc | 60 ProfileOAuth2TokenService* service = local 64 login_token_request_ = service->StartRequest( 65 service->GetPrimaryAccountId(), scopes, this); 133 ProfileOAuth2TokenService* service = local 135 if (email == service->GetPrimaryAccountId()) {
|
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list_controller_delegate_impl.cc | 21 AppListService* service) 22 : service_(service) {} 64 ExtensionService* service = local 66 DCHECK(service); 67 const extensions::Extension* extension = service->GetInstalledExtension(
|
recommended_apps.cc | 43 ExtensionService* service = local 45 extensions::ExtensionPrefs* prefs = service->extension_prefs(); 68 ExtensionService* service = local 70 extensions::ExtensionPrefs* prefs = service->extension_prefs(); 73 const ExtensionSet* extensions = service->extensions();
|
/external/chromium_org/chrome/service/ |
service_ipc_server.cc | 5 #include "chrome/service/service_ipc_server.h" 9 #include "chrome/service/cloud_print/cloud_print_proxy.h" 10 #include "chrome/service/service_process.h" 59 // TODO(sanjeevr): Instead of invoking the service process for such handlers, 73 LOG(ERROR) << "Unable to open service ipc channel "
|
/external/chromium_org/gpu/command_buffer/service/ |
mocks.h | 17 #include "gpu/command_buffer/service/cmd_parser.h" 18 #include "gpu/command_buffer/service/cmd_buffer_engine.h" 19 #include "gpu/command_buffer/service/memory_tracking.h" 20 #include "gpu/command_buffer/service/program_cache.h" 21 #include "gpu/command_buffer/service/shader_translator.h"
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
ftserv.h | 20 /* Each module can export one or more `services'. Each service is */ 24 /* Note that a service's data cannot be a mere function pointer because */ 50 * This macro is used to look up a service from a face's driver module. 57 * A string describing the service as defined in the service's 64 * A variable that receives the service pointer. Will be NULL 101 * This macro is used to look up a service from all modules. 108 * A string describing the service as defined in the service's 115 * A variable that receives the service pointer. Will be NUL [all...] |