Searched refs:service (Results 1 - 25 of 396) sorted by relevance

1234567891011>>

/external/valgrind/main/VEX/switchback/
H A Dtest_hello.c3 static void bar ( void*(*service)(int,int) )
7 service(1, 'h');
8 service(1, 'e');
9 service(1, 'l');
10 service(1, 'l');
11 service(1, 'o');
12 service(1, '\n');
15 void entry ( void*(*service)(int,int) )
17 bar(service);
18 service(
[all...]
H A Dtest_simple.c3 static void bar ( void*(*service)(int,int) )
8 void entry ( void*(*service)(int,int) )
10 bar(service);
11 service(0,0);
/external/freetype/src/base/
H A Dfttype1.c36 FT_Service_PsInfo service = NULL; local
39 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
41 if ( service && service->ps_get_font_info )
42 error = service->ps_get_font_info( face, afont_info );
55 FT_Service_PsInfo service = NULL; local
60 FT_FACE_FIND_SERVICE( face, service, POSTSCRIPT_INFO );
62 if ( service && service->ps_has_glyph_names )
63 result = service
81 FT_Service_PsInfo service = NULL; local
102 FT_Service_PsInfo service = NULL; local
[all...]
H A Dftwinfnt.c31 FT_Service_WinFnt service; local
39 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
41 if ( service != NULL )
43 error = service->get_header( face, header );
H A Dftmm.c70 FT_Service_MultiMasters service; local
73 error = ft_face_get_mm_service( face, &service );
77 if ( service->get_mm )
78 error = service->get_mm( face, amaster );
92 FT_Service_MultiMasters service; local
95 error = ft_face_get_mm_service( face, &service );
99 if ( service->get_mm_var )
100 error = service->get_mm_var( face, amaster );
115 FT_Service_MultiMasters service; local
118 error = ft_face_get_mm_service( face, &service );
138 FT_Service_MultiMasters service; local
161 FT_Service_MultiMasters service; local
187 FT_Service_MultiMasters service; local
[all...]
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 DAbstractServiceTest.java40 NoOpService service = new NoOpService();
41 Assert.assertEquals(Service.State.NEW, service.state());
42 assertFalse(service.isRunning());
43 assertFalse(service.running);
45 service.start();
46 assertEquals(Service.State.RUNNING, service.state());
47 assertTrue(service.isRunning());
48 assertTrue(service.running);
50 service.stop();
51 assertEquals(Service.State.TERMINATED, service
[all...]
H A DAbstractExecutionThreadServiceTest.java58 WaitOnRunService service = new WaitOnRunService();
59 assertFalse(service.startUpCalled);
61 service.start().get();
62 assertTrue(service.startUpCalled);
63 assertEquals(Service.State.RUNNING, service.state());
65 enterRun.await(); // to avoid stopping the service until run() is invoked
67 service.stop().get();
68 assertTrue(service.shutDownCalled);
69 assertEquals(Service.State.TERMINATED, service.state());
75 WaitOnRunService service
[all...]
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...]
H A DAbstractIdleServiceTest.java52 NullService service = new NullService();
53 assertFalse(service.startUpCalled);
55 service.start().get();
56 assertTrue(service.startUpCalled);
57 assertEquals(Service.State.RUNNING, service.state());
59 service.stop().get();
60 assertTrue(service.shutDownCalled);
61 assertEquals(Service.State.TERMINATED, service.state());
67 NullService service = new NullService();
68 assertEquals("NullService [" + Service.State.NEW + "]", service
[all...]
/external/chromium/chrome/browser/sessions/
H A Dtab_restore_service_observer.h15 virtual void TabRestoreServiceChanged(TabRestoreService* service) = 0;
19 virtual void TabRestoreServiceDestroyed(TabRestoreService* service) = 0;
/external/qemu/proxy/
H A Dproxy_http.c22 http_service_free( HttpService* service )
25 if (service->footer != service->footer0)
26 qemu_free(service->footer);
27 qemu_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...]
H A Dproxy_http_int.h29 HttpService* service,
34 HttpService* service,
/external/dbus/bus/
H A Dservices.c53 BusService *service; member in struct:BusOwner
145 BusService *service; local
147 service = _dbus_hash_table_lookup_string (registry->service_hash,
150 return service;
154 _bus_service_find_owner_link (BusService *service, argument
159 link = _dbus_list_get_first_link (&service->owners);
169 link = _dbus_list_get_next_link (&service->owners, link);
187 bus_owner_new (BusService *service, argument
193 result = _dbus_mem_pool_alloc (service->registry->owner_pool);
205 result->service
248 BusService *service; local
327 BusService *service = _dbus_hash_iter_get_value (&iter); local
352 BusService *service = _dbus_hash_iter_get_value (&iter); local
390 BusService *service; local
611 BusService *service; local
693 const char *service = _dbus_hash_iter_get_string_key (&iter); local
709 bus_service_unlink_owner(BusService *service, BusOwner *owner) argument
717 bus_service_unlink(BusService *service) argument
732 bus_service_relink(BusService *service, DBusPreallocatedHash *preallocated) argument
753 BusService *service; /**< service to cancel ownership of */ member in struct:__anon4977
784 add_cancel_ownership_to_transaction(BusTransaction *transaction, BusService *service, BusOwner *owner) argument
813 bus_service_add_owner(BusService *service, DBusConnection *connection, dbus_uint32_t flags, BusTransaction *transaction, DBusError *error) argument
903 BusService *service; member in struct:__anon4978
978 add_restore_ownership_to_transaction(BusTransaction *transaction, BusService *service, BusOwner *owner) argument
1030 bus_service_swap_owner(BusService *service, DBusConnection *connection, BusTransaction *transaction, DBusError *error) argument
1108 bus_service_remove_owner(BusService *service, DBusConnection *connection, BusTransaction *transaction, DBusError *error) argument
1198 bus_service_ref(BusService *service) argument
1208 bus_service_unref(BusService *service) argument
1224 bus_service_get_primary_owners_connection(BusService *service) argument
1237 bus_service_get_primary_owner(BusService *service) argument
1243 bus_service_get_name(BusService *service) argument
1249 bus_service_get_allow_replacement(BusService *service) argument
1263 bus_service_has_owner(BusService *service, DBusConnection *connection) argument
1277 bus_service_list_queued_owners(BusService *service, DBusList **return_list, DBusError *error) argument
[all...]
H A Dservices.h33 typedef void (* BusServiceForeachFunction) (BusService *service,
69 BusService* bus_service_ref (BusService *service);
70 void bus_service_unref (BusService *service);
71 dbus_bool_t bus_service_add_owner (BusService *service,
76 dbus_bool_t bus_service_swap_owner (BusService *service,
80 dbus_bool_t bus_service_remove_owner (BusService *service,
84 dbus_bool_t bus_service_has_owner (BusService *service,
86 BusOwner* bus_service_get_primary_owner (BusService *service);
87 dbus_bool_t bus_service_get_allow_replacement (BusService *service);
88 const char* bus_service_get_name (BusService *service);
[all...]
/external/chromium/chrome/browser/prefs/
H A Dpref_change_registrar_unittest.cc40 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/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/chrome/browser/extensions/
H A Dextension_management_browsertest.cc61 ExtensionService* service = browser()->profile()->GetExtensionService(); local
62 size_t size_before = service->extensions()->size();
71 if (service->extensions()->size() != size_before + 1)
74 service->extensions()->at(size_before)->id(),
77 EXPECT_EQ(size_before, service->extensions()->size());
78 if (service->disabled_extensions()->size() != 1u)
86 ExtensionService* service = browser()->profile()->GetExtensionService(); local
87 const size_t size_before = service->extensions()->size();
90 FilePath old_path = service->extensions()->back()->path();
96 FilePath new_path = service
104 ExtensionService* service = browser()->profile()->GetExtensionService(); local
115 ExtensionService* service = browser()->profile()->GetExtensionService(); local
142 ExtensionService* service = browser()->profile()->GetExtensionService(); local
154 ExtensionService* service = browser()->profile()->GetExtensionService(); local
168 ExtensionService* service = browser()->profile()->GetExtensionService(); local
274 ExtensionService* service = browser()->profile()->GetExtensionService(); local
327 ExtensionService* service = browser()->profile()->GetExtensionService(); local
400 ExtensionService* service = browser()->profile()->GetExtensionService(); local
[all...]
H A Dextension_disabled_infobar_delegate.h15 void ShowExtensionDisabledUI(ExtensionService* service, Profile* profile,
19 void ShowExtensionDisabledDialog(ExtensionService* service, Profile* profile,
/external/chromium/chrome/browser/sync/
H A Dsync_ui_util.h21 // service and constructs messages suitable for showing in UI.
32 // TODO(akalin): audit the use of ProfileSyncService* service below,
33 // and use const ProfileSyncService& service where possible.
36 // by querying |service|.
37 MessageType GetStatusLabels(ProfileSyncService* service,
42 MessageType GetStatusLabelsForNewTabPage(ProfileSyncService* service,
46 MessageType GetStatus(ProfileSyncService* service);
49 bool ShouldShowSyncErrorButton(ProfileSyncService* service);
52 string16 GetSyncMenuLabel(ProfileSyncService* service);
65 // |service| ca
[all...]
H A Dsync_ui_util_unittest.cc18 NiceMock<ProfileSyncServiceMock> service; local
27 EXPECT_CALL(service, HasSyncSetupCompleted())
29 EXPECT_CALL(service, QueryDetailedSyncStatus())
32 EXPECT_CALL(service, unrecoverable_error_detected())
35 EXPECT_CALL(service, GetLastSyncedTimeString())
38 sync_ui_util::ConstructAboutInformation(&service, &strings);
H A Dsync_ui_util.cc36 ProfileSyncService* service, string16* status_label,
45 if (service->GetAuthenticatedUsername().empty())
52 DCHECK(service->GetAuthenticatedUsername().empty());
72 string16 GetSyncedStateStatusLabel(ProfileSyncService* service) { argument
74 string16 user_name(service->GetAuthenticatedUsername());
84 service->GetLastSyncedTimeString());
90 MessageType GetStatusInfo(ProfileSyncService* service, argument
97 if (!service) {
101 if (service->HasSyncSetupCompleted()) {
102 ProfileSyncService::Status status(service
35 GetStatusLabelsForAuthError(const AuthError& auth_error, ProfileSyncService* service, string16* status_label, string16* link_label) argument
184 GetStatusInfoForNewTabPage(ProfileSyncService* service, string16* status_label, string16* link_label) argument
221 GetStatusLabels(ProfileSyncService* service, string16* status_label, string16* link_label) argument
229 GetStatusLabelsForNewTabPage(ProfileSyncService* service, string16* status_label, string16* link_label) argument
238 GetStatus(ProfileSyncService* service) argument
242 ShouldShowSyncErrorButton(ProfileSyncService* service) argument
250 GetSyncMenuLabel(ProfileSyncService* service) argument
264 ProfileSyncService* service = local
327 ConstructAboutInformation(ProfileSyncService* service, DictionaryValue* strings) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dservice.cc35 #include <google/protobuf/service.h>
/external/chromium/chrome/browser/net/gaia/
H A Dtoken_service.h5 // The TokenService will supply authentication tokens for any service that
7 // the token service is expected to call ClientLogin to derive a new SID and
13 // A token service controller like the ChromiumOS login is expected to:
29 // if (IsServiceICareAbout(notification.service())) {
69 TokenAvailableDetails(const std::string& service, argument
71 : service_(service), token_(token) {}
72 const std::string& service() const { return service_; } function in class:TokenService::TokenAvailableDetails
83 TokenRequestFailedDetails(const std::string& service, argument
85 : service_(service), error_(error) {}
86 const std::string& service() cons function in class:TokenService::TokenRequestFailedDetails
[all...]
/external/chromium/chrome/browser/webdata/
H A Dtoken_service_table_unittest.cc45 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)
[all...]

Completed in 545 milliseconds

1234567891011>>