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

<<61626364656667686970>>

  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 23 import android.service.wallpaper.IWallpaperConnection;
24 import android.service.wallpaper.IWallpaperService;
25 import android.service.wallpaper.IWallpaperEngine;
26 import android.service.wallpaper.WallpaperSettingsActivity;
264 public void onServiceConnected(ComponentName name, IBinder service) {
266 mService = IWallpaperService.Stub.asInterface(service);
283 Log.w(LOG_TAG, "Wallpaper service gone: " + name);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 22 import android.app.Service;
46 * Service that handles media playback. This is the Service through which we perform all the media
49 * {@link MainActivity}, which signal the service to perform specific operations: Play, Pause,
52 public class MusicService extends Service implements OnCompletionListener, OnPreparedListener,
61 // service can handle are the <action> tags in the <intent-filters> tag for our service in
83 // indicates the state our service:
182 Log.i(TAG, "debug: Creating service");
222 return START_NOT_STICKY; // Means we started the service, but don't want it t
    [all...]
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_api.c 229 ** Description This function is called to request a GATT service discovery
230 ** on a GATT server. This function report service search result
231 ** by a callback event, and followed by a service search complete
235 ** p_srvc_uuid: a UUID of the service application is interested in.
272 ** service on the given server.
275 ** p_srvc_id: the service ID of which the characteristic is belonged to.
310 ** service on the given server.
443 ** Description This function is called to find the first included service of the
444 ** service on the given server.
447 ** p_srvc_id: the service ID of which the characteristic is belonged to
    [all...]
  /external/bluetooth/bluedroid/stack/gap/
gap_api.c 31 ** Description This function is called to allow or disallow a service to
757 ** GAP_SET_COD_ALL - overwrite major, minor, set the bits in service class
758 ** GAP_INIT_COD - overwrite major, minor, and service class
770 UINT16 service; local
775 BTM_COD_SERVICE_CLASS( service, dev );
788 p_cod->service &= BTM_COD_SERVICE_CLASS_MASK;
789 service = service | p_cod->service;
793 p_cod->service &= BTM_COD_SERVICE_CLASS_MASK
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_unittest.cc 40 MockAppCacheService service; local
42 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 111));
45 new AppCacheGroup(service.storage(), GURL("http://blah/manifest"), 111));
48 AppCacheHost host1(1, &frontend, &service);
49 AppCacheHost host2(2, &frontend, &service);
59 MockAppCacheService service; local
60 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 111));
103 MockAppCacheService service; local
105 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 1234));
144 MockAppCacheService service; local
356 MockAppCacheService service; local
427 MockAppCacheService service; local
499 MockAppCacheService service; local
557 MockAppCacheService service; local
    [all...]
  /external/bluetooth/bluedroid/stack/include/
sdp_api.h 101 /* Define a structure to hold the discovered service information. */
193 /* API into the SDP layer for service discovery. */
307 ** Description This function queries an SDP database for a specific service.
312 ** Returns Pointer to record containing service class, or NULL
324 ** Description This function queries an SDP database for a specific service.
333 ** Returns Pointer to record containing service class, or NULL
344 ** Description This function is called to read the 128-bit service UUID within a record
359 ** Description This function queries an SDP database for a specific service.
364 ** Returns Pointer to record containing service class, or NULL
421 /* API into SDP for local service database updates *
    [all...]
  /external/chromium/chrome/browser/extensions/
browser_action_apitest.cc 72 ExtensionService* service = browser()->profile()->GetExtensionService(); local
73 service->browser_event_router()->BrowserActionExecuted(
311 ExtensionService* service = browser()->profile()->GetExtensionService(); local
318 const size_t size_before = service->extensions()->size();
328 ASSERT_EQ(size_before + 3, service->extensions()->size());
333 service->extension_prefs()->SetIsIncognitoEnabled(
334 service->extensions()->at(size_before)->id(), true);
335 service->extension_prefs()->SetIsIncognitoEnabled(
336 service->extensions()->at(size_before + 2)->id(), true);
360 service->toolbar_model()->MoveBrowserAction
    [all...]
  /external/chromium_org/chrome/browser/extensions/
external_provider_impl.cc 67 VisitorInterface* service,
75 service_(service),
97 // Check if the service is still alive. It is possible that it went
343 VisitorInterface* service,
378 service,
423 service,
442 service,
458 service,
471 service,
488 service,
    [all...]
  /external/chromium_org/chrome/browser/tab_contents/
spelling_menu_observer.cc 87 // The service types |SpellingServiceClient::SPELLCHECK| and
113 // Append a placeholder item for the suggestion from the Spelling service
114 // and send a request to the service if we can retrieve suggestions from it.
115 // Also, see if we can use the spelling service to get an ideal suggestion.
123 // response from the Spelling service. (We do not have to disable this
129 // Invoke a JSON-RPC call to the Spelling service in the background so we
274 // When we choose the suggestion sent from the Spelling service, we replace
301 // The spelling service can be toggled by the user only if it is not managed.
307 // service immediately.
330 // Autocorrect requires use of the spelling service and the spelling servic
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
history_menu_bridge.mm 86 // Check to see if the history service is ready. Because it loads async, it
117 // The service is not ready for use yet, so become notified when it does.
125 // Note that all requests sent to either the history service or the favicon
126 // service will be automatically cancelled by their respective Consumers, so
158 // A history service is now ready. Check to see if it's the one for the main
180 void HistoryMenuBridge::TabRestoreServiceChanged(TabRestoreService* service) {
181 const TabRestoreService::Entries& entries = service->entries();
274 TabRestoreService* service) {
275 // Intentionally left blank. We hold a weak reference to the service.
285 // If the history service is ready, use it. Otherwise, a Notification wil
    [all...]
  /external/chromium_org/chrome/browser/ui/extensions/
application_launch.cc 68 EnableViaAppListFlow(ExtensionService* service,
73 : service_(service),
161 ExtensionService* service =
164 service->extension_prefs(), extension);
409 ExtensionService* service = local
411 DCHECK(service);
416 service->extension_prefs(), extension);
436 ExtensionService* service = local
438 DCHECK(service);
443 service->extension_prefs(), extension)
456 ExtensionService* service = local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_base.h 10 #include "gpu/command_buffer/service/buffer_manager.h"
11 #include "gpu/command_buffer/service/cmd_buffer_engine.h"
12 #include "gpu/command_buffer/service/context_group.h"
13 #include "gpu/command_buffer/service/framebuffer_manager.h"
14 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
15 #include "gpu/command_buffer/service/program_manager.h"
16 #include "gpu/command_buffer/service/query_manager.h"
17 #include "gpu/command_buffer/service/renderbuffer_manager.h"
18 #include "gpu/command_buffer/service/shader_manager.h"
19 #include "gpu/command_buffer/service/stream_texture_manager_mock.h
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 75 ExecutorService service = Executors.unconfigurableExecutorService(executor); local
77 addDelayedShutdownHook(service, terminationTimeout, timeUnit);
79 return service;
107 ScheduledExecutorService service = local
110 addDelayedShutdownHook(service, terminationTimeout, timeUnit);
112 return service;
117 * {@link ExecutorService service}. This is useful if the given service uses
121 * @param service ExecutorService which uses daemon threads
128 final ExecutorService service, final long terminationTimeout
    [all...]
  /external/qemu/proxy/
proxy_common.c 63 ProxyService* service,
70 conn->service = service;
248 /** Global service list
270 proxy_manager_add_service( ProxyService* service )
272 if (!service || s_num_services >= MAX_SERVICES)
278 s_services[s_num_services++] = service;
300 ProxyService* service = s_services[n]; local
301 service->serv_free( service->opaque )
341 ProxyService* service = s_services[n]; local
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 17 package android.service.textservice;
23 import android.app.Service;
44 * This class combines a service to the system with the spell checker service interface that
47 * <p>In addition to the normal Service lifecycle methods, this class
69 public abstract class SpellCheckerService extends Service {
73 "android.service.textservice.SpellCheckerService";
80 * service interface. Subclasses should not override.
311 public SpellCheckerServiceBinder(SpellCheckerService service) {
312 mInternalServiceRef = new WeakReference<SpellCheckerService>(service);
318 final SpellCheckerService service = mInternalServiceRef.get(); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/service/
PingSyncSynchronizer.java 17 package com.android.exchange.service;
19 import android.app.Service;
229 * it will not be here. This allows to use emptiness of this map to know whether the service
234 /** The {@link Service} that this object is managing. */
235 private final Service mService;
237 public PingSyncSynchronizer(final Service service) {
240 mService = service;
264 LogUtils.i(TAG, "PSS added first account, starting service");
272 * Remove an account from the map. If this was the last account, then also stop this service
    [all...]
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 49 * the service.
203 public void onServiceConnected(ComponentName name, IBinder service) {
207 mHealthService = new Messenger(service);
211 Log.w(TAG, "Unable to register client to service.");
277 // Starts health service.
306 Log.d(TAG, "Health Service not connected.");
313 Log.w(TAG, "Unable to reach service.");
323 Log.d(TAG, "Health Service not connected.");
330 Log.w(TAG, "Unable to reach service.");
  /external/chromium/chrome/browser/service/
service_process_control.cc 5 #include "chrome/browser/service/service_process_control.h"
45 VLOG(1) << "Connecting to Service Process IPC Server";
117 // If the service process is already running then connects to it.
123 // A service process should have a different mechanism for starting, but now
127 NOTREACHED() << "Unable to get service process binary name.";
175 // After we have successfully created the service process we try to connect
179 // If we don't have process handle that means launching the service process
204 // We just established a channel with the service process. Notify it if an
349 // If the service process is not launched yet then check again in 2 seconds.
  /external/chromium_org/chrome/browser/service_process/
service_process_control.cc 49 VLOG(1) << "Connecting to Service Process IPC Server";
111 // If the service process is already running then connects to it.
120 // A service process should have a different mechanism for starting, but now
131 NOTREACHED() << "Unable to get service process binary name.";
171 // After we have successfully created the service process we try to connect
177 // If we don't have process handle that means launching the service process
203 // We just established a channel with the service process. Notify it if an
292 // If the service process is already running then connect to it.
383 // If the service process is not launched yet then check again in 2 seconds.
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessConnectionImpl.java 28 * Manages a connection between the browser activity and a child service.
43 // Set to true when the service connect is finished, even if it fails.
45 // Set to true when the service disconnects, as opposed to being properly closed. This happens
48 // When the service disconnects (i.e. mServiceDisconnected is set to true), the status of the
55 // Strong binding will make the service priority equal to the priority of the activity. We want
136 public void onServiceConnected(ComponentName className, IBinder service) {
145 mService = IChildProcessService.Stub.asInterface(service);
156 // Called on the main thread to notify that the child service did not disconnect gracefully.
252 // Make sure that the service is already connected. If not, doConnectionSetup() will be
  /external/chromium_org/dbus/
signal_sender_verification_unittest.cc 70 // Start the test service, using the D-Bus thread.
79 // Same setup for the second TestService. This service should not have the
96 // Shut down the service.
201 // Sleep to have message delivered to the client via the D-Bus service.
247 // Now the second service owns the name.
267 // Start a test service that allows theft, using the D-Bus thread.
280 // Send a signal to check that the service is correctly owned.
303 // Now the second service owns the name.
373 // Now the second service owns the name.
  /external/chromium_org/third_party/icu/source/test/intltest/
nmfmapts.cpp 318 logln(*res); // service is still in synch
360 errln("did not get new instance from service");
364 errln("registered service did not match");
367 errln("registered service did not inherit");
370 errln("unregistered service did not match original");
374 errln("registered service did not match / unum");
377 errln("registered service did not inherit / unum");
380 errln("unregistered service did not match original / unum");
385 errln(*res); // service should be out of synch
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 77 /** Tests Service.callMethod(). */
98 /** Tests Service.get{Request,Response}Prototype(). */
173 Service service = ServiceWithNoOuter.newReflectiveService(impl); local
193 service.callMethod(fooMethod, controller, request, callback);
202 BlockingService service = local
216 service.callBlockingMethod(fooMethod, controller, request);
248 if (!Service.class.isAssignableFrom(innerClass) &&
258 // No service class should have been generated.
  /external/icu4c/test/intltest/
nmfmapts.cpp 318 logln(*res); // service is still in synch
360 errln("did not get new instance from service");
364 errln("registered service did not match");
367 errln("registered service did not inherit");
370 errln("unregistered service did not match original");
374 errln("registered service did not match / unum");
377 errln("registered service did not inherit / unum");
380 errln("unregistered service did not match original / unum");
385 errln(*res); // service should be out of synch
  /frameworks/base/services/java/com/android/server/content/
SyncOperation.java 61 /** Service to which this operation will bind to perform the sync. */
62 public final ComponentName service; field in class:SyncOperation
89 this.service = null;
122 this.service = other.service;
239 if (service == null) {
244 sb.append("service {package=" )
245 .append(service.getPackageName())
249 .append(service.getClassName())

Completed in 884 milliseconds

<<61626364656667686970>>