HomeSort by relevance Sort by last modified time
    Searched full:service (Results 2176 - 2200 of 11175) sorted by null

<<81828384858687888990>>

  /sdk/testapps/customViewTest/libWithCustomView/
proguard.cfg 10 -keep public class * extends android.app.Service
  /external/chromium/chrome/browser/cocoa/
install_from_dmg.mm 143 // There needs to be exactly one matching service.
146 LOG(ERROR) << "IOIteratorNext " << bsd_device_name << ": no service";
159 // This is highly unlikely. The filesystem service is expected to be of
160 // class IOMedia. Since the filesystem service's entire ancestor chain
161 // will be checked, though, check the filesystem service's class itself.
179 // Look at each of the filesystem service's ancestor services, beginning
181 // any ancestor service matches the class used for disk images, the
  /external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.cc 91 DeviceManagementService* service,
103 device_management_service_(service),
139 // The client won't do anything if |service| is NULL.
140 DeviceManagementService* service = NULL; local
146 service = connector->device_management_service();
147 service->ScheduleInitialization(0);
162 service,
  /external/chromium_org/gpu/command_buffer/service/
memory_program_cache.cc 5 #include "gpu/command_buffer/service/memory_program_cache.h"
13 #include "gpu/command_buffer/service/disk_cache_proto.pb.h"
14 #include "gpu/command_buffer/service/gl_utils.h"
15 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
16 #include "gpu/command_buffer/service/gpu_switches.h"
17 #include "gpu/command_buffer/service/shader_manager.h"
18 #include "gpu/command_buffer/service/shader_translator.h"
  /external/mdnsresponder/
README.txt 24 Requirement 3 is met by DNS Service Dicsovery (DNS-SD).
51 sending that name to the worldwide DNS service for resolution. This
89 * browse for named instances of a particular type of service
100 this code into their applications, since OS X provides a system service to
115 answers. Because of this, OS X provides a common system service which client
137 application software should implement a system service such as the one
139 that platform should, where possible, make use of that system service
  /frameworks/base/core/java/android/view/inputmethod/
InputMethod.java 39 * an input method, the service component containing it must also supply
44 * with the service; if this is not required, the system will not use that
57 * This is the interface name that a service implementing an input
60 * To be supported, the service must also require the
68 * Name under which an InputMethod service component publishes information
82 * unique token for the session it has with the system service. It is
83 * needed to identify itself with the service to validate its operations.
  /frameworks/base/packages/SystemUI/
AndroidManifest.xml 91 <service android:name="SystemUIService"
97 <service android:name=".screenshot.TakeScreenshotService"
101 <service android:name=".LoadAverageService"
104 <service android:name=".ImageWallpaper"
217 <service
225 <action android:name="android.service.dreams.DreamService" />
228 </service>
  /packages/apps/Calendar/
AndroidManifest.xml 202 <service android:name=".alerts.AlertService" />
204 <service android:name=".alerts.DismissAlarmsService" />
206 <service android:name=".alerts.SnoozeAlarmsService" />
208 <service android:name=".alerts.InitAlarmsService" />
239 <service android:name=".widget.CalendarAppWidgetService"
242 </service>
244 <service android:name=".AsyncQueryServiceHelper" />
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 83 public AbstractSyncAdapter(EasSyncService service) {
84 mService = service;
85 mMailbox = service.mMailbox;
86 mContext = service.mContext;
87 mAccount = service.mAccount;
178 * We apply the batch of CPO's here. We synchronize on the service to avoid thread-nasties,
179 * and we just return quickly if the service has already been stopped.
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java 28 import com.android.emailcommon.service.SyncWindow;
77 EasSyncService service = getTestService(); local
78 EmailSyncAdapter adapter = new EmailSyncAdapter(service);
302 EasSyncService service = getTestService(); local
303 EmailSyncAdapter adapter = new EmailSyncAdapter(service);
358 EasSyncService service = getTestService(); local
359 EmailSyncAdapter adapter = new EmailSyncAdapter(service);
  /system/core/adb/
SERVICES.TXT 207 This service is used to send snapshots of the framebuffer to a client.
210 After the OKAY, the service sends 16-byte binary structure
222 one byte through the channel, which will trigger the service
239 This service is used by DDMS to know which debuggable processes are running
242 Note that there is no single-shot service to retrieve the list only once.
245 This starts the file synchronisation service, used to implement "adb push"
246 and "adb pull". Since this service is pretty complex, it will be detailed
  /frameworks/base/core/java/android/content/
Context.java 73 * {@link android.app.Service}. There are no guarantees that this
88 * {@link android.app.Service}. There are no guarantees that this
136 * Flag for {@link #bindService}: automatically create the service as long
137 * as the binding exists. Note that while this will create the service,
138 * its {@link android.app.Service#onStartCommand}
141 * this still provides you with access to the service object while the
142 * service is created.
146 * consider's the target service's process to be. When set, the only way
147 * for it to be raised was by binding from a service in which case it will
170 * the target service's process to the foreground scheduling priority
    [all...]
  /cts/apps/CtsVerifier/res/values/
strings.xml 184 <string name="ble_client_service_name">Bluetooth LE GATT Client Handler Service</string>
187 <string name="ble_discover_service_name">2. BLE Discover Service</string>
196 <string name="ble_discover_service_info">Verify that the service is discovered when you press the "Discover Service" button.</string>
204 <string name="ble_discover_service">Discover service</string>
218 <string name="ble_server_service_name">Bluetooth LE GATT Server Handler Service</string>
222 <string name="ble_server_add_service">Adding service to BLE server.</string>
355 <string name="nfc_hce_change_default_emulator">Change default payment service (Emulator)</string>
356 <string name="nfc_hce_change_default_reader">Change default payment service (Reader)</string>
370 <string name="nfc_hce_offhost_service_emulator">Off-host service (Emulator)</string
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 5 // This test creates a fake safebrowsing service, where we can inject
180 TestSafeBrowsingBlockingPage(SafeBrowsingService* service,
183 : SafeBrowsingBlockingPage(service, tab_contents, unsafe_resources) {
209 SafeBrowsingService* service,
212 return new TestSafeBrowsingBlockingPage(service, tab_contents,
252 FakeSafeBrowsingService* service = local
257 ASSERT_TRUE(service);
258 service->AddURLResult(url, checkresult);
331 FakeSafeBrowsingService* service = local
336 std::string serialized = service->GetReport()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_tasks.cc 286 ExtensionService* service = local
288 const Extension* extension = service ?
289 service->GetExtensionById(task.app_id, false) : NULL;
388 ExtensionService* service = profile->GetExtensionService(); local
389 if (!service)
392 for (ExtensionSet::const_iterator iter = service->extensions()->begin();
393 iter != service->extensions()->end();
402 !extension_util::IsIncognitoEnabled(extension->id(), service))
446 ExtensionService* service =
454 const Extension* extension = service->GetExtensionById(extension_id, false)
    [all...]
  /external/chromium_org/sandbox/win/src/
sandbox_policy_base.cc 446 bool PolicyBase::SetupService(InterceptionManager* manager, int service) {
447 if (IPC_PING1_TAG == service || IPC_PING2_TAG == service)
450 Dispatcher* dispatch = GetDispatcher(service);
455 return dispatch->SetupService(manager, service);
573 EvalResult PolicyBase::EvalPolicy(int service,
576 if (NULL == policy_->entry[service]) {
577 // There is no policy for this particular service. This is not a big
587 PolicyProcessor pol_evaluator(policy_->entry[service]);
608 // We service IPC_PING_TAG message which is a way to test a round trip of th
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 44 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s,
49 * events implement and register an accessibility service which extends
180 IAccessibilityManager service = IAccessibilityManager.Stub.asInterface(iBinder); local
181 sInstance = new AccessibilityManager(context, service, userId);
191 * @param service An interface to the backing service.
196 public AccessibilityManager(Context context, IAccessibilityManager service, int userId) {
198 mService = service;
233 * the centralized accessibility manager service.
263 // it is possible that this manager is in the same process as the service bu
    [all...]
  /libcore/luni/src/main/java/java/security/
Security.java 355 * cryptographic service. {@code "Signature"}, {@code "Cipher"} and {@code
359 * the case-insensitive name of the service.
361 * cryptographic service, or an empty {@code Set} if {@code
363 * provides the requested service.
372 for (Provider.Service service: provider.getServices()) {
373 if (service.getType().equalsIgnoreCase(serviceName)) {
374 result.add(service.getAlgorithm());
400 public List<String> getAliases(Provider.Service s) {
405 public Provider.Service getService(Provider p, String type)
    [all...]
  /packages/experimental/StrictModeTest/src/com/android/strictmodetest/
StrictModeActivity.java 85 public void onServiceConnected(ComponentName name, IBinder service) {
86 stub = IService.Stub.asInterface(service);
87 Log.v(TAG, "Service connected: " + name);
91 Log.v(TAG, "Service disconnected: " + name);
270 Log.d(TAG, "local service policy: " + policy);
272 Log.d(TAG, "remote service policy: " + policy);
282 Log.d(TAG, "About to do a service dump...");
283 File file = new File("/sdcard/strictmode-service-dump.txt");
294 Log.e(TAG, "Can't dump service", e);
298 Log.d(TAG, "Did service dump.")
    [all...]
  /system/netd/
DnsProxyListener.cpp 52 char* service,
60 mService(service),
195 char* service = argv[2]; local
196 if (strcmp("^", service) == 0) {
197 service = NULL;
199 service = strdup(service);
229 service ? service : "[nullservice]",
236 new DnsProxyListener::GetAddrInfoHandler(cli, name, service, hints, iface, pid, uid
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /developers/build/prebuilts/gradle/CardEmulation/CardEmulationSample/src/main/java/com/example/android/cardemulation/
CardService.java 26 * This is a sample APDU Service which demonstrates how to interface with the card emulation support
43 // AID for our loyalty card service.
72 * service, either as a default or just for the next tap.
87 // If the APDU matches the SELECT AID command for this service,
101 * Build APDU for SELECT AID command. This command indicates which service a reader is
  /developers/samples/android/connectivity/nfc/CardEmulation/CardEmulationSample/src/main/java/com/example/android/cardemulation/
CardService.java 26 * This is a sample APDU Service which demonstrates how to interface with the card emulation support
43 // AID for our loyalty card service.
72 * service, either as a default or just for the next tap.
87 // If the APDU matches the SELECT AID command for this service,
101 * Build APDU for SELECT AID command. This command indicates which service a reader is
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 23 import android.app.Service;
57 public static class BadService extends Service {
65 Log.i(TAG, "in service start -- about to hang");
67 Log.i(TAG, "service hang finished -- stopping and returning");
209 Log.i(TAG, "ANR service pressed -- about to start");
  /development/samples/Support4Demos/res/values/
strings.xml 107 <string name="local_service_broadcaster">Content/Local Service Broadcaster</string>
110 to communicate from a Service to an Activity.</string>
111 <string name="start_service">Start Service</string>
112 <string name="stop_service">Stop Service</string>
117 to keep the device awake while dispatching a broadcast to a service.</string>

Completed in 1540 milliseconds

<<81828384858687888990>>