HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 1 - 25 of 2084) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/VEX/switchback/
test_hello.c 3 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(0,0)
    [all...]
test_simple.c 3 static void bar ( void*(*service)(int,int) )
8 void entry ( void*(*service)(int,int) )
10 bar(service);
11 service(0,0);
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_observer.h 15 virtual void TabRestoreServiceChanged(TabRestoreService* service) = 0;
19 virtual void TabRestoreServiceDestroyed(TabRestoreService* service) = 0;
22 virtual void TabRestoreServiceLoaded(TabRestoreService* service) {}
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_integration_test_util.h 12 // Wait until the provided |service| is blocked waiting for a passphrase.
13 bool AwaitPassphraseRequired(ProfileSyncService* service);
15 // Wait until the provided |service| has accepted the new passphrase.
16 bool AwaitPassphraseAccepted(ProfileSyncService* service);
18 // Wait until the |service| is fully synced.
20 bool AwaitCommitActivityCompletion(ProfileSyncService* service);
sync_integration_test_util.cc 15 explicit PassphraseRequiredChecker(ProfileSyncService* service)
16 : SingleClientStatusChangeChecker(service) {}
19 return service()->IsPassphraseRequired();
29 explicit PassphraseAcceptedChecker(ProfileSyncService* service)
30 : SingleClientStatusChangeChecker(service) {}
33 return !service()->IsPassphraseRequired() &&
34 service()->IsUsingSecondaryPassphrase();
42 bool AwaitPassphraseRequired(ProfileSyncService* service) {
43 PassphraseRequiredChecker checker(service);
48 bool AwaitPassphraseAccepted(ProfileSyncService* service) {
    [all...]
single_client_status_change_checker.cc 10 ProfileSyncService* service)
12 std::vector<ProfileSyncService*>(1, service)) {}
16 ProfileSyncService* SingleClientStatusChangeChecker::service() { function in class:SingleClientStatusChangeChecker
updated_progress_marker_checker.cc 11 ProfileSyncService* service) : SingleClientStatusChangeChecker(service) {}
23 // The !service()->HasUnsyncedItems() check makes sure that we have nothing to
39 service()->GetLastSessionSnapshot();
41 !service()->HasUnsyncedItems();
  /frameworks/base/core/java/android/service/notification/
IStatusBarNotificationHolder.aidl 17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
Condition.aidl 17 package android.service.notification;
NotificationRankingUpdate.aidl 17 package android.service.notification;
StatusBarNotification.aidl 17 package android.service.notification;
ZenModeConfig.aidl 17 package android.service.notification;
  /packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
package-info.java 17 package com.android.omadm.service;
20 * Main package for {@code DMService}, generic OMA DM client service.
  /system/core/init/
keychords.h 20 struct service;
22 void add_service_keycodes(struct service *svc);
  /external/chromium_org/chrome/browser/sync/
sync_startup_tracker.cc 14 ProfileSyncService* service = ProfileSyncServiceFactory::GetForProfile( local
16 if (service)
17 service->AddObserver(this);
23 ProfileSyncService* service = ProfileSyncServiceFactory::GetForProfile( local
25 if (service)
26 service->RemoveObserver(this);
56 ProfileSyncService* service =
59 // If no service exists or sync is disabled, treat as a startup error.
60 if (!profile->IsSyncAccessible() || !service ||
61 !service->IsSyncEnabledAndLoggedIn())
    [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
102 FT_Service_PsInfo service = NULL; local
    [all...]
  /external/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
102 FT_Service_PsInfo service = NULL; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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
104 FT_Service_PsInfo service = NULL; 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 );
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSessionFactory.java 19 import android.service.textservice.SpellCheckerService.Session;
22 public static Session newInstance(AndroidSpellCheckerService service) {
23 return new AndroidSpellCheckerSession(service);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
getaddrinfo.c 8 int getaddrinfo(const char *node, const char *service,
11 return ki_getaddrinfo(node, service, hints, res);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
HostAuthCompat.aidl 16 package com.android.emailcommon.service;
SearchParams.aidl 16 package com.android.emailcommon.service;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractServiceTest.java 40 NoOpService service = new NoOpService(); local
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)
57 NoOpService service = new NoOpService(); local
67 NoOpService service = new NoOpService(); local
79 NoOpService service = new NoOpService(); local
91 NoOpService service = new NoOpService(); local
104 NoOpService service = new NoOpService(); local
137 ManualSwitchedService service = new ManualSwitchedService(); local
159 ManualSwitchedService service = new ManualSwitchedService(); local
182 ManualSwitchedService service = new ManualSwitchedService(); local
217 ThreadedService service = new ThreadedService(); local
231 ThreadedService service = new ThreadedService(); local
248 ThreadedService service = new ThreadedService(); local
267 ThreadedService service = new ThreadedService(); local
341 NoOpService service = new NoOpService(); local
352 StartThrowingService service = new StartThrowingService(); local
363 StopThrowingService service = new StopThrowingService(); local
375 RunThrowingService service = new RunThrowingService(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
external_install_ui.h 18 void AddExternalInstallError(ExtensionService* service,
21 void RemoveExternalInstallError(ExtensionService* service);
23 bool HasExternalInstallError(ExtensionService* service);
26 bool HasExternalInstallBubble(ExtensionService* service);

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 91011>>