/development/samples/ApiDemos/src/com/example/android/apis/app/ |
LocalServiceActivities.java | 35 * <p>Example of explicitly starting and stopping the local service. 36 * This demonstrates the implementation of a service that runs in the same 59 // Make sure the service is started. It will continue running 61 // the service explicitly specifies our service component, because 72 // service will not actually stop at this point if there are 83 * Example of binding and unbinding to the local service. 84 * This demonstrates the implementation of a service which the client will 85 * bind to, receiving an object through which it can communicate with the service.</p> 97 public void onServiceConnected(ComponentName className, IBinder service) { [all...] |
/development/samples/CubeLiveWallpaper/ |
AndroidManifest.xml | 33 <service 38 <action android:name="android.service.wallpaper.WallpaperService" /> 40 <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube1" /> 41 </service> 43 <service 48 <action android:name="android.service.wallpaper.WallpaperService" /> 50 <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube2" /> 51 </service>
|
/development/samples/MySampleRss/res/values/ |
strings.xml | 3 <string name="menu_option_start">Start RSS Service</string> 4 <string name="menu_option_stop">Stop RSS Service</string>
|
/development/samples/SpellChecker/HelloSpellChecker/ |
_index.html | 1 <p>A simple activity that requests spelling suggestions from a spell checker service, using the <code><a 5 <p>For an example that implements a custom spell checker service, see the <a href="../SampleSpellCheckerService/index.html">Spell Checker</a> sample app.</p>
|
/external/chromium/chrome/browser/extensions/ |
extension_disabled_infobar_delegate.h | 15 void ShowExtensionDisabledUI(ExtensionService* service, Profile* profile, 19 void ShowExtensionDisabledDialog(ExtensionService* service, Profile* profile,
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_url.h | 12 // Centralize URL management for the cloud print service. 21 // These aren't derived from the service, but it makes sense to keep all the
|
/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.cc | 18 SessionServiceTestHelper::SessionServiceTestHelper(SessionService* service) 19 : service_(service) {} 26 service()->RestoreSessionFromCommands(commands, valid_windows); 33 service()->SetTabWindow(window_id, tab_id); 34 service()->SetTabIndexInWindow(window_id, tab_id, visual_index); 36 service()->SetSelectedTabInWindow(window_id, visual_index); 43 service()->SetTabExtensionAppID(window_id, tab_id, extension_app_id); 46 // Be sure and null out service to force closing the file.
|
tab_restore_service_observer.h | 15 virtual void TabRestoreServiceChanged(TabRestoreService* service) = 0; 19 virtual void TabRestoreServiceDestroyed(TabRestoreService* service) = 0;
|
/external/freetype/include/freetype/internal/services/ |
svtteng.h | 5 /* The FreeType TrueType engine query service (specification). */ 30 * SFNT table loading service.
|
/external/jmdns/src/javax/jmdns/ |
NetworkTopologyListener.java | 18 * The NetworkTopologyEvent providing the name and fully qualified type of the service. 26 * The NetworkTopologyEvent providing the name and fully qualified type of the service.
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.merit | 7 ATTRIBUTE Login-LAT-Service 34 string 16 VALUE Service-Type Authenticate-Only 8
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/ |
buildbot.tac | 2 from twisted.application import service 10 application = service.Application('buildmaster')
|
/frameworks/base/core/java/android/os/ |
IServiceManager.java | 32 * Retrieve an existing service called @a name from the 33 * service manager. Blocks for a few seconds waiting for it to be 39 * Retrieve an existing service called @a name from the 40 * service manager. Non-blocking. 45 * Place a new @a service called @a name into the service 48 public void addService(String name, IBinder service, boolean allowIsolated) 57 * Assign a permission controller to the service manager. After set, this
|
/frameworks/base/docs/html/training/accessibility/ |
service.jd | 2 page.title=Developing an Accessibility Service 17 <li><a href="#create">Create Your Accessibility Service</a></li> 18 <li><a href="#configure">Configure Your Accessibility Service</a></li> 35 installed on Android devices. An accessibility service can communicate to the 38 lesson covers how to create an accessibility service, process information 43 <h2 id="create">Create Your Accessibility Service</h2> 44 <p>An accessibility service can be bundled with a normal application, or created 45 as a standalone Android project. The steps to creating the service are the same 68 <p>Like any other service, you also declare it in the manifest file. 70 so that the service is called when applications fire an [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
AccessibilityManagerServiceTest.java | 41 * service. The service itself is interacting with the platform. Note: Testing 42 * the service in full isolation would require significant amount of work for 60 * Timeout used for testing that a service is notified only upon a 66 * The interface used to talk to the tested service. 177 assertTrue("First mock service must be installed", firstMockServiceInstalled); 178 assertTrue("Second mock service must be installed", secondMockServiceInstalled); 187 // enable the mock accessibility service 190 // configure the mock service 191 MockAccessibilityService service = MyFirstMockAccessibilityService.sInstance local 221 MockAccessibilityService service = MyFirstMockAccessibilityService.sInstance; local 251 MockAccessibilityService service = MyFirstMockAccessibilityService.sInstance; local 281 MockAccessibilityService service = MyFirstMockAccessibilityService.sInstance; local [all...] |
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/ |
mcLoadFormat.h | 54 #define MC_SERVICE_HEADER_FLAGS_PERMANENT (1U << 0) /**< Loaded service cannot be unloaded from MobiCore. */ 55 #define MC_SERVICE_HEADER_FLAGS_NO_CONTROL_INTERFACE (1U << 1) /**< Service has no WSM control interface. */ 56 #define MC_SERVICE_HEADER_FLAGS_DEBUGGABLE (1U << 2) /**< Service can be debugged. */ 64 /** Service type. 65 * The service type defines the type of executable. 68 SERVICE_TYPE_ILLEGAL = 0, /**< Service type is invalid. */ 69 SERVICE_TYPE_DRIVER = 1, /**< Service is a driver. */ 70 SERVICE_TYPE_SP_TRUSTLET = 2, /**< Service is a Trustlet. */ 71 SERVICE_TYPE_SYSTEM_TRUSTLET = 3 /**< Service is a system Trustlet. */ 79 MCLF_MEM_TYPE_INTERNAL = 1, /**< Internal memory must be used for executing the service. * [all...] |
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
AccountSyncAdapter.java | 10 public AccountSyncAdapter(EasSyncService service) { 11 super(service);
|
/packages/screensavers/PhotoTable/ |
AndroidManifest.xml | 15 <service android:name="PhotoTableDream" 20 android:name="android.service.dream" 23 <action android:name="android.service.dreams.DreamService" /> 26 </service> 36 <service android:name="FlipperDream" 41 android:name="android.service.dream" 44 <action android:name="android.service.dreams.DreamService" /> 47 </service>
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/ |
AndroidManifestWrongRegs.xml | 14 <service android:name="test.pkg.TestProvider2" /> 17 <service android:name="TestReceiver" />
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/ |
exportactivity4.xml | 14 android:name="com.sample.service.serviceClass" 17 <action android:name="com.sample.service.serviceClass" >
|
exportreceiver1.xml | 14 android:name="com.sample.service.serviceClass" > 16 <action android:name="com.sample.service.serviceClass" >
|
exportreceiver4.xml | 14 android:name="com.sample.service.serviceClass" 17 <action android:name="com.sample.service.serviceClass" >
|
/sdk/manifmerger/tests/src/com/android/manifmerger/data/ |
13_service_dup.xml | 4 # - Acts on activity / activity-alias / service / receiver / provider. 38 <service 42 <service 59 <service 64 <service 71 </service> 74 <service 81 </service> 96 <service 123 <service [all...] |
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/ |
FmRadio.java | 31 * risk. Public API for controlling the FmRadio Service. FmRadio is a proxy 32 * object for controlling the Fm Reception/Transmission Service via IPC. 33 * Creating a FmRadio object will create a binding with the FMRX service. Users 35 * so that this proxy object can unbind from the service. 78 public void onServiceConnected(ComponentName className, IBinder service) { 79 // This is called when the connection with the service has been 80 // established, giving us the service object we can use to 81 // interact with the service. We are communicating with our 82 // service through an IDL interface, so get a client-side 83 // representation of that from the raw service object [all...] |