HomeSort by relevance Sort by last modified time
    Searched full:service (Results 651 - 675 of 7469) sorted by null

<<21222324252627282930>>

  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/elements/
TableWithLoadingInfo.java 46 * {@link #addTableData(Collection)}. The former aims to call the service and
53 * the object is the parameter(s) for the service calling in method {@link #callServiceForRetrievingDataToPopulateTable(Object)};
68 * service. This service is called by the method {@link TableWithLoadingInfo#callServiceForRetrievingDataToPopulateTable(Object)}.
70 * to call the asynchronous service: {@link TableWithLoadingInfo#callServiceForRetrievingDataToPopulateTable(Object)}.
224 * by calling the service asynchronously.
226 * @return List of elements retrieved by the service called by the method
498 * This method is responsible for calling the service which will populate the {@link Table}. Note
500 * basically this method should simply call the service for populating the {@link Table}
503 * @param parameters Parameters used by the service
    [all...]
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmActivity.java 33 * When the user clicks the "Start Alarm Service" button, it triggers a repeating countdown
38 * When the user clicks the "Stop Alarm Service" button, it stops the countdown timer.
49 // Contains a handle to the system alarm service
63 mAlarmSender = PendingIntent.getService( // set up an intent for a call to a service
66 new Intent(AlarmActivity.this, AlarmService.class), // A new Service intent
67 0 // flags (none are required for a service)
85 // Gets the handle to the system alarm service
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IsolatedService.java 20 import android.app.Service;
41 * This is an example if implementing a Service that uses android:isolatedProcess.
43 public class IsolatedService extends Service {
46 * service. Note that this is package scoped (instead of private) so
166 IBinder service) {
167 mService = IRemoteService.Stub.asInterface(service);
174 // This is called when the connection with the service has been
  /development/samples/WiFiDirectServiceDiscovery/
_index.html 2 the Wi-Fi Direct Service Discovery APIs. Service discovery on Wi-Fi direct allows applications to discover and enagage with peers that support a certain service.
6 with Wi-Fi Direct Service Discovery APIs: Advertise services, discover services and connect to peers advertising such services</p>
26 <p>If you are developing an application that uses the Wi-Fi Direct Service Discovery APIs, remember that the
29 be installed on devices that are capable of supporting Wi-Fi Direct Service Discovery, remember to add the
48 <p>For more information about using the Wi-Fi Direct Service Discovery APIs, see the <a
  /external/chromium/chrome/browser/extensions/
extension_apitest.cc 178 ExtensionService* service = browser()->profile()->GetExtensionService(); local
180 service->GetExtensionById(last_loaded_extension_id_, false);
200 ExtensionService* service = browser()->profile()->GetExtensionService(); local
203 for (size_t i = 0; i < service->extensions()->size(); ++i) {
206 if (service->extensions()->at(i)->location() == Extension::COMPONENT)
212 static_cast<unsigned>(service->extensions()->size()));
219 const Extension* extension = service->extensions()->at(found_extension_index);
external_extension_provider_impl.h 28 // to |service|, that will deal with the installation. The location
35 VisitorInterface* service,
44 VisitorInterface* service,
  /external/nist-sip/
AndroidManifest.xml 68 <service android:name="com.android.settings.sip.SipAutoRegistration" android:process=":remote">
72 </service>
74 <service android:name="com.android.sip.SipServiceBinder" android:process=":remote">
76 <!-- These are the interfaces supported by the service, which
79 <!-- This is an action code you can use to select the service
81 <action android:name="android.net.sip.SERVICE" />
83 </service>
  /external/qemu/proxy/
proxy_http_connector.c 52 HttpService* service = (HttpService*) conn->root->service; local
60 stralloc_add_bytes(str, service->footer, service->footer_len);
62 if (!socket_connect( root->socket, &service->server_addr )) {
176 http_connector_connect( HttpService* service,
192 proxy_connection_init( conn->root, s, address, service->root,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbConfirmActivity.java 116 IUsbManager service = IUsbManager.Stub.asInterface(b); local
127 service.grantDevicePermission(mDevice, uid);
130 service.setDevicePackage(
133 service.setDevicePackage(mDevice, null, userId);
140 service.grantAccessoryPermission(mAccessory, uid);
143 service.setAccessoryPackage(
146 service.setAccessoryPackage(mAccessory, null, userId);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 18 package com.android.emailcommon.service;
31 * EmailService classes (e.g. ExchangeService for EAS). It wraps the service connect/disconnect
38 * return value wait for a result from the Service (i.e. they should not be called from the UI
54 // Service call timeout (in seconds)
121 // This can happen if the user ended the activity that was using the service
186 * Connection test; return indicates whether the remote service can be connected to
187 * @return the result of trying to connect to the remote service
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 19 import android.app.Service;
36 public class KeyChainServiceTest extends Service {
49 @Override public void onServiceConnected(ComponentName name, IBinder service) {
51 mSupport = IKeyChainServiceTestSupport.Stub.asInterface(service);
64 @Override public void onServiceConnected(ComponentName name, IBinder service) {
66 mService = IKeyChainService.Stub.asInterface(service);
194 Log.d(TAG, "test_KeyChainService bind service");
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeSelector.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;
180 public void onServiceConnected(ComponentName name, IBinder service) {
182 mService = IWallpaperService.Stub.asInterface(service);
199 Log.w(LOG_TAG, "Wallpaper service gone: " + name);
  /external/bluetooth/bluedroid/stack/include/
a2d_api.h 86 #define A2D_BAD_CP_FORMAT 0xE1 /* The format of Content Protection Service Capability/Content Protection Scheme Dependent Data is not correct. */
100 * to hold the result service search. */
115 UINT16 service_len; /* Length, in bytes, of the service name */
117 char * p_service_name; /* Pointer the service name. This character string may not be null terminated.
149 ** string containing the service name.
174 ** perform service discovery and retrieve SRC or SNK SDP
176 ** returned for the first service record found on the
177 ** server that matches the service UUID. The callback
178 ** function will be executed when service discovery is
  /external/chromium/net/tools/flip_server/
create_listener.cc 114 const char* service = NULL; local
117 if (!port.empty()) service = port.c_str();
132 if ((err=getaddrinfo(node, service, &hints, &results))) {
235 const char* service = NULL; local
241 service = port.c_str();
255 if ((err=getaddrinfo(node, service, &hints, &results))) {
257 LOG(ERROR) << "getaddrinfo for (" << node << ":" << service << "): "
268 LOG(ERROR) << "Unable to create socket for (" << node << ":" << service
284 LOG(ERROR) << "Connect was unsuccessful for (" << node << ":" << service
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoTestCase.java 49 * Add renderer service
59 * Add IPP service
69 * Add AFP service
ServReqClearRequestTestCase.java 25 * Service discovery requester test case to check clearServiceRequests() works well.
41 * create some service requests.
99 return "Clear service requests test";
  /cts/tests/tests/app/src/android/app/cts/
ActivityManager_RunningServiceInfoTest.java 34 mRunningServiceInfo.service = mService;
61 assertEquals(mService, values.service);
81 assertEquals(mService, values.service);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/support/
SpiEngUtils.java 45 * @param service
48 public static Provider isSupport(String algorithm, String service) {
50 Provider[] provs = Security.getProviders(service.concat(".")
  /external/chromium/chrome/browser/debugger/
inspectable_tab_proxy.h 43 // |service| is the DebuggerRemoteService instance the DevToolsClient
46 DebuggerRemoteService* service);
66 DebuggerRemoteService* service,
  /external/chromium/chrome/browser/prefs/
scoped_user_pref_update.h 34 ScopedUserPrefUpdateBase(PrefService* service, const char* path);
67 ScopedUserPrefUpdate(PrefService* service, const char* path)
68 : ScopedUserPrefUpdateBase(service, path) {}
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_url.cc 30 // Returns the root service URL for the cloud print service. The default is to
31 // point at the Google Cloud Print service. This can be overridden by the
  /external/dropbear/debian/
dropbear.init 20 test ! -h /var/service/dropbear || \
21 cancel '/var/service/dropbear exists, service is controlled through runit.'
  /external/icu4c/common/
locbased.h 51 * Return locale meta-data for the service object wrapped by this
61 * Return the locale ID for the service object wrapped by this
71 * Set the locale meta-data for the service object wrapped by this
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
ServiceResolver.java 21 * The ServiceResolver will run only if JmDNS is in state ANNOUNCED. REMIND: Prevent having multiple service resolvers for the same type in the timer queue.
51 // newOut = this.addAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(),
75 return "querying service";
  /external/mdnsresponder/mDNSPosix/
Responder.c 138 "%s: Service name is too long (must be 63 characters or less)\n",
145 fprintf(stderr, "%s: Service name can't be empty\n", gProgramName);
153 // Checks that serviceType is a reasonable service type
163 "%s: Service type is too long (must be 63 characters or less)\n",
171 "%s: Service type can't be empty\n",
220 fprintf(stderr, " -n uses 'name' as the service name (required)\n");
221 fprintf(stderr, " -t uses 'type' as the service type (default is '%s')\n", kDefaultServiceType);
222 fprintf(stderr, " -d uses 'domain' as the service domain (default is '%s')\n", kDefaultServiceDomain);
224 fprintf(stderr, " -f reads a service list from 'file'\n");
339 fprintf(stderr, "%s: You must specify a service name to register (-n) or a service file (-f).\n", gProgramName)
    [all...]

Completed in 568 milliseconds

<<21222324252627282930>>