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

1 23 4 5 6 7 8 91011>>

  /frameworks/native/cmds/service/
Android.mk 5 service.cpp
14 LOCAL_MODULE:= service
service.cpp 33 static String16 get_interface_name(sp<IBinder> service)
35 if (service != NULL) {
37 status_t err = service->transact(IBinder::INTERFACE_TRANSACTION, data, &reply);
63 aerr << "service: Unable to get default service manager!" << endl;
81 aerr << "service: Unknown option -" << ic << endl;
94 sp<IBinder> service = sm->checkService(String16(argv[optind])); local
95 aout << "Service " << argv[optind] <<
96 (service == NULL ? ": not found" : ": found") << endl;
98 aerr << "service: No service specified for check" << endl
108 sp<IBinder> service = sm->checkService(name); local
118 sp<IBinder> service = sm->checkService(String16(argv[optind++])); local
    [all...]
  /sdk/templates/other/Service/root/
AndroidManifest.xml.ftl 4 <service android:name=".${className}"
7 </service>
  /external/chromium/chrome/browser/webdata/
token_service_table_unittest.cc 45 std::string service; local
47 service = "testservice";
54 EXPECT_TRUE(db.GetTokenServiceTable()->SetTokenForService(service,
58 EXPECT_EQ(out_map.find(service)->second, "pepperoni");
68 EXPECT_TRUE(db.GetTokenServiceTable()->SetTokenForService(service, "cheese"));
70 EXPECT_EQ(out_map.find(service)->second, "cheese");
78 std::string service; local
79 service = "testservice";
84 EXPECT_TRUE(db.GetTokenServiceTable()->SetTokenForService(service,
87 EXPECT_EQ(out_map.find(service)->second, "pepperoni")
    [all...]
token_service_table.cc 17 "service VARCHAR PRIMARY KEY NOT NULL,"
41 bool TokenServiceTable::SetTokenForService(const std::string& service,
47 "(service, encrypted_token) VALUES (?, ?)"));
60 s.BindString(0, service);
69 "SELECT service, encrypted_token FROM token_service"));
78 std::string service; local
79 service = s.ColumnString(0);
80 bool entry_ok = !service.empty() &&
84 (*tokens)[service] = decrypted_token;
  /frameworks/base/core/java/android/os/
SystemService.java 36 * State of a known {@code init} service.
62 /** Request that the init daemon start a named service. */
67 /** Request that the init daemon stop a named service. */
72 /** Request that the init daemon restart a named service. */
78 * Return current state of given service.
80 public static State getState(String service) {
81 final String rawState = SystemProperties.get("init.svc." + service);
91 * Check if given service is {@link State#STOPPED}.
93 public static boolean isStopped(String service) {
94 return State.STOPPED.equals(getState(service));
    [all...]
  /packages/wallpapers/MusicVisualization/
AndroidManifest.xml 36 <service
43 <action android:name="android.service.wallpaper.WallpaperService" />
45 <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube" />
46 </service>
50 <service
57 <action android:name="android.service.wallpaper.WallpaperService" />
59 <meta-data android:name="android.service.wallpaper" android:resource="@xml/vis2" />
60 </service>
63 <service
70 <action android:name="android.service.wallpaper.WallpaperService" /
    [all...]
  /sdk/templates/other/Daydream/root/
AndroidManifest.xml.ftl 10 <!-- This service is only used on devices with API v17+ -->
11 <service
15 <action android:name="android.service.dreams.DreamService" />
22 android:name="android.service.dream"
25 </service>
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
BaseBindingActivity.java 27 import com.android.tools.sdkcontroller.service.ControllerService;
28 import com.android.tools.sdkcontroller.service.ControllerService.ControllerBinder;
29 import com.android.tools.sdkcontroller.service.ControllerService.ControllerListener;
43 * Returns the binder. Activities can use that to query the controller service.
54 * This automatically binds to the service, starting it as needed.
56 * Since on resume we automatically bind to the service, the {@link ServiceConnection}
58 * Derived classes that need to initialize anything that is related to the service
60 * <em>not</em> in {@link #onResume()} -- since binding to the service is asynchronous
72 * This automatically unbinds from the service but does not stop it.
83 * Called when binding to the service to get the activity's {@link ControllerListener}
140 Intent service = new Intent(this, ControllerService.class); local
    [all...]
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 26 * A service-provider loader.
28 * <p>A service provider is a factory for creating all known implementations of a particular
57 * for (MyService service : ServiceLoader<MyService>.load(MyService.class)) {
58 * if (service.supports(o)) {
59 * return service.handle(o);
64 * <p>Note that each iteration creates new instances of the various service implementations, so
69 * @param <S> the service class or interface
73 private final Class<S> service; field in class:ServiceLoader
77 private ServiceLoader(Class<S> service, ClassLoader classLoader) {
78 // It makes no sense for service to be null
187 private final Class<S> service; field in class:ServiceLoader.ServiceIterator
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_change_registrar_unittest.cc 40 MockPrefService* service() const { return service_.get(); } function in class:PrefChangeRegistrarTest
54 registrar.Init(service());
57 EXPECT_CALL(*service(),
59 EXPECT_CALL(*service(),
66 Mock::VerifyAndClearExpectations(service());
67 EXPECT_CALL(*service(),
69 EXPECT_CALL(*service(),
77 Mock::VerifyAndClearExpectations(service());
82 registrar.Init(service());
85 EXPECT_CALL(*service(),
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssertedServiceHeader.java 12 * This software is provided by NIST as a service and is expressly
35 * PAssertedService = "P-Asserted-Service"
38 * PAssertedService-value = Service-ID *(COMMA Service-ID)
42 * Service-ID = "urn:urn-7:" urn-service-id
43 * urn-service-id = top-level *("." sub-service-id)
45 * sub-service-id = let-dig [ *let-dig ]
48 * Egs: P-Asserted-Service: urn:urn-7:3gpp-service.exampletelephony.version
    [all...]
PPreferredServiceHeader.java 12 * This software is provided by NIST as a service and is expressly
35 * PPreferredService = "P-Preferred-Service"
38 * PPreferredService-value = Service-ID *(COMMA Service-ID)
42 * Service-ID = "urn:urn-7:" urn-service-id
43 * urn-service-id = top-level *("." sub-service-id)
45 * sub-service-id = let-dig [ *let-dig ]
48 * Egs: P-Preferred-Service: urn:urn-7:3gpp-service.exampletelephony.version
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 34 * Provides Bluetooth A2DP profile, as a service in the Bluetooth application.
87 Log.d(TAG, "getA2dpService(): service is NULL");
89 Log.d(TAG,"getA2dpService(): service is not available");
102 Log.d(TAG, "setA2dpService(): service not available");
104 Log.d(TAG,"setA2dpService(): service is cleaning up");
213 A2dpService service = getService(); local
214 if (service == null) return false;
215 return service.connect(device);
219 A2dpService service = getService(); local
220 if (service == null) return false
225 A2dpService service = getService(); local
231 A2dpService service = getService(); local
237 A2dpService service = getService(); local
243 A2dpService service = getService(); local
249 A2dpService service = getService(); local
255 A2dpService service = getService(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ServiceTest.java 120 public void onServiceConnected(ComponentName name, IBinder service) {
143 public void onServiceConnected(ComponentName name, IBinder service) {
149 service.transact(SET_REPORTER_CODE, data, null, 0);
191 void startExpectResult(Intent service) {
192 startExpectResult(service, new Bundle());
195 void startExpectResult(Intent service, Bundle bundle) {
201 getContext().startService(new Intent(service).putExtras(bundle));
202 waitForResultOrThrow(5 * 1000, "service to start first time");
205 getContext().startService(new Intent(service).putExtras(bundle));
206 waitForResultOrThrow(5 * 1000, "service to start second time")
    [all...]
  /frameworks/base/docs/html/google/backup/
signup.jd 1 page.title=Register for Android Backup Service
8 register your application with Android Backup Service in order to backup your app's data
10 Service Key that verifies your application and allows backup when
11 Android Backup Service is available on the user's device. Registration with Android Backup Service
14 <p>A single Backup Service Key is valid for only the application with which you register using the
15 form below. If you have multiple applications for which you would like a Backup Service Key, then
16 you must register each application to receive a unique Backup Service Key for each one.</p>
18 <p>For more information about developing with Android Backup Service, read the <a
21 <p>Before you can register with Android Backup Service,
    [all...]
  /external/chromium/chrome/browser/
background_application_list_model_unittest.cc 104 ExtensionService* service = profile_->GetExtensionService(); local
105 ASSERT_TRUE(service);
106 ASSERT_TRUE(service->is_ready());
107 ASSERT_TRUE(service->extensions());
108 ASSERT_TRUE(service->extensions()->empty());
118 ASSERT_TRUE(service->extensions() != NULL);
119 ASSERT_EQ(0U, service->extensions()->size());
123 service->AddExtension(ext1);
124 ASSERT_EQ(1U, service->extensions()->size());
127 service->AddExtension(bgapp1)
181 ExtensionService* service = profile_->GetExtensionService(); local
    [all...]
  /external/jmdns/src/javax/jmdns/
JmmDNS.java 148 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS.
153 * fully qualified service type, such as <code>_http._tcp.local.</code> .
155 * unqualified service name, such as <code>foobar</code> .
156 * @return list of service info. If no service info is found the list is empty.
162 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS.
167 * full qualified service type, such as <code>_http._tcp.local.</code> .
169 * unqualified service name, such as <code>foobar</code> .
172 * @return list of service info. If no service info is found the list is empty
    [all...]
  /frameworks/base/docs/html/training/connect-devices-wirelessly/
nsd.jd 1 page.title=Using Network Service Discovery
17 <li><a href="#register">Register Your Service on the Network</a></li>
20 <li><a href="#teardown">Unregister Your Service on Application Close</a></li>
40 <p>Adding Network Service Discovery (NSD) to your app allows your users to
51 <h2 id="register">Register Your Service on the Network</h2>
58 <p>To register your service on the local network, first create a {@link
61 service. </p>
77 <p>This code snippet sets the service name to "NsdChat".
79 local services. Keep in mind that the name must be unique for any service on the
82 them changes the service name automatically, to something like "NsdCha
    [all...]
  /system/core/libsysutils/src/
ServiceManager.cpp 6 #define LOG_TAG "Service"
13 /* The service name should not exceed SERVICE_NAME_MAX to avoid
16 * - Starting a service is done by writing its name to the "ctl.start"
18 * the service for us.
20 * - Stopping the service is done by writing its name to "ctl.stop"
23 * - Reading the status of a service is done by reading the property
27 * the service by writing to ctl.start/stop, but you won't be able to
33 /* The maximum amount of time to wait for a service to start or stop,
37 /* The minimal sleeping interval between checking for the service's state
43 SLOGE("Service name '%s' is too long", name)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/chromium/chrome/common/net/gaia/
gaia_constants.cc 15 // Service name for Gaia. Used to convert to cookie auth.
17 // Service name for Gaia Contacts API. API is used to get user's image.
19 // Service name for sync.
21 // Service name for XMPP Google Talk.
23 // Service name for remoting.
25 // Service name for cloud print.
27 // Service name for device management (cloud-based policy) server.
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 33 * per service type and synchronize on that instance during calls to
35 * and Service Provider Interface (SPI) results. Retreiving the
80 * Service name such as Cipher or SSLContext
98 private final Provider.Service service; field in class:Engine.ServiceCacheEntry
102 Provider.Service service) {
105 this.service = service;
121 * @param service
138 Provider.Service service; local
168 Provider.Service service = provider.getService(serviceName, algorithm); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
33 VALUE Service-Type Login 1
34 VALUE Service-Type Framed 2
35 VALUE Service-Type Callback-Login 3
36 VALUE Service-Type Callback-Framed 4
37 VALUE Service-Type Exec-User 7
  /frameworks/support/v4/java/android/support/v4/app/
ServiceCompat.java 20 * Helper for accessing features in {@link android.app.Service}
30 * Constant to return from {@link android.app.Service#onStartCommand}: if this
31 * service's process is killed while it is started (after returning from
32 * {@link android.app.Service#onStartCommand}), then leave it in the started
34 * re-create the service. Because it is in the started state, it will
35 * guarantee to call {@link android.app.Service#onStartCommand} after creating
36 * the new service instance; if there are not any pending start commands to be
37 * delivered to the service, it will be called with a null intent
41 * and stopped to run for arbitrary periods of time, such as a service

Completed in 1011 milliseconds

1 23 4 5 6 7 8 91011>>