/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
ClientTest.java | 149 Log.v(LOG_TAG, "service disconnected."); 152 public void onServiceConnected(ComponentName name, IBinder service) { 153 mWapPushMan = IWapPushManager.Stub.asInterface(service); 154 Log.v(LOG_TAG, "service connected."); 161 Log.v(LOG_TAG, "onStart bind WAPPushManager service " 165 Log.v(LOG_TAG, "bind service done.");
|
/frameworks/base/services/java/com/android/server/ |
NsdService.java | 58 * Network Service Discovery Service handles remote service discovery operation requests by 313 if (DBG) Slog.d(TAG, "Stop service discovery"); 332 if (DBG) Slog.d(TAG, "Register service"); 352 if (DBG) Slog.d(TAG, "unregister service"); 370 if (DBG) Slog.d(TAG, "Resolve service"); 474 Slog.e(TAG, "Invalid service found " + raw); 557 NsdService service = new NsdService(context); local 558 service.mNativeDaemonConnected.await() [all...] |
/frameworks/base/services/java/com/android/server/am/ |
EventLogTags.logtags | 65 # A service is being created 66 30030 am_create_service (User|1|5),(Service Record|1|5),(Name|3),(UID|1|5),(PID|1|5) 67 # A service is being destroyed 68 30031 am_destroy_service (User|1|5),(Service Record|1|5),(PID|1|5) 73 # A service has crashed too many times, it is being stopped 75 # A service is going to be restarted after its process went away
|
ServiceRecord.java | 49 * A running application service. 60 final ComponentName name; // service component. 63 // original intent used to find service. 65 // all information about the service. 67 // information about service's app. 68 final int userId; // user that this service is running as 71 final String permission;// permission needed to access service 76 final Runnable restarter; // used to schedule retries of starting the service 77 final long createTime; // when this service was created 80 // All active bindings to the service [all...] |
/frameworks/base/services/java/com/android/server/media/ |
RemoteDisplayProviderWatcher.java | 40 * Adds a provider to the media router for each registered service. 153 // If the service does not require this permission then any app could 154 // potentially bind to it and cause the remote display service to 157 Slog.w(TAG, "Ignoring remote display provider service because it did not " 163 // If the service does not have permission to capture video then it 166 Slog.w(TAG, "Ignoring remote display provider service because it does not "
|
/packages/apps/Email/src/com/android/email/service/ |
EmailServiceUtils.java | 17 package com.android.email.service; 24 import android.app.Service; 54 import com.android.emailcommon.service.EmailServiceProxy; 55 import com.android.emailcommon.service.IEmailService; 56 import com.android.emailcommon.service.IEmailServiceCallback; 57 import com.android.emailcommon.service.SearchParams; 58 import com.android.emailcommon.service.ServiceProxy; 59 import com.android.emailcommon.service.SyncWindow; 74 * Ask a service to kill its process. This is used when an account is deleted so that 131 EmailServiceProxy service local [all...] |
/packages/apps/Nfc/tests/src/com/android/nfc/snep/ |
SnepValidationClientTests.java | 43 Log.d(TAG, "Waiting for service to restart..."); 55 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); 80 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); 103 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); 148 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); 166 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "...");
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractDownloadProviderFunctionalTest.java | 90 * Context passed to the provider and the service. Allows most methods to pass through to the 135 public ComponentName startService(Intent service) { 136 if (service.getComponent().getClassName().equals(DownloadService.class.getName())) { 138 return service.getComponent(); 140 throw new UnsupportedOperationException("Unexpected service: " + service);
|
/system/security/keystore-engine/ |
rsa_meth.cpp | 84 sp<IKeystoreService> service = interface_cast<IKeystoreService>(binder); local 86 if (service == NULL) { 93 int32_t ret = service->sign(String16(reinterpret_cast<const char*>(key_id)), padded.get(), 128 sp<IKeystoreService> service = interface_cast<IKeystoreService>(binder); local 130 if (service == NULL) { 139 int32_t ret = service->sign(String16(reinterpret_cast<const char*>(key_id)), from,
|
/external/chromium/chrome/browser/extensions/ |
extension_browsertests_misc.cc | 208 ExtensionService* service = browser()->profile()->GetExtensionService(); local 210 size_t size_before = service->extensions()->size(); 217 ASSERT_EQ(size_before + 1, service->extensions()->size()); 218 const Extension* extensionA = service->extensions()->at(size_before); 227 ASSERT_EQ(size_before + 2, service->extensions()->size()); 228 const Extension* extensionB = service->extensions()->at(size_before + 1); 236 ASSERT_EQ(size_before + 2, service->extensions()->size()); 237 extensionA = service->extensions()->at(size_before + 1); 277 ExtensionService* service = browser()->profile()->GetExtensionService(); local 278 const size_t size_before = service->extensions()->size() 300 ExtensionService* service = browser()->profile()->GetExtensionService(); local 399 ExtensionService* service = browser->profile()->GetExtensionService(); local 721 ExtensionService* service = browser()->profile()->GetExtensionService(); local 769 ExtensionService* service = browser()->profile()->GetExtensionService(); local 813 ExtensionService* service = browser()->profile()->GetExtensionService(); local [all...] |
/frameworks/base/core/java/android/app/ |
LoadedApk.java | 581 //Slog.i(TAG, "Service registrations: " + mServices); [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
history_menu_bridge.mm | 78 // Check to see if the history service is ready. Because it loads async, it 101 // The service is not ready for use yet, so become notified when it does. 109 // Note that all requests sent to either the history service or the favicon 110 // service will be automatically cancelled by their respective Consumers, so 138 // A history service is now ready. Check to see if it's the one for the main 160 void HistoryMenuBridge::TabRestoreServiceChanged(TabRestoreService* service) { 161 const TabRestoreService::Entries& entries = service->entries(); 254 TabRestoreService* service) { 255 // Intentionally left blank. We hold a weak reference to the service. 267 HistoryService* HistoryMenuBridge::service() { [all...] |
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_fetcher.cc | 30 "service=%s"; 38 "service=%s&" 45 "service=%s&" 141 const char* service, 161 service); 170 service, 180 const char* const service) { 186 if (!strcmp(service, GaiaConstants::kGaiaService)) 192 service, 255 const char* const service, [all...] |
/system/core/adb/ |
transport_local.c | 216 * independent from the network, we use here 'adb' QEMUD service to transfer data 222 * - Connect with adb QEMUD service. In this phase a handle to 'adb' QEMUD service 226 * sending an 'accept' request to the adb QEMUD service, and waiting on 229 * service is registered as the transport, and a 'start' request is sent to the 230 * adb QEMUD service, indicating that the guest is ready to receive messages. 237 /* 'accept' request to the adb QEMUD service. */ 239 /* 'start' request to the adb QEMUD service. */ 241 /* 'ok' reply from the adb QEMUD service. */ 251 /* adb QEMUD service connection request. * [all...] |
/external/chromium_org/chrome/browser/extensions/api/developer_private/ |
developer_private_api.cc | 294 ExtensionService* service = GetProfile()->GetExtensionService(); local 298 info->enabled = service->IsExtensionEnabled(info->id); 333 extension_util::IsIncognitoEnabled(item.id(),service); 335 info->allow_file_access = extension_util::AllowFileAccess(&item, service); 338 info->terminated = service->terminated_extensions()->Contains(item.id()); 497 ExtensionService* service = GetProfile()->GetExtensionService(); local 500 if (service->profile()->HasOffTheRecordProfile() && 503 service->profile()->GetOffTheRecordProfile())->process_manager(); 534 ExtensionService* service = GetProfile()->GetExtensionService(); local 536 items.InsertAll(*service->extensions()) 588 ExtensionService* service = GetProfile()->GetExtensionService(); local 615 ExtensionService* service = GetProfile()->GetExtensionService(); local 636 ExtensionService* service = GetProfile()->GetExtensionService(); local 644 ExtensionService* service = GetProfile()->GetExtensionService(); local 707 ExtensionService* service = GetProfile()->GetExtensionService(); local 767 ExtensionService* service = GetProfile()->GetExtensionService(); local 791 ExtensionService* service = GetProfile()->GetExtensionService(); local 836 ExtensionService* service = GetProfile()->GetExtensionService(); local 1135 ExtensionService* service = GetProfile()->GetExtensionService(); local [all...] |
/external/chromium_org/chrome/browser/ui/toolbar/ |
recent_tabs_sub_menu_model.cc | 181 TabRestoreService* service = local 183 if (service) { 184 service->LoadTabsFromLastSession(); 189 service->AddObserver(this); 216 TabRestoreService* service = local 218 if (service) 219 service->RemoveObserver(this); 269 TabRestoreService* service = local 281 if (service && delegate) { 284 service->RestoreEntryById(delegate, item.tab_id 376 TabRestoreService* service = local 667 ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()-> local [all...] |
/external/chromium_org/webkit/browser/appcache/ |
view_appcache_internals_job.cc | 107 AppCacheService* service, 117 if (!service->appcache_policy()->CanLoadAppCache( 150 AppCacheService* service, 156 EmitAppCacheInfo(base_url, service, &(*info), out); 317 AppCacheService* service) 319 appcache_service_(service), 320 appcache_storage_(service->storage()) { 344 AppCacheService* service) 345 : BaseInternalsJob(request, network_delegate, service), 409 AppCacheService* service) [all...] |
/system/core/init/ |
init.c | 154 void service_start(struct service *svc, const char *dynamic_args) 163 /* starting a service removes it from the disabled or reset 181 ERROR("service '%s' requires console\n", svc->name); 193 ERROR("service '%s' must be one-shot to use dynamic args, disabling\n", 209 INFO("computing context for service '%s'\n", svc->args[0]); 363 static void service_stop_or_reset(struct service *svc, int how) 365 /* The service is still SVC_RUNNING until its process exits, but if it has 373 /* if the service has not yet started, prevent 383 NOTICE("service '%s' is being killed\n", svc->name); 391 void service_reset(struct service *svc [all...] |
/system/core/rootdir/ |
init.rc | 419 service ueventd /sbin/ueventd 424 service healthd /sbin/healthd 429 service healthd-charger /sbin/healthd -n 438 service console /system/bin/sh 449 service adbd /sbin/adbd 459 service servicemanager /system/bin/servicemanager 470 service vold /system/bin/vold 475 service netd /system/bin/netd 481 service debuggerd /system/bin/debuggerd 484 service ril-daemon /system/bin/ril [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
README-P2P | 210 Service Discovery 214 Schedule a P2P service discovery request. The parameters for this 217 supports service discovery) and P2P Service Query TLV(s) as hexdump. For 222 schedules a request for listing all available services of all service 236 Service Query TLV has following format: 238 Service Protocol Type (1 octet) - see the table below 239 Service Transaction ID (1 octet) - nonzero identifier for the TLV 240 Query Data (Length - 2 octets of data) - service protocol specific data 242 Service Protocol Types [all...] |
/frameworks/base/docs/html/guide/components/ |
processes-and-threads.jd | 55 <activity>}</a>, <a href="{@docRoot}guide/topics/manifest/service-element.html">{@code 56 <service>}</a>, <a href="{@docRoot}guide/topics/manifest/receiver-element.html">{@code 105 <li>It hosts a {@link android.app.Service} that's bound to the activity that the user is 108 <li>It hosts a {@link android.app.Service} that's running "in the foreground"—the 109 service has called {@link android.app.Service#startForeground startForeground()}. 111 <li>It hosts a {@link android.app.Service} that's executing one of its lifecycle 112 callbacks ({@link android.app.Service#onCreate onCreate()}, {@link android.app.Service#onStart 113 onStart()}, or {@link android.app.Service#onDestroy onDestroy()}).</li [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleClientService.java | 22 import android.app.Service; 39 public class BleClientService extends Service { 138 BluetoothGattService service; local 273 BluetoothGattService service = mBluetoothGatt.getService(SERVICE_UUID); 274 if (service == null) { 275 showMessage("Service not found"); 278 return service; 282 BluetoothGattService service = getService(); local 283 if (service == null) return null; 285 BluetoothGattCharacteristic characteristic = service.getCharacteristic(uuid) [all...] |
/external/bluetooth/bluedroid/bta/ag/ |
bta_ag_int.h | 52 /* Number of SCBs (AG service instances that can be registered) */ 240 /* type for each service control block */ 251 UINT16 conn_handle; /* RFCOMM handle of connected service */ 268 BOOLEAN dealloc; /* TRUE if service shutting down */ 274 BOOLEAN svc_conn; /* set to TRUE when service level connection up */ 278 UINT8 conn_service; /* connected service */ 285 UINT8 service_ind; /* CIEV service indicator value */ 310 tBTA_AG_SCB scb[BTA_AG_NUM_SCB]; /* service control blocks */ 360 extern BOOLEAN bta_ag_sdp_find_attr(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK service); 361 extern void bta_ag_do_disc(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK service); [all...] |
/external/bluetooth/bluedroid/stack/a2dp/ |
a2d_api.c | 44 ** This function will be executed by SDP when the service 77 /* get service name */ 152 ** string containing the service name. 184 /* add service class id list */ 218 /* add service name */ 238 ** perform service discovery and retrieve SRC or SNK SDP 240 ** returned for the first service record found on the 241 ** server that matches the service UUID. The callback 242 ** function will be executed when service discovery is 309 /* perform service search * [all...] |
/external/bluetooth/bluedroid/stack/srvc/ |
srvc_dis.c | 205 param.service.uuid.len = LEN_UUID_16; 206 param.service.s_handle = 1; 207 param.service.e_handle = 0xFFFF; 208 param.service.auth_req = 0; 212 param.service.uuid.uu.uuid16 = dis_attr_uuid[dis_cb.dis_read_uuid_idx]; 220 GATT_TRACE_ERROR1 ("Read DISInfo: 0x%04x GATT_Read Failed", param.service.uuid.uu.uuid16); 314 ** Description Initializa the Device Information Service Server. 336 GATT_TRACE_ERROR0("Can not create service, DIS_Init failed!"); 353 /* start service 445 /* need to enhance it as multiple service is needed * [all...] |