Searched defs:Service (Results 1 - 25 of 33) sorted by relevance

12

/external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
H A DService.java23 public interface Service { interface
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dservice.cc40 Service::~Service() {}
H A Dservice.h110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service { class in namespace:google::protobuf
127 inline Service() {} function in class:google::protobuf::Service
128 virtual ~Service();
153 // used by this Service. For stubs, the "correct type" depends on the
154 // RpcChannel which the stub is using. Server-side Service
191 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Service);
261 // communication line to a Service which can be used to call that Service'
[all...]
/external/protobuf/src/google/protobuf/
H A Dservice.cc40 Service::~Service() {}
H A Dservice.h110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service { class in namespace:google::protobuf
127 inline Service() {} function in class:google::protobuf::Service
128 virtual ~Service();
153 // used by this Service. For stubs, the "correct type" depends on the
154 // RpcChannel which the stub is using. Server-side Service
191 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Service);
261 // communication line to a Service which can be used to call that Service'
[all...]
/external/chromium_org/chrome/browser/geolocation/
H A Dgeolocation_permission_context_factory.cc20 class Service : public KeyedService { class in namespace:__anon4066
22 explicit Service(Profile* profile) { function in class:__anon4066::Service
41 DISALLOW_COPY_AND_ASSIGN(Service);
49 return static_cast<Service*>(
71 return new Service(static_cast<Profile*>(profile));
/external/chromium_org/chrome/browser/media/
H A Dprotected_media_identifier_permission_context_factory.cc16 class Service : public KeyedService { class in namespace:__anon4217
18 explicit Service(Profile* profile) { function in class:__anon4217::Service
33 DISALLOW_COPY_AND_ASSIGN(Service);
42 return static_cast<Service*>(
67 return new Service(static_cast<Profile*>(profile));
/external/chromium_org/chrome/browser/ssl/
H A Dchrome_ssl_host_state_delegate_factory.cc16 class Service : public KeyedService { class in namespace:__anon4723
18 explicit Service(Profile* profile) function in class:__anon4723::Service
28 DISALLOW_COPY_AND_ASSIGN(Service);
36 return static_cast<Service*>(GetInstance()->GetServiceForBrowserContext(
57 return new Service(static_cast<Profile*>(profile));
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dservice.py51 class Service(object): class in inherits:object
81 used by this Service. For stubs, the "correct type" depends on the
208 construct a stub {@link Service} wrapping it. Example:
222 procedure looks the same as Service.CallMethod(), but the requirements
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessCategory.cs19 Service, enumerator in enum:ChromeDebug.ProcessCategory
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DService.java48 public interface Service { interface
65 * being used by this Service. For stubs, the "correct type" depends
66 * on the RpcChannel which the stub is using. Server-side Service
112 * the {@code Service} implementation constructs the response message itself,
/external/protobuf/python/google/protobuf/
H A Dservice.py51 class Service(object): class in inherits:object
81 used by this Service. For stubs, the "correct type" depends on the
208 construct a stub {@link Service} wrapping it. Example:
222 procedure looks the same as Service.CallMethod(), but the requirements
/external/guava/guava/src/com/google/common/util/concurrent/
H A DService.java46 * {@code com.google.common.base.Service})
49 public interface Service { interface
122 * {@code com.google.common.base.Service.State})
124 @Beta // should come out of Beta when Service does
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dservice.h54 class Service : public KeyedService, class in namespace:chromeos::file_system_provider
67 Service(Profile* profile, extensions::ExtensionRegistry* extension_registry);
68 virtual ~Service();
116 static Service* Get(content::BrowserContext* context);
161 base::WeakPtrFactory<Service> weak_ptr_factory_;
163 DISALLOW_COPY_AND_ASSIGN(Service);
H A Dservice.cc50 Service::Service(Profile* profile, function in class:chromeos::file_system_provider::Service
59 Service::~Service() {
83 Service* Service::Get(content::BrowserContext* context) {
87 void Service::AddObserver(Observer* observer) {
92 void Service::RemoveObserver(Observer* observer) {
97 void Service::SetFileSystemFactoryForTesting(
103 bool Service
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSQuestion.java125 * Service question.
127 private static class Service extends DNSQuestion { class in class:DNSQuestion
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { method in class:DNSQuestion.Service
140 // Service type request
201 // Service type request
251 return new Service(name, type, recordClass, unique);
H A DDNSRecord.java637 * Service record.
639 public static class Service extends DNSRecord { class in class:DNSRecord
640 private static Logger logger1 = Logger.getLogger(Service.class.getName());
646 public Service(String name, DNSRecordClass recordClass, boolean unique, int ttl, int priority, int weight, int port, String server) { method in class:DNSRecord.Service
711 if (! (other instanceof Service) ) {
714 Service s = (Service) other;
728 DNSRecord.Service localService = new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(), dns.getLocalHost().getName());
798 return dns.addAnswer(in, addr, port, out, new DNSRecord.Service(inf
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Din_process_command_buffer.h86 class Service;
87 explicit InProcessCommandBuffer(const scoped_refptr<Service>& service);
139 class Service { class in class:gpu::InProcessCommandBuffer
141 Service();
142 virtual ~Service();
225 static scoped_refptr<Service> GetDefaultService();
250 scoped_refptr<Service> service_;
H A Din_process_command_buffer.cc62 public InProcessCommandBuffer::Service,
184 InProcessCommandBuffer::Service::Service() {} function in class:gpu::InProcessCommandBuffer::Service
186 InProcessCommandBuffer::Service::~Service() {}
189 InProcessCommandBuffer::Service::mailbox_manager() {
195 scoped_refptr<InProcessCommandBuffer::Service>
198 scoped_refptr<Service> service;
210 const scoped_refptr<Service>& service)
/external/smack/src/org/xbill/DNS/
H A DWKSRecord.java223 public static class Service { class in class:WKSRecord
230 private Service() {} method in class:WKSRecord.Service
322 /** TACACS-Database Service */
334 /** Remote Job Service */
337 /** Remote Job Service */
340 /** Remote Job Service */
343 /** Remote Job Service */
388 /** Remote Telnet Service */
397 /** Authentication Service */
403 /** UUCP Path Service */
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 8829 milliseconds

12