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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/VEX/switchback/
test_hello.c 3 static void bar ( void*(*service)(int,int) )
7 service(1, 'h');
8 service(1, 'e');
9 service(1, 'l');
10 service(1, 'l');
11 service(1, 'o');
12 service(1, '\n');
15 void entry ( void*(*service)(int,int) )
17 bar(service);
18 service(0,0)
    [all...]
test_simple.c 3 static void bar ( void*(*service)(int,int) )
8 void entry ( void*(*service)(int,int) )
10 bar(service);
11 service(0,0);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractServiceTest.java 40 NoOpService service = new NoOpService(); local
41 Assert.assertEquals(Service.State.NEW, service.state());
42 assertFalse(service.isRunning());
43 assertFalse(service.running);
45 service.start();
46 assertEquals(Service.State.RUNNING, service.state());
47 assertTrue(service.isRunning());
48 assertTrue(service.running)
57 NoOpService service = new NoOpService(); local
67 NoOpService service = new NoOpService(); local
79 NoOpService service = new NoOpService(); local
91 NoOpService service = new NoOpService(); local
104 NoOpService service = new NoOpService(); local
137 ManualSwitchedService service = new ManualSwitchedService(); local
159 ManualSwitchedService service = new ManualSwitchedService(); local
182 ManualSwitchedService service = new ManualSwitchedService(); local
217 ThreadedService service = new ThreadedService(); local
231 ThreadedService service = new ThreadedService(); local
248 ThreadedService service = new ThreadedService(); local
267 ThreadedService service = new ThreadedService(); local
341 NoOpService service = new NoOpService(); local
352 StartThrowingService service = new StartThrowingService(); local
363 StopThrowingService service = new StopThrowingService(); local
375 RunThrowingService service = new RunThrowingService(); local
    [all...]
AbstractExecutionThreadServiceTest.java 58 WaitOnRunService service = new WaitOnRunService(); local
59 assertFalse(service.startUpCalled);
61 service.start().get();
62 assertTrue(service.startUpCalled);
63 assertEquals(Service.State.RUNNING, service.state());
65 enterRun.await(); // to avoid stopping the service until run() is invoked
67 service.stop().get();
68 assertTrue(service.shutDownCalled);
69 assertEquals(Service.State.TERMINATED, service.state())
75 WaitOnRunService service = new WaitOnRunService(); local
103 WaitOnRunService service = new WaitOnRunService(); local
169 ThrowOnStartUpService service = new ThrowOnStartUpService(); local
204 ThrowOnRunService service = new ThrowOnRunService(); local
215 ThrowOnRunService service = new ThrowOnRunService(); local
247 ThrowOnShutDown service = new ThrowOnShutDown(); local
279 TimeoutOnStartUp service = new TimeoutOnStartUp(); local
    [all...]
AbstractScheduledServiceTest.java 20 import com.google.common.util.concurrent.Service.State;
60 NullService service = new NullService(); local
61 service.startAndWait();
63 service.stopAndWait();
76 TestService service = new TestService(); local
77 service.runException = new Exception();
78 service.startAndWait();
79 service.runFirstBarrier.await();
80 service.runSecondBarrier.await();
87 assertEquals(service.runException, e.getCause().getCause())
93 TestService service = new TestService(); local
106 TestService service = new TestService(); local
122 TestService service = new TestService(); local
136 TestService service = new TestService(); local
154 TestService service = new TestService(); local
316 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService(); local
329 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService() { local
386 TestFailingCustomScheduledService service = new TestFailingCustomScheduledService(); local
    [all...]
AbstractIdleServiceTest.java 19 import com.google.common.util.concurrent.Service.State;
52 NullService service = new NullService(); local
53 assertFalse(service.startUpCalled);
55 service.start().get();
56 assertTrue(service.startUpCalled);
57 assertEquals(Service.State.RUNNING, service.state());
59 service.stop().get();
60 assertTrue(service.shutDownCalled);
61 assertEquals(Service.State.TERMINATED, service.state())
67 NullService service = new NullService(); local
77 Service service = new NullService() { local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
fi.w1.wpa_supplicant1.service.in 1 [D-BUS Service]
5 SystemdService=wpa_supplicant.service
fi.epitest.hostap.WPASupplicant.service.in 1 [D-BUS Service]
5 SystemdService=wpa_supplicant.service
  /external/openssh/contrib/redhat/
sshd.pam 2 auth required pam_stack.so service=system-auth
4 account required pam_stack.so service=system-auth
5 password required pam_stack.so service=system-auth
6 session required pam_stack.so service=system-auth
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
package.html 3 Provides classes for ICC Toolkit Service (CAT).
  /external/freetype/src/base/
fttype1.c 36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_info )
42 error = service->ps_get_font_info( face, afont_info );
55 FT_Service_PsInfo service = NULL; local
60 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
62 if ( service && service->ps_has_glyph_names )
63 result = service->ps_has_glyph_names( face );
81 FT_Service_PsInfo service = NULL; local
102 FT_Service_PsInfo service = NULL; local
    [all...]
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...]
  /frameworks/native/libs/binder/
AppOpsManager.cpp 34 sp<IAppOpsService> service = mService; local
35 while (service == NULL || !service->asBinder()->isBinderAlive()) {
38 // Wait for the app ops service to come back...
41 ALOGI("Waiting for app ops service");
43 ALOGW("Waiting too long for app ops service, giving up");
48 service = interface_cast<IAppOpsService>(binder);
49 mService = service;
53 return service;
58 sp<IAppOpsService> service = getService() local
63 sp<IAppOpsService> service = getService(); local
68 sp<IAppOpsService> service = getService(); local
73 sp<IAppOpsService> service = getService(); local
81 sp<IAppOpsService> service = getService(); local
88 sp<IAppOpsService> service = getService(); local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TestService.java 3 import android.app.Service;
9 class TestService extends Service implements ServiceConnection {
11 IBinder service; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) {
22 this.service = service;
ServiceTest.java 11 import android.app.Service;
27 MyService service = new MyService(); local
28 service.registerReceiver(new AppWidgetProvider(), new IntentFilter());
29 service.onDestroy();
34 MyService service = new MyService(); local
39 service.onDestroy(); // should not throw exception
44 MyService service = new MyService(); local
46 service.unbindService(conn);
51 MyService service = new MyService(); local
52 shadowOf(service).setUnbindServiceShouldThrowIllegalArgument(true)
60 MyService service = new MyService(); local
    [all...]
  /frameworks/ml/bordeaux/service/res/values/
strings.xml 21 <string name="local_service_started">Local service has started</string>
22 <string name="local_service_stopped">Local service has stopped</string>
23 <string name="local_service_label">Sample Local Service</string>
25 <string name="activity_local_service_controller">App/Service/Local Service Controller</string>
28 <string name="start_service">Start Service</string>
29 <string name="stop_service">Stop Service</string>
31 <string name="activity_local_service_binding">App/Service/Local Service Binding</string>
33 service. Notice how it automatically starts for you, and play around with th
    [all...]
  /frameworks/base/packages/FakeOemFeatures/
AndroidManifest.xml 16 <service android:name=".FakeCoreService" android:process=":core"
17 android:label="Fake OEM Core Service" />
18 <service android:name=".FakeCoreService2" android:process=":core2"
19 android:label="Fake OEM Core Service Also" />
20 <service android:name=".FakeCoreService3" android:process=":core3"
21 android:label="Fake OEM Core Service Me Too" />
22 <service android:name=".FakeBackgroundService" android:process=":background"
23 android:label="Fake OEM Bg Service" />
  /bootable/diskinstaller/
init.rc 23 service ueventd /sbin/ueventd
26 service installer /system/bin/installer -p /dev/block/sdb2
30 service logcat /system/bin/logcat
33 service console /system/bin/sh
  /external/sepolicy/
drmserver.te 1 # drmserver - DRM service
  /system/bluetooth/data/
network.conf 1 # Configuration file for the network service
  /external/jmdns/src/javax/jmdns/
ServiceListener.java 10 * Listener for service updates.
16 * A service has been added.<br/>
17 * <b>Note:</b>This event is only the service added event. The service info associated with this event does not include resolution information.<br/>
24 * Please note that service resolution may take a few second to resolve.
28 * The ServiceEvent providing the name and fully qualified type of the service.
33 * A service has been removed.
36 * The ServiceEvent providing the name and fully qualified type of the service.
41 * A service has been resolved. Its details are now available in the ServiceInfo record.<br/>
42 * <b>Note:</b>This call back will never be called if the service does not resolve.<br/>
    [all...]
ServiceInfo.java 16 * The fully qualified service name is build using up to 5 components with the following structure:
25 * <li>&lt;servicedomain&gt;.&lt;parentdomain&gt;: This is the domain scope of the service typically "local.", but this can also be something similar to "in-addr.arpa." or "ip6.arpa."</li>
28 * <li>&lt;Instance&gt;: This is the service name</li>
67 * Construct a service description for registering with JmDNS.
70 * fully qualified service type name, such as <code>_http._tcp.local.</code>.
72 * unqualified service instance name, such as <code>foobar</code>
74 * the local port on which the service runs
76 * string describing the service
77 * @return new service info
84 * Construct a service description for registering with JmDNS
    [all...]
ServiceTypeListener.java 10 * Listener for service types.
16 * A new service type was discovered.
19 * The service event providing the fully qualified type of the service.
24 * A new subtype for the service type was discovered.
31 * The service event providing the fully qualified type of the service with subtype.
  /sdk/templates/other/Service/root/src/app_package/
Service.java.ftl 3 import android.app.Service;
7 public class ${className} extends Service {
13 // TODO: Return the communication channel to the 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
101 IBinder service = sCache.get(name); local
    [all...]

Completed in 1807 milliseconds

1 2 3 4 5 6 7 8 91011>>