Searched refs:service (Results 26 - 50 of 1072) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/api/mdns/
H A Ddns_sd_device_lister.cc16 DnsSdService* service) {
17 service->service_name = service_description.service_name;
18 service->service_host_port = service_description.address.ToString();
20 service->ip_address = net::IPAddressToString(
23 service->service_data = service_description.metadata;
25 VLOG(1) << "Found " << service->service_name << ", "
26 << service->service_host_port << ", "
27 << service->ip_address;
48 VLOG(1) << "Started device lister for service type "
52 VLOG(1) << "Discovery new devices for service typ
15 FillServiceInfo(const ServiceDescription& service_description, DnsSdService* service) argument
59 DnsSdService service; local
[all...]
H A Ddns_sd_registry_unittest.cc103 DnsSdService service; local
104 service.service_name = "_myDevice." + service_type;
105 service.ip_address = ip_address1;
111 // Add first service.
112 service_list.push_back(service);
117 service.ip_address = ip_address2;
118 service_list.push_back(service);
122 service.ip_address = ip_address1;
123 registry_->GetDelegate()->ServiceChanged(service_type, true, service);
124 service
132 DnsSdService service; local
155 DnsSdService service; local
180 DnsSdService service; local
209 DnsSdService service; local
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dtab_restore_service_observer.h15 virtual void TabRestoreServiceChanged(TabRestoreService* service) = 0;
19 virtual void TabRestoreServiceDestroyed(TabRestoreService* service) = 0;
22 virtual void TabRestoreServiceLoaded(TabRestoreService* service) {} argument
/external/qemu/proxy/
H A Dproxy_http.c22 http_service_free( HttpService* service )
25 if (service->footer != service->footer0)
26 g_free(service->footer);
27 g_free(service);
32 http_service_connect( HttpService* service, argument
41 if (sock_address_equal( address, &service->server_addr ))
50 return http_rewriter_connect(service, address);
53 return http_connector_connect(service, address);
65 HttpService* service; local
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dprofile_sync_service_harness.cc43 bool HasAuthError(ProfileSyncService* service) { argument
44 return service->GetAuthError().state() ==
46 service->GetAuthError().state() ==
48 service->GetAuthError().state() ==
54 explicit BackendInitializeChecker(ProfileSyncService* service) argument
55 : SingleClientStatusChangeChecker(service) {}
58 if (service()->backend_mode() != ProfileSyncService::SYNC)
60 if (service()->sync_initialized())
63 if (HasAuthError(service()))
66 if (service()
79 SyncSetupChecker(ProfileSyncService* service) argument
101 AwaitSyncSetupCompletion(ProfileSyncService* service) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftpfr.c29 FT_Service_PfrMetrics service = NULL; local
33 FT_FACE_LOOKUP_SERVICE( face, service, PFR_METRICS );
35 return service;
49 FT_Service_PfrMetrics service; local
55 service = ft_pfr_check( face );
56 if ( service )
58 error = service->get_metrics( face,
105 FT_Service_PfrMetrics service; local
111 service = ft_pfr_check( face );
112 if ( service )
130 FT_Service_PfrMetrics service; local
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftfstype.c36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_extra )
46 if ( !service->ps_get_font_extra( face, &extra ) &&
/external/freetype/src/base/
H A Dftfstype.c36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_extra )
46 if ( !service->ps_get_font_extra( face, &extra ) &&
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractScheduledServiceTest.java60 NullService service = new NullService();
61 service.startAndWait();
63 service.stopAndWait();
76 TestService service = new TestService();
77 service.runException = new Exception();
78 service.startAndWait();
79 service.runFirstBarrier.await();
80 service.runSecondBarrier.await();
87 assertEquals(service.runException, e.getCause().getCause());
89 assertEquals(service
[all...]
/external/chromium_org/sandbox/win/src/
H A Dinterception.h224 // the given service to intercept (INTERCEPTION_SERVICE_CALL), and assumes that
225 // the interceptor is called "TargetXXX", where XXX is the name of the service.
227 // the exported interceptor, following the calling convention of a service call
231 #define MAKE_SERVICE_NAME(service, params) "Target" # service "64"
233 #define MAKE_SERVICE_NAME(service, params) "_Target" # service "@" # params
236 #define ADD_NT_INTERCEPTION(service, id, num_params) \
237 AddToPatchedFunctions(kNtdllName, #service, \
239 MAKE_SERVICE_NAME(service, num_param
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dsync_ui_util_unittest.cc53 void VerifySyncGlobalErrorResult(NiceMock<ProfileSyncServiceMock>* service, argument
57 EXPECT_CALL(*service, HasSyncSetupCompleted())
61 EXPECT_CALL(*service, GetAuthError()).WillRepeatedly(ReturnRef(auth_error));
65 service, &label1, &label2, &label3);
86 NiceMock<ProfileSyncServiceMock> service(profile.get());
88 EXPECT_CALL(service, QueryDetailedSyncStatus(_))
90 EXPECT_CALL(service, IsPassphraseRequired())
92 EXPECT_CALL(service, IsPassphraseRequiredForDecryption())
95 VerifySyncGlobalErrorResult(&service,
106 NiceMock<ProfileSyncServiceMock> service(profil
201 GetDistinctCase(ProfileSyncServiceMock& service, FakeSigninManagerForSyncUIUtilTest* signin, FakeAuthStatusProvider* provider, int caseNumber) argument
[all...]
H A Dabout_sync_util_unittest.cc25 NiceMock<ProfileSyncServiceMock> service(profile.get());
32 EXPECT_CALL(service, HasSyncSetupCompleted())
34 EXPECT_CALL(service, QueryDetailedSyncStatus(_))
37 EXPECT_CALL(service, HasUnrecoverableError())
40 EXPECT_CALL(service, GetLastSyncedTimeString())
44 ConstructAboutInformation(&service));
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_service_interactive_uitest.cc68 AppListService* service = test::GetAppListService(); local
69 ASSERT_FALSE(service->IsAppListVisible());
70 service->ShowForProfile(browser()->profile());
71 ASSERT_TRUE(service->IsAppListVisible());
72 service->DismissAppList();
73 ASSERT_FALSE(service->IsAppListVisible());
81 AppListService* service = test::GetAppListService(); local
82 ASSERT_TRUE(service);
84 AppListControllerDelegate* controller(service->GetControllerDelegate());
88 ASSERT_FALSE(service
115 AppListService* service = test::GetAppListService(); local
164 AppListService* service = test::GetAppListService(); local
230 AppListService* service = test::GetAppListService(); local
253 AppListService* service = test::GetAppListService(); local
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_storage_unittest.cc28 MockAppCacheService service; local
29 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 111));
32 service.storage()->working_set()->GetCache(111));
34 service.storage()->working_set()->RemoveCache(cache.get());
36 EXPECT_TRUE(!service.storage()->working_set()->GetCache(111));
38 // Removing non-existing cache from service should not fail.
44 MockAppCacheService service; local
46 new AppCacheGroup(service.storage(), GURL(), 111));
48 EXPECT_EQ(group.get(), service.storage()->working_set()->GetGroup(GURL()));
50 service
60 MockAppCacheService service; local
81 MockAppCacheService service; local
120 MockAppCacheService service; local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DServiceTest.java27 MyService service = new MyService();
28 service.registerReceiver(new AppWidgetProvider(), new IntentFilter());
29 service.onDestroy();
34 MyService service = new MyService();
39 service.onDestroy(); // should not throw exception
44 MyService service = new MyService();
46 service.unbindService(conn);
51 MyService service = new MyService();
52 shadowOf(service).setUnbindServiceShouldThrowIllegalArgument(true);
55 service
[all...]
/external/bluetooth/bluedroid/bta/sys/
H A Dutl.c184 ** BTA_UTL_SET_COD_ALL - overwrite major, minor, set the bits in service class
185 ** BTA_UTL_INIT_COD - overwrite major, minor, and service class
193 UINT16 service; local
198 BTM_COD_SERVICE_CLASS( service, dev );
211 p_cod->service &= BTM_COD_SERVICE_CLASS_MASK;
212 service = service | p_cod->service;
216 p_cod->service &= BTM_COD_SERVICE_CLASS_MASK;
217 service
[all...]
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dnetwork.cc35 sockaddr_in service; local
36 service.sin_family = AF_INET;
37 service.sin_addr.s_addr = inet_addr("127.0.0.1");
38 service.sin_port = htons(88);
40 if (bind(listen_socket, reinterpret_cast<SOCKADDR*>(&service),
41 sizeof(service)) == SOCKET_ERROR) {
/external/chromium_org/chrome/browser/printing/cloud_print/
H A Dcloud_print_proxy_service_factory.cc33 CloudPrintProxyService* service = local
35 service->Initialize();
37 return service;
/external/chromium_org/chrome/browser/signin/
H A Dfake_account_tracker_service.cc15 FakeAccountTrackerService* service = new FakeAccountTrackerService(); local
16 service->Initialize(
20 return service;
/external/chromium_org/chrome/browser/ui/ash/
H A Dchrome_new_window_delegate.cc22 TabRestoreService* service = TabRestoreServiceFactory::GetForProfile(profile); local
23 service->RestoreMostRecentEntry(NULL, chrome::HOST_DESKTOP_TYPE_ASH);
45 TabRestoreService* service)
48 tab_restore_service_(service) {
58 virtual void TabRestoreServiceChanged(TabRestoreService* service) OVERRIDE {
61 virtual void TabRestoreServiceDestroyed(TabRestoreService* service) OVERRIDE {
66 virtual void TabRestoreServiceLoaded(TabRestoreService* service) OVERRIDE {
112 TabRestoreService* service =
114 if (!service)
117 if (service
43 TabRestoreHelper(ChromeNewWindowDelegate* delegate, Profile* profile, TabRestoreService* service) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/password_manager_internals/
H A Dpassword_manager_internals_ui_browsertest.cc70 password_manager::PasswordManagerInternalsService* service = local
73 ASSERT_TRUE(service);
74 service->ProcessLog("<script> text for testing");
81 password_manager::PasswordManagerInternalsService* service = local
84 ASSERT_TRUE(service);
85 service->ProcessLog("<script> text for testing");
98 password_manager::PasswordManagerInternalsService* service = local
101 ASSERT_TRUE(service);
102 service->ProcessLog("<script> text for testing");
117 password_manager::PasswordManagerInternalsService* service local
[all...]
/external/chromium_org/device/hid/
H A Dhid_service_unittest.cc16 HidService* service = HidService::GetInstance( local
19 ASSERT_TRUE(service);
22 service->GetDevices(&devices);
H A Dinput_service_linux_unittest.cc15 InputServiceLinux* service = InputServiceLinux::GetInstance(); local
17 ASSERT_TRUE(service);
19 service->GetDevices(&devices);
/external/chromium_org/chrome/browser/gpu/
H A Dgpu_mode_manager.cc21 PrefService* service = g_browser_process->local_state(); local
22 DCHECK(service);
23 return service->GetBoolean(prefs::kHardwareAccelerationModePrevious);
27 PrefService* service = g_browser_process->local_state(); local
28 DCHECK(service);
29 service->SetBoolean(prefs::kHardwareAccelerationModePrevious, enabled);
81 PrefService* service = g_browser_process->local_state(); local
82 DCHECK(service);
83 return service->GetBoolean(
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dservice.cc35 #include <google/protobuf/service.h>

Completed in 705 milliseconds

1234567891011>>