/external/qemu/android/protocol/ |
attach-ui-impl.c | 14 * Contains the UI-side implementation of the "core-ui-control" service that is 24 /* Descriptor for the UI-side of the "attach-ui" service. */ 29 /* Core connection established for this service. */ 32 /* Socket descriptor for the UI service. */ 52 // Connect to the core-ui-control service. 57 derror("Unable to connect to the attach-UI service: %s\n",
|
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/ |
ImsFrameworkService.java | 19 import android.app.Service; 25 * Example service to handle IMS setup after boot completed event. 33 public class ImsFrameworkService extends Service { 39 Log.d(TAG, "Service starting for intent " + action); 44 stopSelf(); // stop service after handling the action 54 return null; // clients can't bind to this service
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
AdapterService.java | 24 import android.app.Service; 70 public class AdapterService extends Service { 89 private static final int ADAPTER_SERVICE_TYPE=Service.START_STICKY; 103 Log.d(TAG, "getAdapterService(): service not available"); 105 Log.d(TAG,"getAdapterService(): service is cleaning up"); 118 Log.d(TAG, "setAdapterService(): service not available"); 120 Log.d(TAG,"setAdapterService(): service is cleaning up"); 343 Log.w(TAG,"*************service already starting to cleanup... Ignoring cleanup request........."); 444 Log.w(TAG, "Unable to " + (state == BluetoothAdapter.STATE_OFF? "start" : "stop" ) +" service " + 450 Log.w(TAG, (state == BluetoothAdapter.STATE_OFF? "Stopping" : "Starting" ) +" service " 501 AdapterService service = getService(); local 508 AdapterService service = getService(); local 520 AdapterService service = getService(); local 532 AdapterService service = getService(); local 544 AdapterService service = getService(); local 556 AdapterService service = getService(); local 567 AdapterService service = getService(); local 579 AdapterService service = getService(); local 590 AdapterService service = getService(); local 601 AdapterService service = getService(); local 612 AdapterService service = getService(); local 623 AdapterService service = getService(); local 634 AdapterService service = getService(); local 645 AdapterService service = getService(); local 656 AdapterService service = getService(); local 666 AdapterService service = getService(); local 673 AdapterService service = getService(); local 680 AdapterService service = getService(); local 691 AdapterService service = getService(); local 702 AdapterService service = getService(); local 713 AdapterService service = getService(); local 724 AdapterService service = getService(); local 731 AdapterService service = getService(); local 742 AdapterService service = getService(); local 753 AdapterService service = getService(); local 764 AdapterService service = getService(); local 775 AdapterService service = getService(); local 786 AdapterService service = getService(); local 797 AdapterService service = getService(); local 808 AdapterService service = getService(); local 819 AdapterService service = getService(); local 830 AdapterService service = getService(); local 841 AdapterService service = getService(); local 848 AdapterService service = getService(); local 860 AdapterService service = getService(); local 872 AdapterService service = getService(); local 884 AdapterService service = getService(); local 890 AdapterService service = getService(); local 896 AdapterService service = getService(); local [all...] |
/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/bluetooth/bluedroid/stack/include/ |
srvc_api.h | 87 ** Data structure used by Battery Service 134 ** Service Engine API 140 ** Description Initializa the GATT Service engine, register a GATT application 141 ** as for a central service management. 155 ** Description Initializa the Device Information Service Server. 182 ** BATTERY SERVICE API 188 ** Description Instantiate a Battery service 197 ** Description Respond to a battery service request
|
/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/chromium_org/chrome/browser/extensions/ |
extension_disabled_ui.h | 20 void AddExtensionDisabledError(ExtensionService* service, 24 void ShowExtensionDisabledDialog(ExtensionService* service,
|
/external/chromium_org/chrome/browser/policy/ |
profile_policy_connector_stub.cc | 22 void ProfilePolicyConnector::InitForTesting(scoped_ptr<PolicyService> service) { 23 policy_service_ = service.Pass();
|
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/ |
sync_service.html | 6 <td>Service Status</td> 7 <td id="service-status">N/A</td>
|
/external/chromium_org/chrome/browser/sync/ |
backend_unrecoverable_error_handler.cc | 15 const syncer::WeakHandle<ProfileSyncService>& service) : service_(service) {
|
/external/chromium_org/chrome/browser/sync_file_system/ |
conflict_resolution_policy.h | 14 // The service automatically resolves a conflict by choosing the one 18 // The service does nothing and just leaves conflicting files in
|
/external/chromium_org/chrome/browser/webdata/ |
token_web_data.cc | 33 const std::string& service, WebDatabase* db) { 35 ->RemoveTokenForService(service)) { 42 const std::string& service, const std::string& token, WebDatabase* db) { 43 if (TokenServiceTable::FromWebDatabase(db)->SetTokenForService(service, 78 void TokenWebData::SetTokenForService(const std::string& service, 82 service, token)); 90 void TokenWebData::RemoveTokenForService(const std::string& service) { 93 service));
|
/external/chromium_org/gpu/ |
disk_cache_proto.target.darwin-arm.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |
disk_cache_proto.target.darwin-mips.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |
disk_cache_proto.target.darwin-x86.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |
disk_cache_proto.target.linux-arm.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |
disk_cache_proto.target.linux-mips.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |
disk_cache_proto.target.linux-x86.mk | 18 # "{'inputs': ['../tools/protoc_wrapper/protoc_wrapper.py', '$(gyp_shared_intermediate_dir)/protoc'], 'msvs_cygwin_shell': '0', 'extension': 'proto', 'outputs': ['$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/%(INPUT_ROOT)s_pb2.py', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.cc', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h'], 'rule_name': 'genproto', 'rule_sources': ['command_buffer/service/disk_cache_proto.proto'], 'action': ['python', '../tools/protoc_wrapper/protoc_wrapper.py', '--include', '', '--protobuf', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service/%(INPUT_ROOT)s.pb.h', '--proto-in-dir', 'command_buffer/service', '--proto-in-file', '%(INPUT_ROOT)s$(suffix $<)', '--use-system-protobuf=0', '--', '$(gyp_shared_intermediate_dir)/protoc', '--cpp_out', '$(gyp_shared_intermediate_dir)/protoc_out/gpu/command_buffer/service', '--python_out', '$(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service'], 'message': 'Generating C++ and Python code from $(RULE_SOURCES)', 'process_outputs_as_sources': '1'}": 19 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_local_path := $(LOCAL_PATH) 20 $(gyp_shared_intermediate_dir)/pyproto/gpu/command_buffer/service/disk_cache_proto_pb2.py: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir) [all...] |