HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 1 - 25 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/init/
keychords.h 20 struct service;
22 void add_service_keycodes(struct service *svc);
init.h 77 struct service { struct
100 /* keycodes for triggering this service via /dev/keychord */
115 struct service *service_find_by_name(const char *name);
116 struct service *service_find_by_pid(pid_t pid);
117 struct service *service_find_by_keychord(int keychord_id);
118 void service_for_each(void (*func)(struct service *svc));
120 void (*func)(struct service *svc));
122 void (*func)(struct service *svc));
123 void service_stop(struct service *svc);
124 void service_start(struct service *svc, const char *dynamic_args)
    [all...]
  /external/freetype/src/base/
ftwinfnt.c 31 FT_Service_WinFnt service; local
39 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
41 if ( service != NULL )
43 error = service->get_header( face, header );
ftmm.c 70 FT_Service_MultiMasters service; local
73 error = ft_face_get_mm_service( face, &service );
77 if ( service->get_mm )
78 error = service->get_mm( face, amaster );
92 FT_Service_MultiMasters service; local
95 error = ft_face_get_mm_service( face, &service );
99 if ( service->get_mm_var )
100 error = service->get_mm_var( face, amaster );
115 FT_Service_MultiMasters service; local
118 error = ft_face_get_mm_service( face, &service );
138 FT_Service_MultiMasters service; local
161 FT_Service_MultiMasters service; local
187 FT_Service_MultiMasters service; local
    [all...]
  /packages/apps/Email/src/com/android/email/service/
EasAuthenticatorServiceAlternate.java 17 package com.android.email.service;
23 * independently disable/enable each service we need to give it a different class name.
EmailServiceConstants.java 17 package com.android.email.service;
  /system/core/adb/
adb_client.h 6 /* connect to adb, connect to the named service, and return
7 ** a valid fd for interacting with that service upon success
10 int adb_connect(const char *service);
11 int _adb_connect(const char *service);
13 /* connect to adb, connect to the named service, return 0 if
14 ** the connection succeeded AND the service returned OKAY
16 int adb_command(const char *service);
18 /* connect to adb, connect to the named service, return
22 char *adb_query(const char *service);
  /frameworks/base/core/java/android/service/urlrenderer/
IUrlRendererService.aidl 17 package android.service.urlrenderer;
19 import android.service.urlrenderer.IUrlRendererCallback;
IUrlRendererCallback.aidl 17 package android.service.urlrenderer;
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperConnection.aidl 17 package android.service.wallpaper;
20 import android.service.wallpaper.IWallpaperEngine;
IWallpaperService.aidl 17 package android.service.wallpaper;
19 import android.service.wallpaper.IWallpaperConnection;
  /external/qemu/proxy/
proxy_http.c 22 http_service_free( HttpService* service )
25 if (service->footer != service->footer0)
26 qemu_free(service->footer);
27 qemu_free(service);
32 http_service_connect( HttpService* service,
41 if (sock_address_equal( address, &service->server_addr ))
50 return http_rewriter_connect(service, address);
53 return http_connector_connect(service, address);
65 HttpService* service; local
    [all...]
proxy_http_int.h 29 HttpService* service,
34 HttpService* service,
  /external/dbus/bus/
services.c 2 /* services.c Service management
51 BusService *service; member in struct:BusOwner
143 BusService *service; local
145 service = _dbus_hash_table_lookup_string (registry->service_hash,
148 return service;
152 _bus_service_find_owner_link (BusService *service,
157 link = _dbus_list_get_first_link (&service->owners);
167 link = _dbus_list_get_next_link (&service->owners, link);
185 bus_owner_new (BusService *service,
191 result = _dbus_mem_pool_alloc (service->registry->owner_pool)
246 BusService *service; local
325 BusService *service = _dbus_hash_iter_get_value (&iter); local
350 BusService *service = _dbus_hash_iter_get_value (&iter); local
388 BusService *service; local
609 BusService *service; local
691 const char *service = _dbus_hash_iter_get_string_key (&iter); local
751 BusService *service; \/**< service to cancel ownership of *\/ member in struct:__anon3346
901 BusService *service; member in struct:__anon3347
    [all...]
services.h 2 /* services.h Service management
33 typedef void (* BusServiceForeachFunction) (BusService *service,
69 BusService* bus_service_ref (BusService *service);
70 void bus_service_unref (BusService *service);
71 dbus_bool_t bus_service_add_owner (BusService *service,
76 dbus_bool_t bus_service_swap_owner (BusService *service,
80 dbus_bool_t bus_service_remove_owner (BusService *service,
84 dbus_bool_t bus_service_has_owner (BusService *service,
86 BusOwner* bus_service_get_primary_owner (BusService *service);
87 dbus_bool_t bus_service_get_allow_replacement (BusService *service);
    [all...]
  /external/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
  /frameworks/base/cmds/service/
Android.mk 5 service.cpp
14 LOCAL_MODULE:= service
  /frameworks/base/core/java/android/content/
ServiceConnection.java 22 * Interface for monitoring the state of an application service. See
23 * {@link android.app.Service} and
30 * Called when a connection to the Service has been established, with
32 * Service.
34 * @param name The concrete component name of the service that has
37 * @param service The IBinder of the Service's communication channel,
40 public void onServiceConnected(ComponentName name, IBinder service);
43 * Called when a connection to the Service has been lost. This typically
44 * happens when the process hosting the service has crashed or been killed
    [all...]
  /frameworks/base/core/java/android/app/
IServiceConnection.aidl 24 void connected(in ComponentName name, IBinder service);
  /frameworks/base/core/java/android/os/
ServiceManager.java 38 // Find the service manager
44 * Returns a reference to a service with the given name.
46 * @param name the name of the service to get
47 * @return a reference to the service, or <code>null</code> if the service doesn't exist
51 IBinder service = sCache.get(name); local
52 if (service != null) {
53 return service;
64 * Place a new @a service called @a name into the service
84 IBinder service = sCache.get(name); local
    [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 27 * A service-provider loader.
29 * <p>A service provider is a factory for creating all known implementations of a particular
58 * for (MyService service : ServiceLoader<MyService>.load(MyService.class)) {
59 * if (service.supports(o)) {
60 * return service.handle(o);
65 * <p>Note that each iteration creates new instances of the various service implementations, so
70 * @param <S> the service class or interface
74 private final Class<S> service; field in class:ServiceLoader
78 private ServiceLoader(Class<S> service, ClassLoader classLoader) {
79 // It makes no sense for service to be null
    [all...]
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 79 EasSyncService service = new EasSyncService(); local
80 service.mContext = mMockContext;
81 service.mMailbox = mailbox;
82 service.mAccount = account;
83 service.mContentResolver = mMockResolver;
84 return service;
88 EasSyncService service = getTestService(); local
92 return c.newInstance(service.mMailbox, service);
  /external/bluetooth/bluez/test/
simple-service 84 <text value="Serial Port Service"/> \
112 service = dbus.Interface(bus.get_object("org.bluez", path), variable
113 "org.bluez.Service")
115 handle = service.AddRecord(xml)
117 print "Service record with handle 0x%04x added" % (handle)
119 print "Press CTRL-C to remove service record"
127 service.RemoveRecord(dbus.UInt32(handle))
  /frameworks/base/media/libstagefright/
OMXClient.cpp 34 sp<IMediaPlayerService> service = interface_cast<IMediaPlayerService>(binder); local
36 CHECK(service.get() != NULL);
38 mOMX = service->getOMX();

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>