HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 26 - 50 of 1791) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/core/adb/
adb_client.h 6 /* connect to adb, connect to the named service, and return
7 ** a valid fd for interacting with that service upon success
10 int adb_connect(const char *service);
11 int _adb_connect(const char *service);
13 /* connect to adb, connect to the named service, return 0 if
14 ** the connection succeeded AND the service returned OKAY
16 int adb_command(const char *service);
18 /* connect to adb, connect to the named service, return
22 char *adb_query(const char *service);
  /frameworks/native/libs/binder/
AppOpsManager.cpp 29 static const sp<IBinder>& getToken(const sp<IAppOpsService>& service) {
32 gToken = service->getToken(new BBinder());
46 sp<IAppOpsService> service = mService; local
47 while (service == NULL || !service->asBinder()->isBinderAlive()) {
50 // Wait for the app ops service to come back...
53 ALOGI("Waiting for app ops service");
55 ALOGW("Waiting too long for app ops service, giving up");
60 service = interface_cast<IAppOpsService>(binder);
61 mService = service;
70 sp<IAppOpsService> service = getService(); local
75 sp<IAppOpsService> service = getService(); local
80 sp<IAppOpsService> service = getService(); local
86 sp<IAppOpsService> service = getService(); local
94 sp<IAppOpsService> service = getService(); local
101 sp<IAppOpsService> service = getService(); local
    [all...]
  /cts/tests/tests/dreams/src/android/service/dreams/cts/
DreamsFeatureTest.java 17 package android.service.dreams.cts;
20 import android.service.dreams.DreamService;
21 import android.service.dreams.IDreamManager;
28 IDreamManager service = IDreamManager.Stub.asInterface( local
30 assertTrue("Dream manager service missing", service != null);
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_controller_browsertest.cc 43 AppListService* service = AppListService::Get(); local
44 ASSERT_FALSE(service->IsAppListVisible());
45 service->ShowForProfile(browser()->profile());
46 ASSERT_TRUE(service->IsAppListVisible());
47 service->DismissAppList();
48 ASSERT_FALSE(service->IsAppListVisible());
61 AppListService* service = AppListService::Get(); local
62 ASSERT_FALSE(service->IsAppListVisible());
63 service->ShowForProfile(browser()->profile());
64 ASSERT_TRUE(service->IsAppListVisible())
86 AppListService* service = AppListService::Get(); local
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
fttype1.c 36 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->ps_has_glyph_names( face );
81 FT_Service_PsInfo service = NULL; local
    [all...]
ftmm.c 70 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...]
ftfstype.c 36 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/chromium_org/chrome/browser/ui/global_error/
global_error_service_unittest.cc 93 // Test adding errors to the global error service.
95 scoped_ptr<GlobalErrorService> service(new GlobalErrorService(NULL));
96 EXPECT_EQ(0u, service->errors().size());
99 service->AddGlobalError(error1);
100 EXPECT_EQ(1u, service->errors().size());
101 EXPECT_EQ(error1, service->errors()[0]);
104 service->AddGlobalError(error2);
105 EXPECT_EQ(2u, service->errors().size());
106 EXPECT_EQ(error1, service->errors()[0]);
107 EXPECT_EQ(error2, service->errors()[1])
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractExecutionThreadServiceTest.java 58 WaitOnRunService service = new WaitOnRunService(); local
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 = new WaitOnRunService(); local
103 WaitOnRunService service = new WaitOnRunService(); local
169 ThrowOnStartUpService service = new ThrowOnStartUpService(); local
204 ThrowOnRunService service = new ThrowOnRunService(); local
215 ThrowOnRunService service = new ThrowOnRunService(); local
247 ThrowOnShutDown service = new ThrowOnShutDown(); local
279 TimeoutOnStartUp service = new TimeoutOnStartUp(); local
    [all...]
AbstractScheduledServiceTest.java 20 import com.google.common.util.concurrent.Service.State;
60 NullService service = new NullService(); local
61 service.startAndWait();
63 service.stopAndWait();
76 TestService service = new TestService(); local
77 service.runException = new Exception();
78 service.startAndWait();
79 service.runFirstBarrier.await();
80 service.runSecondBarrier.await();
87 assertEquals(service.runException, e.getCause().getCause())
93 TestService service = new TestService(); local
106 TestService service = new TestService(); local
122 TestService service = new TestService(); local
136 TestService service = new TestService(); local
154 TestService service = new TestService(); local
316 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService(); local
329 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService() { local
386 TestFailingCustomScheduledService service = new TestFailingCustomScheduledService(); local
    [all...]
  /external/freetype/src/base/
ftmm.c 72 FT_Service_MultiMasters service; local
75 error = ft_face_get_mm_service( face, &service );
79 if ( service->get_mm )
80 error = service->get_mm( face, amaster );
94 FT_Service_MultiMasters service; local
97 error = ft_face_get_mm_service( face, &service );
101 if ( service->get_mm_var )
102 error = service->get_mm_var( face, amaster );
117 FT_Service_MultiMasters service; local
120 error = ft_face_get_mm_service( face, &service );
140 FT_Service_MultiMasters service; local
163 FT_Service_MultiMasters service; local
189 FT_Service_MultiMasters service; local
    [all...]
ftwinfnt.c 31 FT_Service_WinFnt service; local
39 FT_FACE_LOOKUP_SERVICE( face, service, WINFNT );
41 if ( service != NULL )
43 error = service->get_header( face, header );
ftfstype.c 36 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 ) &&
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 33 * per service type and synchronize on that instance during calls to
35 * and Service Provider Interface (SPI) results. Retreiving the
80 * Service name such as Cipher or SSLContext
98 private final Provider.Service service; field in class:Engine.ServiceCacheEntry
102 Provider.Service service) {
105 this.service = service;
121 * @param service
138 Provider.Service service; local
168 Provider.Service service = provider.getService(serviceName, algorithm); local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_disabled_infobar_delegate.h 15 void ShowExtensionDisabledUI(ExtensionService* service, Profile* profile,
19 void ShowExtensionDisabledDialog(ExtensionService* service, Profile* profile,
  /frameworks/base/core/java/android/service/dreams/
IDreamService.aidl 17 package android.service.dreams;
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
WindowManagerGlobal_Delegate.java 40 public static void setWindowManagerService(IWindowManager service) {
41 sService = service;
  /frameworks/base/core/java/android/service/notification/
INotificationListener.aidl 17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperService.aidl 17 package android.service.wallpaper;
19 import android.service.wallpaper.IWallpaperConnection;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceConstants.java 17 package com.android.emailcommon.service;
  /external/chromium_org/chrome/browser/signin/
token_service_unittest.cc 5 // This file defines a unit test for the profile's token service.
81 service()->Initialize("test", profile_.get());
90 service()->UpdateCredentials(credentials_);
107 service()->LoadTokensIntoMemory(*db_tokens, memory_tokens);
112 EXPECT_EQ(details.service(), service_name);
121 EXPECT_FALSE(service()->HasTokenForService("nonexistent service"));
122 EXPECT_FALSE(service()->TokensLoadedFromDB());
126 EXPECT_FALSE(service()->HasTokenForService("nonexistent service"));
295 const std::string& service = *i; local
298 std::string service = GaiaConstants::kGaiaOAuth2LoginRefreshToken; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
wallpaper_manager_util.cc 25 ExtensionService* service = local
27 if (!service)
31 service->GetExtensionById(extension_misc::kWallpaperManagerId, false);
  /frameworks/base/services/common_time/
main.cpp 18 * A service that exchanges time synchronization information between
33 sp<CommonTimeServer> service = new CommonTimeServer();
34 if (service == NULL)
38 service->run("CommonTimeServer", ANDROID_PRIORITY_NORMAL);
  /external/qemu/proxy/
proxy_http.c 22 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,
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/android_webview/native/
aw_form_database.cc 22 android_webview::AwFormDatabaseService* service = local
25 DCHECK(service);
26 return service->get_autofill_webdata_service();
36 AwFormDatabaseService* service = context->GetFormDatabaseService(); local
37 return service;

Completed in 1327 milliseconds

12 3 4 5 6 7 8 91011>>