HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 76 - 100 of 910) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_host.h 25 // class relays this information to the client-side detection service
58 // Used for testing. This function does not take ownership of the service
60 void set_client_side_detection_service(ClientSideDetectionService* service);
62 // Used for testing. This function does not take ownership of the service
64 void set_safe_browsing_service(SafeBrowsingService* service);
  /frameworks/base/core/java/android/service/dreams/
IDreamManager.aidl 17 package android.service.dreams;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SpiEngUtils.java 44 * @param service
47 public static Provider isSupport(String algorithm, String service) {
49 Provider[] provs = Security.getProviders(service.concat(".")
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IAccountService.aidl 17 package com.android.emailcommon.service;
IPolicyService.aidl 16 package com.android.emailcommon.service;
EmailServiceStatus.java 18 package com.android.emailcommon.service;
21 * Definitions of service status codes returned to IEmailServiceCallback's status method
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AccountSyncAdapter.java 10 public AccountSyncAdapter(EasSyncService service) {
11 super(service);
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 86 EasSyncService service = new EasSyncService(); local
87 service.mContext = mContext;
88 service.mMailbox = mailbox;
89 service.mAccount = account;
90 service.mContentResolver = mContext.getContentResolver();
91 return service;
95 EasSyncService service = getTestService(); local
99 return c.newInstance(service);
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 86 EasSyncService service = new EasSyncService(); local
87 service.mContext = mContext;
88 service.mMailbox = mailbox;
89 service.mAccount = account;
90 service.mContentResolver = mContext.getContentResolver();
91 return service;
95 EasSyncService service = getTestService(); local
99 return c.newInstance(service);
  /external/chromium/chrome/browser/extensions/
extension_startup_browsertest.cc 81 ExtensionService* service = browser()->profile()->GetExtensionService(); local
85 for (size_t i = 0; i < service->extensions()->size(); i++)
86 if (service->extensions()->at(i)->location() != Extension::COMPONENT)
91 ASSERT_EQ(expect_extensions_enabled, service->extensions_enabled());
164 ExtensionService* service = browser()->profile()->GetExtensionService(); local
165 for (size_t i = 0; i < service->extensions()->size(); ++i) {
166 if (service->extensions()->at(i)->location() == Extension::COMPONENT)
168 if (service->AllowFileAccess(service->extensions()->at(i))) {
169 service->SetAllowFileAccess(service->extensions()->at(i), false)
    [all...]
extension_browsertest.cc 64 ExtensionService* service = browser()->profile()->GetExtensionService(); local
69 service->LoadExtension(path);
78 service->extensions()->rbegin();
79 iter != service->extensions()->rend(); ++iter) {
90 service->extension_prefs()->OnExtensionInstalled(
92 service->SetIsIncognitoEnabled(extension->id(), incognito_enabled);
93 service->SetAllowFileAccess(extension, fileaccess_enabled);
121 ExtensionService* service = browser()->profile()->GetExtensionService(); local
128 service->LoadComponentExtension(
208 ExtensionService* service = profile->GetExtensionService() local
269 ExtensionService* service = browser()->profile()->GetExtensionService(); local
277 ExtensionService* service = browser()->profile()->GetExtensionService(); local
282 ExtensionService* service = browser()->profile()->GetExtensionService(); local
287 ExtensionService* service = browser()->profile()->GetExtensionService(); local
292 ExtensionService* service = browser()->profile()->GetExtensionService(); local
367 ExtensionService* service = browser()->profile()->GetExtensionService(); local
    [all...]
  /external/chromium/chrome/browser/sessions/
session_restore_browsertest.cc 129 TabRestoreService* service = browser()->profile()->GetTabRestoreService(); local
130 service->ClearEntries();
135 EXPECT_EQ(1U, service->entries().size());
136 ASSERT_EQ(TabRestoreService::WINDOW, service->entries().front()->type);
138 static_cast<TabRestoreService::Window*>(service->entries().front());
141 // Find the SessionID for entry2. Since the session service was destroyed,
148 service->RestoreEntryById(NULL, tab.id, false);
154 EXPECT_EQ(1U, service->entries().size());
155 ASSERT_EQ(TabRestoreService::WINDOW, service->entries().front()->type);
156 window = static_cast<TabRestoreService::Window*>(service->entries().front())
168 TabRestoreService* service = browser()->profile()->GetTabRestoreService(); local
    [all...]
session_service_test_helper.h 27 explicit SessionServiceTestHelper(SessionService* service);
64 void set_service(SessionService* service) { service_ = service; }
66 SessionService* service() { return service_.get(); } function in class:SessionServiceTestHelper
  /external/chromium/chrome/browser/sync/
sync_setup_flow.cc 35 void DisablePasswordSync(ProfileSyncService* service) {
37 service->GetPreferredDataTypes(&types);
39 service->OnUserChoseDatatypes(false, types);
56 SyncSetupFlow* SyncSetupFlow::Run(ProfileSyncService* service,
62 SyncSetupFlow::GetArgsForGaiaLogin(service, &args);
64 SyncSetupFlow::GetArgsForConfigure(service, &args);
74 container, service);
82 void SyncSetupFlow::GetArgsForGaiaLogin(const ProfileSyncService* service,
85 const GoogleServiceAuthError& error = service->GetAuthError();
86 if (!service->last_attempted_user_email().empty())
    [all...]
  /external/chromium/net/proxy/
proxy_service_unittest.cc 119 scoped_refptr<ProxyService> service(
128 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound());
154 scoped_refptr<ProxyService> service(
163 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound());
204 scoped_refptr<ProxyService> service(
211 int rv = service->ResolveProxy(url, &info, &callback, NULL, BoundNetLog());
232 scoped_refptr<ProxyService> service(
239 int rv = service->ResolveProxy(url, &info, &callback1, NULL, BoundNetLog());
261 rv = service->ReconsiderProxyAfterError(url, &info, &callback2, NULL,
290 scoped_refptr<ProxyService> service(
    [all...]
  /external/chromium/chrome/browser/
chrome_content_browser_client.cc 34 ExtensionService* service = profile->GetExtensionService(); local
35 if (service) {
36 bool is_extension_process = service->ExtensionBindingsAllowed(url);
39 const Extension* installed_app = service->GetInstalledApp(url);
  /external/chromium/chrome/browser/search_engines/
util.h 33 // Only pass in a non-NULL value for service if the WebDataService should be
37 WebDataService* service,
  /external/qemu/android/
hw-qemud.h 32 * a single client in the emulated system for a given named service.
34 * this is only used to connect GPS and GSM service clients to the
56 /* A QemudService service is used to connect one or more clients to
71 * service through qemud.
85 /* Register a new client for a given service.
92 extern QemudClient* qemud_client_new( QemudService* service,
115 * system tries to connect to a given qemud service. This should typically
119 QemudService* service,
123 /* A function that will be called when the state of the service should be
126 typedef void (*QemudServiceSave) ( QEMUFile* f, QemudService* service, void* opaque )
    [all...]
  /frameworks/base/core/java/android/webkit/
UrlInterceptHandler.java 44 public CacheResult service(String url, Map<String, String> headers); method in interface:UrlInterceptHandler
  /frameworks/base/services/java/com/android/server/am/
AppBindRecord.java 24 * An association between a service and one of its client applications.
27 final ServiceRecord service; // The running service. field in class:AppBindRecord
29 final ProcessRecord client; // Who has started/bound the service.
35 pw.println(prefix + "service=" + service);
53 service = _service;
61 + " " + service.shortName + ":" + client.processName + "}";
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccServiceTable.java 38 * Returns if the specified service is available.
39 * @param service the service number as a zero-based offset (the enum ordinal)
40 * @return true if the service is available; false otherwise
42 protected boolean isAvailable(int service) {
43 int offset = service / 8;
45 // Note: Enums are zero-based, but the TS service numbering is one-based
46 Log.e(getTag(), "isAvailable for service " + (service + 1) + " fails, max service is "
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
ServiceManager.java 24 * Returns a reference to a service with the given name.
26 * @param name the name of the service to get
27 * @return a reference to the service, or <code>null</code> if the service doesn't exist
34 * Place a new @a service called @a name into the service
37 * @param name the name of the new service
38 * @param service the service object
40 public static void addService(String name, IBinder service) {
    [all...]
  /hardware/ti/wpan/tools/FM/
Android.mk 21 include hardware/ti/wpan/tools/FM/service/Android.mk
23 include hardware/ti/wpan/tools/FM/service/src/jni/Android.mk
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastReceiver.java 17 package com.android.email.service;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastReceiver.java 17 package com.android.exchange.service;

Completed in 862 milliseconds

1 2 34 5 6 7 8 91011>>