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

<<61626364656667686970>>

  /external/chromium/chrome/browser/web_resource/
promo_resource_service_unittest.cc 24 // Set up a testing profile and create a promo resource service.
35 // Set up start and end dates in a Dictionary as if parsed from the service.
114 // Set up a testing profile and create a promo resource service.
126 // from the service.
185 // Set up a testing profile and create a promo resource service.
200 // from the service.
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.h 45 // This will later be hidden behind an auth service which caches
57 const char* const service,
67 const char* const service);
157 const char* const service,
162 // request a long lived auth token for a service.
165 const char* const service);
  /external/chromium_org/chrome/browser/extensions/
extension_install_ui_browsertest.cc 222 ExtensionService* service = extensions::ExtensionSystem::Get( local
228 service->GetInstalledExtension(extension_misc::kWebStoreAppId);
230 AppSorting* sorting = service->extension_prefs()->app_sorting();
238 EXPECT_FALSE(service->GetInstalledExtension(app_id));
240 service->OnExtensionMoved(app_id,
248 EXPECT_TRUE(service->GetInstalledExtension(app_id));
  /external/chromium_org/chrome/browser/local_discovery/
privet_device_lister_unittest.cc 112 // Create a service watcher object listening for DNS-SD service announcements
113 // on service type |service_type|.
122 // Create a service resolver object for getting detailed service information
123 // for the service called |service_name|.
  /external/chromium_org/chrome/browser/notifications/
notification_options_menu_model.cc 188 DesktopNotificationService* service = local
202 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW) {
238 DesktopNotificationService* service = local
245 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW)
246 service->DenyPermission(origin);
248 service->GrantPermission(origin);
  /external/chromium_org/chrome/browser/profile_resetter/
resettable_settings_snapshot.cc 60 TemplateURLService* service = local
62 DCHECK(service);
63 TemplateURL* dse = service->GetDefaultSearchProvider();
244 TemplateURLService* service = local
246 DCHECK(service);
247 TemplateURL* dse = service->GetDefaultSearchProvider();
  /external/chromium_org/chrome/browser/ui/search_engines/
keyword_editor_controller_unittest.cc 71 TestingPrefServiceSyncable* service = profile_->GetTestingPrefService(); local
72 service->SetManagedPref(prefs::kDefaultSearchProviderEnabled,
74 service->SetManagedPref(prefs::kDefaultSearchProviderSearchURL,
76 service->SetManagedPref(prefs::kDefaultSearchProviderName,
79 service->SetManagedPref(prefs::kDefaultSearchProviderID,
81 service->SetManagedPref(prefs::kDefaultSearchProviderPrepopulateID,
  /external/chromium_org/chrome/common/
service_process_util.cc 38 // Gets the name of the shared memory used by the service process to write its
58 // We only need to check for service running on POSIX because Windows cleans
101 // Return a name that is scoped to this instance of the service process. We
117 // Return a name that is scoped to this instance of the service process. We
184 // newer service to signal us to exit.
253 DCHECK(!exe_path.empty()) << "Unable to get service process binary name.";
  /external/chromium_org/chromeos/network/
shill_property_handler.h 38 // It also observes Shill.Service for all services in Manager.ServiceWatchList.
62 // Called when a property for a watched network service has changed.
123 // Requests all properties for the service or device (called for new items).
150 // * Any new Service objects for MANAGED_TYPE_NETWORK
151 // * Additional new Service objects for MANAGED_TYPE_FAVORITE that were not
174 // Called when Shill returns the properties for a service or device.
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_service_unittest.cc 27 MOCK_METHOD1(OnInitializationCompleted, void(CloudPolicyService* service));
214 // Service should start off initialized if the store has already loaded
217 CloudPolicyService service(policy_ns_key_, &client_, &store_);
218 EXPECT_TRUE(service.IsInitializationComplete());
222 // Service should start off un-initialized if the store has not yet loaded
227 // Service should be marked as initialized and observer should be called back.
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_2.cc 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h"
10 #include "gpu/command_buffer/service/cmd_buffer_engine.h"
11 #include "gpu/command_buffer/service/context_group.h"
12 #include "gpu/command_buffer/service/program_manager.h"
385 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h"
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
win.py 85 assert not self._crash_service, 'Already running a crash service'
90 service = crash_service.CrashService(self, self._dump_reader.crash_dumps_directory())
91 service.start()
92 self._crash_service = service
192 """Checks whether the crash service binary is present."""
195 _log.error(" Could not find crash service, unexpected crashes won't be symbolized.")
  /external/iptables/extensions/
libxt_dccp.c 132 const struct servent *service; local
134 if ((service = getservbyport(htons(port), "dccp")))
135 return service->s_name;
143 const char *service; local
145 if (numeric || (service = port_to_service(port)) == NULL)
148 printf("%s", service);
  /frameworks/base/core/java/android/printservice/
PrintServiceInfo.java 39 * This class describes a {@link PrintService}. A print service knows
53 private static final String TAG_PRINT_SERVICE = "print-service";
81 * @param resolveInfo The service resolve info.
99 * @param resolveInfo The service resolve info.
161 * The accessibility service id.
173 * The service {@link ResolveInfo}.
  /frameworks/base/core/java/android/widget/
RemoteViewsService.java 21 import android.app.Service;
28 * The service to be connected to for a remote adapter to request RemoteViews. Users should
32 public abstract class RemoteViewsService extends Service {
37 // Because we are now unbinding when we are not using the Service (to allow them to be
39 // the service is restarted (in response to user input for example). When the process is
254 * To be implemented by the derived service to generate appropriate factories for
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 40 * and media container service transports.
62 IBinder service = ServiceManager.getService("mount"); local
63 if (service != null) {
64 return IMountService.Stub.asInterface(service);
66 Log.e(TAG, "Can't get mount service");
67 throw new RemoteException("Could not contact mount service");
  /frameworks/base/docs/html/about/versions/
android-4.2.jd 147 android.service.dreams.DreamService}. The {@link android.service.dreams.DreamService} APIs are
150 android.service.dreams.DreamService#setContentView setContentView()} at any point after you have
151 a window, such as from the {@link android.service.dreams.DreamService#onAttachedToWindow()}
154 <p>The {@link android.service.dreams.DreamService} class provides other important lifecycle callback
155 methods on top of the base {@link android.app.Service} APIs, such as {@link
156 android.service.dreams.DreamService#onDreamingStarted()}, {@link
157 android.service.dreams.DreamService#onDreamingStopped()}, and {@link
158 android.service.dreams.DreamService#onDetachedFromWindow()}.
159 You cannot initiate a {@link android.service.dreams.DreamService} from you
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceResponse.java 28 * A class for a response of bonjour service discovery.
45 * Service instance name.
157 throw new IllegalArgumentException("Malformed bonjour service response");
162 * Parse DnsSd service discovery response.
286 * Creates DnsSd service response.
292 * @return DnsSd service response data.
  /libcore/crypto/src/test/java/org/conscrypt/
SignatureTest.java 97 Set<Provider.Service> services = p.getServices();
98 for (Provider.Service service : services) {
99 if ("Signature".equals(service.getType()) && service.getAlgorithm().contains("RSA")) {
100 Signature sig1 = Signature.getInstance(service.getAlgorithm(), p);
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
AlgNameMapper.java 107 // Alg.Alias.<service>.<OID-INTS-DOT-SEPARATED>=<alg-name>
109 // Alg.Alias.<service>.OID.<OID-INTS-DOT-SEPARATED>=<alg-name>
179 // Alg.Alias.<service>.<OID-INTS-DOT-SEPARATED>=<alg-name>
181 // Alg.Alias.<service>.OID.<OID-INTS-DOT-SEPARATED>=<alg-name>
185 for (String service : serviceName) {
186 String keyPrfix2find = "Alg.Alias." + service + ".";
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 65 Set<Provider.Service> services = provider.getServices();
69 for (Provider.Service service : services) {
70 String type = service.getType();
71 String algorithm = service.getAlgorithm().toUpperCase();
72 String className = service.getClassName();
  /packages/apps/Nfc/nci/jni/
NfcTag.h 36 int mTechList [MAX_NUM_TECHNOLOGY]; //array of NFC technologies according to NFC service
37 int mTechHandles [MAX_NUM_TECHNOLOGY]; //array of tag handles according to NFC service
38 int mTechLibNfcTypes [MAX_NUM_TECHNOLOGY]; //array of detailed tag types according to NFC service
336 ** Description: Discover the technologies that NFC service needs by interpreting
350 ** Description: Discover the technologies that NFC service needs by interpreting
366 ** notify NFC service;
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
AppChooserActivity.java 204 for (ApduServiceInfo service : services) {
205 CharSequence label = service.getDescription();
206 if (label == null) label = service.loadLabel(pm);
207 Drawable icon = service.loadIcon(pm);
210 banner = service.loadBanner(pm);
216 DisplayAppInfo info = new DisplayAppInfo(service, label, icon, banner);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 20 import android.app.Service;
49 public class MediaScannerService extends Service implements Runnable
126 // Start up the thread running the service. Note that we create a
127 // separate thread because the service normally runs in the process's
148 return Service.START_NOT_STICKY;
157 return Service.START_REDELIVER_INTENT;
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 78 * Holds instances of ServiceListener's. Keys are Strings holding a fully qualified service type. Values are LinkedList's of ServiceListener's.
93 * This hashtable holds the services that have been registered. Keys are instances of String which hold an all lower-case version of the fully qualified service name. Values are instances of ServiceInfo.
98 * This hashtable holds the service types that have been registered or that have been received in an incoming datagram.<br/>
99 * Keys are instances of String which hold an all lower-case version of the fully qualified service type.<br/>
100 * Values hold the fully qualified service type.
350 * This hashtable is used to maintain a list of service types being collected by this JmDNS instance. The key of the hashtable is a service type name, the value is an instance of JmDNS.ServiceCollector.
763 // To get a complete info record we need to retrieve the service, address and the text bytes.
897 // report cached service types
929 // We have a problem here. The service collectors must be called synchronously so that their cache get cleaned up immediately or we will (…)
    [all...]

Completed in 998 milliseconds

<<61626364656667686970>>