HomeSort by relevance Sort by last modified time
    Searched full:service (Results 101 - 125 of 7469) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dbus/test/data/valid-service-files-system/
org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess.service.in 1 [D-BUS Service]
  /external/freetype/src/base/
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 );
  /external/openssh/contrib/cygwin/
sshd-inetd 1 # This file can be used to enable sshd as a slave of the inetd service
  /packages/wallpapers/NoiseField/
AndroidManifest.xml 12 <service
18 <action android:name="android.service.wallpaper.WallpaperService" />
20 <meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" />
21 </service>
  /packages/wallpapers/PhaseBeam/
AndroidManifest.xml 11 <service
16 <action android:name="android.service.wallpaper.WallpaperService" />
18 <meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" />
19 </service>
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/
exportactivity1.xml 14 android:name="com.sample.service.serviceClass" >
16 <action android:name="com.sample.service.serviceClass" >
22 android:name="com.sample.service.mainClass" >
24 <action android:name="com.sample.service.mainClass" >
exportservice1.xml 12 <service
15 android:name="com.sample.service.serviceClass"
18 <action android:name="com.sample.service.serviceClass" >
21 </service>
exportservice3.xml 12 <service
14 android:name="com.sample.service.serviceClass"
18 <action android:name="com.sample.service.serviceClass" >
21 </service>
exportservice4.xml 13 <service
15 android:name="com.sample.service.serviceClass"
18 <action android:name="com.sample.service.serviceClass" >
21 </service>
  /sdk/templates/other/Service/
template.xml 5 name="New Service"
6 description="Creates a new service class">
20 help="Whether or not components of other applications can invoke the service or interact with it" />
27 help="Whether or not the service can be instantiated by the system" />
  /system/bluetooth/data/
input.conf 1 # Configuration file for the input service
  /device/ti/panda/
init.omap4pandaboard.rc 44 service bugreport /system/bin/bugmailer.sh -v
51 service pvrsrvinit /vendor/bin/pvrsrvinit
58 service setup_fs /system/bin/setup_fs \
66 #shared transport user space mgr service for Bluetooth, FM and GPS
67 service uim /system/bin/uim-sysfs
73 service sdcard /system/bin/sdcard /data/media /mnt/shell/sdcard0 1023 1023
76 service wpa_supplicant /system/bin/wpa_supplicant -Dnl80211 -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf -dd
81 service dhcpcd_wlan0 /system/bin/dhcpcd -ABKL
85 service iprenew_wlan0 /system/bin/dhcpcd -n
89 service dhcpcd_eth0 /system/bin/dhcpcd -ABK
    [all...]
  /external/chromium/chrome/browser/sync/
sync_ui_util.h 21 // 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| can be NULL
    [all...]
sync_ui_util_unittest.cc 18 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);
  /development/samples/SpellChecker/SampleSpellCheckerService/
_index.html 2 href="../../../../reference/android/service/textservice/SpellCheckerService.html">SpellCheckerService</a></code>
5 "Sample correction" as the spelling correction service. </p>
  /frameworks/base/services/java/com/android/server/am/
AppBindRecord.java 24 * An association between a service and one of its client applications.
27 final ServiceRecord service; // The running service. field in class:AppBindRecord
29 final ProcessRecord client; // Who has started/bound the service.
35 pw.println(prefix + "service=" + service);
53 service = _service;
61 + " " + service.shortName + ":" + client.processName + "}";
  /external/protobuf/python/google/protobuf/
service_reflection.py 31 """Contains metaclasses used to create protocol service and service stub
44 """Metaclass for service classes created at runtime from ServiceDescriptors.
46 Implementations for all methods described in the Service class are added here
50 The protocol compiler currently uses this metaclass to create protocol service
55 class MyProtoService(service.Service):
65 """Creates a message service class.
73 describing this protocol service type.
76 # when a service class is subclassed
    [all...]
  /frameworks/base/docs/html/guide/topics/text/
spell-checker-framework.jd 12 <a href="#SpellCheckImplementation">Implementing a Spell Checker Service</a>
22 Spell Checker Service</a> sample app
35 Text Service APIs offered by the Android platform.
38 To use the framework in your app, you create a special type of Android service that
44 The following diagram shows the lifecycle of the spelling checker service:
49 <strong>Figure 1.</strong> The spelling checker service lifecycle.
53 service. Clients in your app, such as activities or individual UI elements, request a
54 spelling checker session from the service, then use the session to get suggestions for text.
56 app can shut down the spelling checker service at any time.
58 <h2 id="SpellCheckImplementation">Implementing a Spell Checker Service</h2
    [all...]
  /development/samples/Alarm/res/values/
strings.xml 19 This shows how to schedule a repeating alarm that starts a service.</string>
20 <string name="start_alarm_service">Start Alarm Service</string>
21 <string name="stop_alarm_service">Stop Alarm Service</string>
24 <string name="alarm_service_started">The sample service is running.</string>
25 <string name="alarm_service_label">Sample Alarm Service</string>
26 <string name="alarm_service_finished">The sample service is no longer running.</string>
  /external/chromium/chrome/browser/
background_contents_service_unittest.cc 66 void SendOpenedNotification(BackgroundContentsService* service) {
70 service->BackgroundContentsOpened(&details);
112 BackgroundContentsService service(&profile, command_line_.get());
117 BackgroundContentsService service(&profile, command_line_.get());
119 EXPECT_FALSE(service.IsTracked(contents));
120 contents->SendOpenedNotification(&service);
121 EXPECT_TRUE(service.IsTracked(contents));
123 EXPECT_FALSE(service.IsTracked(contents));
129 BackgroundContentsService service(&profile, command_line_.get());
137 contents->SendOpenedNotification(&service);
    [all...]
  /external/dnsmasq/contrib/Solaris10/
README 3 Subject: Solaris 10 service manifest
9 simple home network needs. Since Solaris now uses SMF (Service Management
10 Facility) to manage services I thought I'd create a simple service manifest
11 for the dnsmasq service. The manifest currently assumes that dnsmasq has
15 the dnsmasq service:
19 To confirm that the service is enabled and online:
  /frameworks/base/tests/FrameworkPerf/
AndroidManifest.xml 15 <service android:name="SchedulerService">
16 </service>
17 <service android:name="TestService" android:process=":test">
18 </service>
19 <service android:name="LocalTestService">
20 </service>
  /packages/wallpapers/Basic/
AndroidManifest.xml 68 <service
74 <action android:name="android.service.wallpaper.WallpaperService" />
76 <meta-data android:name="android.service.wallpaper" android:resource="@xml/nexus" />
77 </service>
79 <service
85 <action android:name="android.service.wallpaper.WallpaperService" />
87 <meta-data android:name="android.service.wallpaper" android:resource="@xml/grass" />
88 </service>
90 <service
96 <action android:name="android.service.wallpaper.WallpaperService" /
    [all...]
  /tools/motodev/src/plugins/remote.device/
plugin.properties 22 connectServiceDescription=Service to connect to a remote device
25 disconnectServiceDescription=Service to disconnect from a remote device
27 initServiceName=Init Remote Device Service
28 initServiceDescription=Service to initialize the remote device
41 wirelessDescription=Service to switch the connection mode from USB cable to TCP/IP
42 usbModeDescription=Service to switch the connection mode from TCP/IP to USB cable
  /external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.h 14 // Base class for Factories that take a Profile object and return some service
27 // Associate an already-created |service| with |profile| for this factory.
28 // The service may be a mock, or may be NULL to inhibit automatic creation of
29 // the service by the default function. A mock factory set with
30 // |set_test_factory| will be called instead if the service is NULL.
31 void ForceAssociationBetween(Profile* profile, ProfileKeyedService* service) {
32 Associate(profile, service);
35 // Sets the factory function to use to create mock instances of this service.
37 // |ForceAssociationBetween| has been previously called with a NULL service
54 // Common implementation that maps |profile| to some service object. Deal
    [all...]

Completed in 443 milliseconds

1 2 3 45 6 7 8 91011>>