HomeSort by relevance Sort by last modified time
    Searched full:service (Results 876 - 900 of 11175) sorted by null

<<31323334353637383940>>

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessLauncher.java 42 // The upper limit on the number of simultaneous sandboxed and privileged child service process
51 // Connections to services. Indices of the array correspond to the service numbers.
54 // The list of free (not bound) service indices. When looking for a free service, the first
55 // index in that list should be used. When a service is unbound, its index is added to the
56 // end of the list. This is so that we avoid immediately reusing the freed service (see
57 // http://crbug.com/164069): the framework might keep a service process alive when it's been
58 // unbound for a short time. If a new connection to the same service is bound at that point,
90 Log.w(TAG, "Ran out of service.");
108 " already occupied by service: " + occupier)
    [all...]
  /external/qemu/android/
hw-qemud.c 89 * The multiplexer is connected to one or more 'service' objects.
585 * When a service decides to send data to the client, there could be cases when
587 * available to write service's data to, So, we need to cache that data into the
589 * callback. Pending service data is stored in the client descriptor as a list
636 /* Service for this pipe. */
637 QemudService* service; member in struct:QemudPipe
653 QemudService* service; member in struct:QemudClient
654 QemudClient* next_serv; /* next in same service */
687 static void qemud_service_remove_client( QemudService* service,
714 * the real service implementation
2357 QemudService* service; member in struct:__anon27432
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ServiceLoaderTest.java 31 import tests.resources.ServiceLoader.Service;
72 ServiceLoader<Service> serviceLoader = ServiceLoader.load(
73 Service.class, ucl);
74 Iterator<Service> itr = serviceLoader.iterator();
96 Iterator itr = ServiceLoader.load(Service.class, ucl).iterator();
98 assertEquals("ImplementationOfService", ((Service) itr.next())
134 itr = ServiceLoader.load(Service.class, null).iterator();
184 ServiceLoader serviceLoader = ServiceLoader.load(Service.class, ucl);
187 assertEquals("ImplementationOfService", ((Service) itr.next())
210 // one service with two implementation clas
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_webstore_private_api.cc 51 // Returns either the test sync service, or the real one from |profile|.
67 ExtensionService* service = profile->GetExtensionService(); local
68 const Extension* store = service->GetWebStoreApp();
73 return (service->GetExtensionByWebExtent(url) == store);
108 ProfileSyncService* service) {
109 test_sync_service = service;
451 ExtensionService* service = profile_->GetExtensionService();
452 ExtensionPrefs* prefs = service->extension_prefs();
467 ExtensionService* service = profile_->GetExtensionService(); local
468 ExtensionPrefs* prefs = service->extension_prefs()
540 ProfileSyncService* service = GetSyncService(GetDefaultProfile(profile_)); local
563 std::string service; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
crx_installer_browsertest.cc 163 ExtensionService* service = extensions::ExtensionSystem::Get( local
166 CrxInstaller::Create(service, prompt.Pass(), approval));
199 ExtensionService* service = extensions::ExtensionSystem::Get( local
209 service->extension_prefs()->GetGrantedPermissions(
222 ExtensionService* service = extensions::ExtensionSystem::Get( local
230 EXPECT_TRUE(service->GetExtensionById(id, false));
328 ExtensionService* service = extensions::ExtensionSystem::Get( local
337 CrxInstaller::Create(service, mock_prompt->CreatePrompt()));
369 ExtensionService* service = extensions::ExtensionSystem::Get( local
371 ASSERT_TRUE(service);
394 ExtensionService* service = extension_system->extension_service(); local
    [all...]
plugin_apitest.cc 64 ExtensionService* service = extensions::ExtensionSystem::Get( local
66 service->set_show_extensions_prompts(false);
67 const size_t size_before = service->extensions()->size();
70 EXPECT_EQ(size_before + 1, service->extensions()->size());
81 EXPECT_EQ(size_before + 1, service->extensions()->size());
83 EXPECT_EQ(size_before, service->extensions()->size());
94 EXPECT_EQ(size_before + 1, service->extensions()->size());
144 ExtensionService* service = extensions::ExtensionSystem::Get( local
146 service->set_show_extensions_prompts(false);
147 const size_t size_before = service->extensions()->size()
    [all...]
  /external/chromium_org/chrome/browser/sync/
about_sync_util.cc 211 ProfileSyncService* service) {
329 if (!service) {
330 summary_string.SetValue("Sync service does not exist");
335 bool is_status_valid = service->QueryDetailedSyncStatus(&full_status);
336 bool sync_initialized = service->sync_initialized();
339 service->GetLastSessionSnapshot() :
343 summary_string.SetValue(service->QuerySyncStatusSummaryString());
345 server_url.SetValue(service->sync_service_url().spec());
351 if (service->signin())
352 username.SetValue(service->signin()->GetAuthenticatedUsername())
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
SyncManager.java 22 import android.app.Service;
59 import com.android.emailcommon.service.AccountServiceProxy;
60 import com.android.emailcommon.service.EmailServiceProxy;
61 import com.android.emailcommon.service.IEmailServiceCallback.Stub;
62 import com.android.emailcommon.service.PolicyServiceProxy;
89 public abstract class SyncManager extends Service implements Runnable {
157 // Service already running (can't ping)
159 // Service waiting after I/O error (can't ping)
161 // Service had a fatal error; can't run
163 // Service is disabled by user (checkbox
1133 final AbstractSyncService service = ssm.getRunningService(id); local
1237 AbstractSyncService service = mServiceMap.get(m.mId); local
1840 AbstractSyncService service = getRunningService(mailboxId); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
personal_options_handler.cc 239 ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService(); local
240 DCHECK(service);
241 bool managed = service->IsManaged();
242 bool sync_setup_completed = service->HasSyncSetupCompleted();
243 bool status_has_error = sync_ui_util::GetStatusLabels(service,
259 } else if (service->SetupInProgress()) {
379 ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService(); local
380 DCHECK(service);
381 service->ShowErrorUI(NULL);
385 ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService() local
392 ProfileSyncService* service = web_ui_->GetProfile()->GetProfileSyncService(); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 51 ATTRIBUTE Service-Type 6 integer
60 ATTRIBUTE Login-Service 15 integer
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User 5
140 VALUE Service-Type Administrative-User 6
141 VALUE Service-Type NAS-Prompt-User 7
162 VALUE Login-Service Telnet
    [all...]
  /external/chromium/chrome/browser/
background_application_list_model.cc 71 void GetServiceApplications(ExtensionService* service,
73 const ExtensionList* extensions = service->extensions();
156 ExtensionService* service = profile->GetExtensionService(); local
157 if (service && service->is_ready())
250 ExtensionService* service = profile_->GetExtensionService(); local
251 if (!service || !service->is_ready())
291 // Update queries the extensions service of the profile with which the model was
296 ExtensionService* service = profile_->GetExtensionService() local
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
user_policy_signin_service_base.cc 66 manager->core()->service()->RefreshPolicy(callback);
94 CloudPolicyService* service) {
136 if (manager && manager->core()->service())
137 manager->core()->service()->RemoveObserver(this);
210 if (!manager->core()->service()) {
223 // Otherwise OnInitializationCompleted is invoked as soon as the service
225 if (manager->core()->service()->IsInitializationComplete())
226 OnInitializationCompleted(manager->core()->service());
239 DCHECK(manager->core()->service());
243 // Observe the service to determine when it's initialized
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service_unittest.cc 56 service()->SetWindowType(
58 service()->SetWindowBounds(window_id,
81 service()->UpdateTabNavigation(window_id, tab_id, navigation);
83 service()->SetSelectedNavigationIndex(
103 // Configures the session service with one window with one tab and a single
105 // pinned state of the tab is updated. The session service is then recreated
117 helper_.service()->SetPinnedState(window_id, tab_id, pinned_state);
150 service()->SetWindowType(
152 service()->SetWindowBounds(window2_id,
159 SessionService* service() { return helper_.service(); function in class:SessionServiceTest
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 36 import android.service.wallpaper.WallpaperService;
44 * This class is used to specify meta information of a wallpaper service.
50 * The Service that implements this wallpaper component.
79 * @param service The ResolveInfo returned from the package manager about
82 public WallpaperInfo(Context context, ResolveInfo service)
84 mService = service;
85 ServiceInfo si = service.serviceInfo;
161 * Return the class name of the service component that implements
169 * Return the raw information about the Service implementing this
177 * Return the component of the service that implements this wallpaper
    [all...]
  /frameworks/base/docs/html/
legal.jd 62 Policy &amp; Terms of Service</a>.</p>
80 <dd>Google Play is a publicly available service through which you can distribute your apps for
97 to the terms of service, register, and get an API Key. Registration is free.
105 <dd>Android Cloud to Device Messaging (C2DM) is a service that helps you send data from
106 your servers to your users' Android devices. The service provides a simple, lightweight
111 Messaging Terms of Service</a></p>
114 <dt>Android Backup Service</dt>
115 <dd>Android Backup Service is integrated with Android's data backup framework to perform data
117 backup transport on the device. Before you can sign up for Android Backup Service, you
119 <p><a href="https://developers.google.com/android/backup/terms">Android Backup Service
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 43 * <p>The network location provider must export a service with action
44 * "com.android.location.service.v2.NetworkLocationProvider"
45 * and a valid minor version in a meta-data field on the service, and
46 * then return the result of {@link #getBinder()} on service binding.
48 * <p>The fused location provider must export a service with action
49 * "com.android.location.service.FusedLocationProvider"
50 * and a valid minor version in a meta-data field on the service, and
51 * then return the result of {@link #getBinder()} on service binding.
79 private final class Service extends ILocationProvider.Stub {
121 mBinder = new Service();
    [all...]
  /frameworks/base/media/java/android/media/
AudioManager.java 471 IAudioService service = getService(); local
473 service.dispatchMediaKeyEvent(keyEvent);
591 IAudioService service = getService(); local
594 service.adjustMasterVolume(direction, flags, mContext.getOpPackageName());
596 service.adjustStreamVolume(streamType, direction, flags,
622 IAudioService service = getService(); local
625 service.adjustMasterVolume(direction, flags, mContext.getOpPackageName());
627 service.adjustVolume(direction, flags, mContext.getOpPackageName());
652 IAudioService service = getService(); local
655 service.adjustMasterVolume(direction, flags, mContext.getOpPackageName())
675 IAudioService service = getService(); local
691 IAudioService service = getService(); local
723 IAudioService service = getService(); local
745 IAudioService service = getService(); local
764 IAudioService service = getService(); local
783 IAudioService service = getService(); local
807 IAudioService service = getService(); local
826 IAudioService service = getService(); local
844 IAudioService service = getService(); local
860 IAudioService service = getService(); local
875 IAudioService service = getService(); local
895 IAudioService service = getService(); local
921 IAudioService service = getService(); local
950 IAudioService service = getService(); local
964 IAudioService service = getService(); local
988 IAudioService service = getService(); local
1002 IAudioService service = getService(); local
1019 IAudioService service = getService(); local
1047 IAudioService service = getService(); local
1074 IAudioService service = getService(); local
1102 IAudioService service = getService(); local
1120 IAudioService service = getService(); local
1134 IAudioService service = getService(); local
1275 IAudioService service = getService(); local
1293 IAudioService service = getService(); local
1311 IAudioService service = getService(); local
1326 IAudioService service = getService(); local
1426 IAudioService service = getService(); local
1442 IAudioService service = getService(); local
1582 IAudioService service = getService(); local
1598 IAudioService service = getService(); local
1617 IAudioService service = getService(); local
1749 IAudioService service = getService(); local
1781 IAudioService service = getService(); local
1802 IAudioService service = getService(); local
1816 IAudioService service = getService(); local
2043 IAudioService service = getService(); local
2065 IAudioService service = getService(); local
2082 IAudioService service = getService(); local
2098 IAudioService service = getService(); local
2162 IAudioService service = getService(); local
2182 IAudioService service = getService(); local
2195 IAudioService service = getService(); local
2237 IAudioService service = getService(); local
2256 IAudioService service = getService(); local
2279 IAudioService service = getService(); local
2303 IAudioService service = getService(); local
2328 IAudioService service = getService(); local
2367 IAudioService service = getService(); local
2384 IAudioService service = getService(); local
2405 IAudioService service = getService(); local
2431 IAudioService service = getService(); local
2450 IAudioService service = getService(); local
2470 IAudioService service = getService(); local
2486 IAudioService service = getService(); local
2501 IAudioService service = getService(); local
2648 IAudioService service = getService(); local
2665 IAudioService service = getService(); local
    [all...]
  /external/chromium/chrome/browser/automation/
automation_provider.cc 278 ExtensionService* service = profile_->GetExtensionService(); local
279 if (extension && service &&
280 service->GetExtensionById(extension->id(), false))
289 ExtensionService* service = profile_->GetExtensionService(); local
290 if (extension && service &&
291 service->GetExtensionById(extension->id(), true) &&
292 !service->GetExtensionById(extension->id(), false))
768 ExtensionService* service = profile_->GetExtensionService(); local
769 if (service) {
776 new CrxInstaller(service, NULL)); // silent install, no U
796 ExtensionService* service = profile_->GetExtensionService(); local
821 ExtensionService* service = profile_->GetExtensionService(); local
834 ExtensionService* service = profile_->GetExtensionService(); local
855 ExtensionService* service = profile_->GetExtensionService(); local
870 ExtensionService* service = profile_->GetExtensionService(); local
895 ExtensionService* service = profile_->GetExtensionService(); local
916 ExtensionService* service = profile_->GetExtensionService(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
  /external/chromium/chrome/browser/sessions/
tab_restore_service_browsertest.cc 75 // Must set service to null first so that it is destroyed before the new
82 // Adds a window with one tab and url to the profile's session service.
83 // If |pinned| is true, the tab is marked as pinned in the session service.
102 // tab is marked as pinned in the session service.
125 // Have the service record the tab.
178 // Have the service record the tab.
181 // Recreate the service and have it load the tabs.
205 // Have the service record the tab.
220 // Recreate the service and have it load the tabs.
246 // Have the service record the tab
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_auth_fetcher.h 47 // This will later be hidden behind an auth service which caches
55 // identified by |username| and |password|. If |service| is not null or
56 // empty, then also obtains a service token for specified service.
66 const char* const service,
71 // Start a request to obtain service token for the the account identified by
72 // |sid| and |lsid| and the |service|.
78 const char* const service);
80 // Start a request to obtain |service| token for the the account identified by
86 const char* const service);
    [all...]
  /external/chromium_org/remoting/host/win/
elevated_controller.cc 373 ScopedScHandle service; local
374 HRESULT hr = OpenService(&service);
379 // Change the service start type to 'auto'.
380 if (!::ChangeServiceConfigW(service,
394 << "'service start type to 'auto'";
398 // Start the service.
399 if (!StartService(service, 0, NULL)) {
403 << "Failed to start the '" << kWindowsServiceName << "'service";
413 ScopedScHandle service; local
414 HRESULT hr = OpenService(&service);
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
ucasemap.h 16 * Case mapping service object and functions using it.
28 * \brief C API: Unicode case mapping functions using a UCaseMap service object.
30 * The service object takes care of memory allocations, data loading, and setup
40 * UCaseMap is an opaque service object for newer ICU case mapping functions.
41 * Older functions did not use a service object.
48 * Open a UCaseMap service object for a locale and a set of options.
50 * service object need not process them in each call.
61 * @return Pointer to a UCaseMap service object, if successful.
73 * Close a UCaseMap service object.
101 * @param csm UCaseMap service object
    [all...]
  /external/icu4c/common/unicode/
ucasemap.h 16 * Case mapping service object and functions using it.
28 * \brief C API: Unicode case mapping functions using a UCaseMap service object.
30 * The service object takes care of memory allocations, data loading, and setup
40 * UCaseMap is an opaque service object for newer ICU case mapping functions.
41 * Older functions did not use a service object.
48 * Open a UCaseMap service object for a locale and a set of options.
50 * service object need not process them in each call.
61 * @return Pointer to a UCaseMap service object, if successful.
73 * Close a UCaseMap service object.
101 * @param csm UCaseMap service object
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 39 * Service via IPC. Use {@link BluetoothAdapter#getProfileProxy} to get
117 if (VDBG) Log.d(TAG,"Unbinding service...");
130 if (VDBG) Log.d(TAG,"Binding service...");
142 * Bluetooth A2DP service.
166 Log.e(TAG, "Could not bind to Bluetooth A2DP Service with " + intent);
231 if (mService == null) Log.w(TAG, "Proxy not attached to service");
272 if (mService == null) Log.w(TAG, "Proxy not attached to service");
289 if (mService == null) Log.w(TAG, "Proxy not attached to service");
306 if (mService == null) Log.w(TAG, "Proxy not attached to service");
324 if (mService == null) Log.w(TAG, "Proxy not attached to service");
    [all...]

Completed in 729 milliseconds

<<31323334353637383940>>