HomeSort by relevance Sort by last modified time
    Searched full:service (Results 1526 - 1550 of 11175) sorted by null

<<61626364656667686970>>

  /libcore/luni/src/main/java/java/security/
SecureRandom.java 69 // The service name.
70 private static final String SERVICE = "SecureRandom";
73 private static final Engine ENGINE = new Engine(SERVICE);
89 Provider.Service service = Services.getSecureRandomService(); local
90 if (service == null) {
96 this.provider = service.getProvider();
97 this.secureRandomSpi = (SecureRandomSpi)service.newInstance(null);
98 this.algorithm = service.getAlgorithm();
  /packages/apps/Email/src/com/android/email2/ui/
MailActivityEmail.java 33 import com.android.email.service.AttachmentDownloadService;
34 import com.android.email.service.EmailServiceUtils;
40 import com.android.emailcommon.service.EmailServiceProxy;
115 * enables or disables the Compose activity, the boot receiver and the service based on
156 * Starts or stops the service as necessary.
157 * @param enabled If {@code true}, the service will be started. Otherwise, it will be stopped.
158 * @param context The context to manage the service with.
159 * @param intent The intent of the service to be managed.
201 // Enable logging in the EAS service, so it starts up as early as possible.
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 23 import android.app.Service;
41 * an update we spawn a background {@link Service} to perform the API queries.
47 // To prevent any ANR timeouts, we perform the update in a service
51 public static class UpdateService extends Service {
123 // We don't need to bind to this service
  /device/asus/grouper/
init.grouper.rc 308 service wpa_supplicant /system/bin/wpa_supplicant \
322 service p2p_supplicant /system/bin/wpa_supplicant \
339 service dhcpcd_wlan0 /system/bin/dhcpcd -aABDKL
344 service dhcpcd_p2p /system/bin/dhcpcd -aABKL
349 service dhcpcd_eth0 /system/bin/dhcpcd -ABDKL -f/system/etc/dhcpcd/dhcpcd.conf
354 service dhcpcd_bt-pan /system/bin/dhcpcd -ABKL
359 service iprenew_wlan0 /system/bin/dhcpcd -n
364 service iprenew_p2p /system/bin/dhcpcd -n
369 service iprenew_eth0 /system/bin/dhcpcd -n
374 service iprenew_bt-pan /system/bin/dhcpcd -
    [all...]
  /device/asus/tilapia/
init.tilapia.rc 318 service wpa_supplicant /system/bin/wpa_supplicant \
332 service p2p_supplicant /system/bin/wpa_supplicant \
349 service dhcpcd_wlan0 /system/bin/dhcpcd -aABDKL
354 service dhcpcd_p2p /system/bin/dhcpcd -aABKL
359 service dhcpcd_eth0 /system/bin/dhcpcd -ABDKL -f/system/etc/dhcpcd/dhcpcd.conf
364 service dhcpcd_bt-pan /system/bin/dhcpcd -ABKL
369 service iprenew_wlan0 /system/bin/dhcpcd -n
374 service iprenew_p2p /system/bin/dhcpcd -n
379 service iprenew_eth0 /system/bin/dhcpcd -n
384 service iprenew_bt-pan /system/bin/dhcpcd -
    [all...]
  /docs/source.android.com/src/devices/
bluetooth.jd 30 with Android framework applications. A Bluetooth system service communicates with the Bluetooth stack through JNI and with applications through
31 Binder IPC. The system service provides developers access to various Bluetooth profiles. The following
44 <dt>Bluetooth system service</dt>
45 <dd>The Bluetooth system service, located in <code>packages/apps/Bluetooth</code>, is packaged as an Android
46 app and implements the Bluetooth service and profiles at the Android framework layer. This app
  /external/chromium/chrome/browser/sync/
sync_setup_flow.h 48 static SyncSetupFlow* Run(ProfileSyncService* service,
53 // Fills |args| with "user" and "error" arguments by querying |service|.
55 const ProfileSyncService* service,
60 ProfileSyncService* service,
121 ProfileSyncService* service);
  /external/chromium_org/base/win/
dllmain.cc 32 // Indicate if another service is scanning the callbacks. When this becomes
33 // set to true, then DllMain() will stop supporting the callback service. This
35 // shows that some other service is handling callbacks.
99 return true; // We won't service THREAD_ATTACH calls.
102 return true; // Some other service is doing this work.
  /external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.h 35 // Interacts with the device management service and determines whether this
73 // service. Subsequent calls drop any previous requests. Notice that this
86 // It can be reused for subsequent requests to the device management service.
98 // Sends an auto-enrollment check request to the device management service.
147 // Used to communicate with the device management service.
user_cloud_policy_manager_chromeos_unittest.cc 173 EXPECT_FALSE(manager_->core()->service()->IsInitializationComplete());
178 // UserCloudPolicyManagerChromeOS. This service is automatically created
280 EXPECT_TRUE(manager_->core()->service()->IsInitializationComplete());
345 EXPECT_FALSE(manager_->core()->service()->IsInitializationComplete());
347 EXPECT_TRUE(manager_->core()->service()->IsInitializationComplete());
380 EXPECT_FALSE(manager_->core()->service()->IsInitializationComplete());
382 EXPECT_TRUE(manager_->core()->service()->IsInitializationComplete());
403 EXPECT_FALSE(manager_->core()->service()->IsInitializationComplete());
405 EXPECT_TRUE(manager_->core()->service()->IsInitializationComplete());
432 EXPECT_FALSE(manager_->core()->service()->IsInitializationComplete())
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/autotest_private/
autotest_private_api.cc 154 ExtensionService* service = extensions::ExtensionSystem::Get( local
156 const ExtensionSet* extensions = service->extensions();
157 const ExtensionSet* disabled_extensions = service->disabled_extensions();
198 extension_value->SetBoolean("isEnabled", service->IsExtensionEnabled(id));
200 extension_util::IsIncognitoEnabled(id, service));
  /external/chromium_org/chrome/browser/extensions/api/management/
management_api.cc 96 ExtensionService* service = system->extension_service(); local
101 info->enabled = service->IsExtensionEnabled(info->id);
127 ExtensionPrefs* prefs = service->extension_prefs();
229 ExtensionService* ManagementFunction::service() { function in class:extensions::ManagementFunction
233 ExtensionService* AsyncManagementFunction::service() { function in class:extensions::AsyncManagementFunction
241 AddExtensionInfo(*service()->extensions(), system, &extensions);
242 AddExtensionInfo(*service()->disabled_extensions(), system, &extensions);
243 AddExtensionInfo(*service()->terminated_extensions(), system, &extensions);
254 const Extension* extension = service()->GetExtensionById(params->id, true);
273 const Extension* extension = service()->GetExtensionById(params->id, true)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_keybinding_registry.cc 68 ExtensionService* service = local
70 if (!service)
73 const ExtensionSet* extensions = service->extensions();
102 ExtensionService* service = local
105 const Extension* extension = service->extensions()->GetByID(extension_id);
extension_nacl_browsertest.cc 60 ExtensionService* service = extensions::ExtensionSystem::Get( local
66 extension = service->GetExtensionById(kExtensionId, false);
73 extension = service->GetExtensionById(kExtensionId, false);
80 extension = service->GetExtensionById(last_loaded_extension_id(),
88 extension = service->GetExtensionById(last_loaded_extension_id(),
extension_web_contents_observer.cc 122 ExtensionService* service = profile_->GetExtensionService();
123 if (!service)
130 if (service->GetTerminatedExtension(site.host()))
131 service->ReloadExtension(site.host());
135 return service->extensions()->GetByID(site.host());
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_settings_service.h 57 // user settings. If the dictionary is NULL, it means that the service is
64 // Initializes the service by loading its settings from a file underneath the
72 // Initializes the service by loading its settings from the |pref_store|.
81 // Activates the service. This happens when the user is managed.
142 // Returns a dictionary with all managed user settings if the service is
  /external/chromium_org/chrome/browser/policy/cloud/
user_policy_signin_service_android.cc 98 CloudPolicyService* service) {
100 DCHECK_EQ(service, manager->core()->service());
101 DCHECK(service->IsInitializationComplete());
102 // The service is now initialized - if the client is not yet registered, then
  /external/chromium_org/chrome/browser/sync/glue/
ui_data_type_controller_unittest.cc 114 // service has been told to start syncing and that the DTC is now in RUNNING
127 // Start and then stop the DTC. Verify that the service started and stopped
162 // Start the DTC, but have the service fail association. Verify the callback
164 // service is not syncing. Then stop the DTC.
187 // NOT_RUNNING state. Verify the syncable service is not syncing.
  /external/chromium_org/chrome/browser/sync/test/integration/
enable_disable_test.cc 52 GetClient(0)->service()->GetRegisteredDataTypes();
53 syncer::UserShare* user_share = GetClient(0)->service()->GetUserShare();
98 GetClient(0)->service()->GetRegisteredDataTypes();
100 syncer::UserShare* user_share = GetClient(0)->service()->GetUserShare();
135 GetClient(0)->service()->GetUserShare();
  /external/chromium_org/chrome/browser/web_resource/
resource_request_allowed_notifier_unittest.cc 74 // network state simulations. This also acts as the service implementing the
106 // Simulate a resource request from the test service. It returns true if
137 // Assume the test service has already requested permission, as all tests
245 // Ensure that if the observing service does not request access, it does not
287 // Ensure that if the observing service does not request access, it does not
  /external/chromium_org/chromeos/network/
network_state.h 23 // Simple class to provide network state information about a network service.
45 // Returns true, if the network requires a service activation.
116 // Network Service properties. Avoid adding any additional properties here.
133 // Note: These do not correspond to actual Shill.Service properties
134 // but are derived from the service's corresponding IPConfig object.
  /external/chromium_org/components/policy/core/common/cloud/
device_management_service.h 32 // management service. Jobs are created by DeviceManagementService. They can be
98 // The device management service is responsible for everything related to
112 // Server at which to contact the service.
139 // Makes the service stop all requests.
179 // If this service is initialized, incoming requests get fired instantly.
  /external/chromium_org/gpu/command_buffer/service/
common_decoder.h 14 #include "gpu/command_buffer/service/cmd_parser.h"
32 // glBufferData. Because the data is separated between client and service,
37 // service side and when it is all there then call glBufferData. Buckets
47 // Buckets also help pass strings to/from the service. To return a string of
48 // arbitary size, the service puts the string in a bucket. The client can
vertex_attrib_manager_unittest.cc 5 #include "gpu/command_buffer/service/vertex_attrib_manager.h"
8 #include "gpu/command_buffer/service/buffer_manager.h"
9 #include "gpu/command_buffer/service/error_state_mock.h"
10 #include "gpu/command_buffer/service/feature_info.h"
11 #include "gpu/command_buffer/service/test_helper.h"
  /external/chromium_org/third_party/icu/source/common/
servls.cpp 167 ServiceEnumeration(const ICULocaleService* service, UErrorCode &status)
168 : _service(service)
169 , _timestamp(service->getTimestamp())
197 static ServiceEnumeration* create(const ICULocaleService* service) {
199 ServiceEnumeration* result = new ServiceEnumeration(service, status);

Completed in 1143 milliseconds

<<61626364656667686970>>