Searched defs:service (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftfstype.c36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_extra )
46 if ( !service->ps_get_font_extra( face, &extra ) &&
H A Dfttype1.c33 FT_Service_PsInfo service; local
42 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
44 if ( service && service->ps_get_font_info )
45 error = service->ps_get_font_info( face, afont_info );
59 FT_Service_PsInfo service; local
64 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
66 if ( service && service->ps_has_glyph_names )
67 result = service
81 FT_Service_PsInfo service; local
111 FT_Service_PsInfo service = NULL; local
[all...]
H A Dftwinfnt.c32 FT_Service_WinFnt service; local
42 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
44 if ( service )
45 error = service->get_header( face, header );
H A Dftbdf.c37 FT_Service_BDF service; local
43 FT_FACE_FIND_SERVICE( face, service, BDF );
45 if ( service && service->get_charset_id )
46 error = service->get_charset_id( face, &encoding, &registry );
69 FT_Service_BDF service; local
80 FT_FACE_FIND_SERVICE( face, service, BDF );
82 if ( service && service->get_property )
83 error = service
[all...]
H A Dftgxval.c43 FT_Service_GXvalidate service; local
59 FT_FACE_FIND_GLOBAL_SERVICE( face, service, GX_VALIDATE );
61 if ( service )
62 error = service->validate( face,
95 FT_Service_CKERNvalidate service; local
111 FT_FACE_FIND_GLOBAL_SERVICE( face, service, CLASSICKERN_VALIDATE );
113 if ( service )
114 error = service->validate( face,
H A Dftotval.c37 FT_Service_OTvalidate service; local
57 FT_FACE_FIND_GLOBAL_SERVICE( face, service, OPENTYPE_VALIDATE );
59 if ( service )
60 error = service->validate( face,
H A Dftpfr.c29 FT_Service_PfrMetrics service = NULL; local
33 FT_FACE_LOOKUP_SERVICE( face, service, PFR_METRICS );
35 return service;
49 FT_Service_PfrMetrics service; local
55 service = ft_pfr_check( face );
56 if ( service )
58 error = service->get_metrics( face,
105 FT_Service_PfrMetrics service; local
114 service = ft_pfr_check( face );
115 if ( service )
133 FT_Service_PfrMetrics service; local
[all...]
H A Dftcid.c43 FT_Service_CID service; local
46 FT_FACE_FIND_SERVICE( face, service, CID );
48 if ( service && service->get_ros )
49 error = service->get_ros( face, &r, &o, &s );
75 FT_Service_CID service; local
78 FT_FACE_FIND_SERVICE( face, service, CID );
80 if ( service && service->get_is_cid )
81 error = service
102 FT_Service_CID service; local
[all...]
/external/testng/src/test/java/test/tmp/p2/
H A DServiceTest.java9 public void service() { method in class:ServiceTest
/external/guice/extensions/service/test/com/google/inject/service/
H A DSingleServiceIntegrationTest.java1 package com.google.inject.service;
26 AsyncService service = new AsyncService(executor) {
42 Future<?> future = service.start();
51 service.stop();
64 AsyncService service = new AsyncService(executor) {
74 service.start().get(2, TimeUnit.SECONDS);
75 service.stop().get(2, TimeUnit.SECONDS);
/external/ims/rcs/rcsservice/src/com/android/service/ims/
H A DRcsServiceApp.java29 package com.android.service.ims;
H A DDeviceShutdown.java29 package com.android.service.ims;
38 * Device shutdown event receiver: automatically stops the RCS service
50 // Need wait RCS stack become unavailable before close RCS service.
H A DLauncherUtils.java29 package com.android.service.ims;
36 import com.android.service.ims.RcsService;
46 * Launch the Presence service.
52 logger.debug("Launch RCS service");
56 ComponentName service = context.startService(new Intent().setComponent(comp));
57 if (service == null) {
65 * Stop the Presence service.
70 logger.debug("Stop RCS service");
H A DRcsUtils.java29 package com.android.service.ims;
/external/selinux/dbus/
H A Dselinux_client.py2 import dbus.service namespace
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
H A DFontSizeChangedListener.java18 package org.connectbot.service;
/external/wpa_supplicant_8/hostapd/hidl/1.0/
H A Dhidl.cpp31 static android::sp<IHostapd> service; variable
53 service = new Hostapd(interfaces);
54 if (!service)
56 if (service->registerAsService() != android::NO_ERROR)
70 service.clear();
/external/guice/extensions/service/src/com/google/inject/service/
H A DCompositeService.java16 package com.google.inject.service;
34 * A service that composes other services together in a fixed order.
44 * Represents the state of this composite service. Will equal FAILED
45 * even if only one component service fails to start or stop. In other
47 * service to be considered started and similarly for stopped.
57 public CompositeService add(Class<? extends Service> service) { argument
58 return add(Key.get(service));
61 public CompositeService add(Key<? extends Service> service) { argument
65 injector.getBinding(service);
67 services.add(service);
[all...]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DDeviceShutdown.java29 package com.android.service.ims.presence;
38 * Device shutdown event receiver: automatically stops the RCS service
/external/nos/host/generic/libnos/generator/test/
H A Dtest.cpp53 // The method's ID is based on the order of declaration in the service.
56 Hello service{client};
65 service.Third(request, &response);
66 service.First(request, &response);
67 service.Second(request, &response);
73 Hello service{client};
89 EXPECT_THAT(service.Greet(request, &real_response), Eq(APP_SUCCESS));
96 Hello service{client};
105 EXPECT_THAT(service.Greet(request, nullptr), Eq(APP_SUCCESS));
112 Hello service{clien
169 IHello& service = mockService; local
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DServiceUtils.java38 * Marks the service as a foreground service. This uses reflection to figure out whether the new
39 * APIs for marking a service as a foreground service are available. If not, it falls back to the
42 * @param service
43 * the service to put in foreground mode
49 public static void setForeground(Service service, Integer notificationId, argument
54 startForeground = service.getClass().getMethod("startForeground", startForegroundSignature);
57 startForeground.invoke(service, new Object[] { notificationId, notification });
71 // service
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
H A DFacadeService.java17 package com.googlecode.android_scripting.service;
37 * intent.setAction("com.googlecode.android_scripting.service.FacadeService.ACTION_BIND");
40 * Example using the service:<br>
/external/tensorflow/tensorflow/compiler/xla/client/
H A Dcompile_only_client.h21 #include "tensorflow/compiler/xla/service/compile_only_service.h"
22 #include "tensorflow/compiler/xla/service/compiler.h"
34 explicit CompileOnlyClient(CompileOnlyService* service) argument
35 : Client(service), compiler_service_(service) {}
/external/autotest/client/cros/cellular/pseudomodem/
H A Dmessaging.py6 import dbus.service namespace
16 class Messaging(dbus.service.Interface):
25 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING, out_signature='ao')
40 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING, in_signature='o')
54 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING,
69 @dbus.service.signal(mm1_constants.I_MODEM_MESSAGING, signature='ob')
88 @dbus.service.signal(mm1_constants.I_MODEM_MESSAGING, signature='o')
103 @dbus.service.signal(mm1_constants.I_MODEM_MESSAGING, signature='o')
H A Dmodemmanager.py6 import dbus.service namespace
24 @dbus.service.method(mm1_constants.I_MODEM_MANAGER)
36 @dbus.service.method(mm1_constants.I_MODEM_MANAGER, in_signature='s')

Completed in 551 milliseconds

1234567891011>>