OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Service
(Results
1 - 25
of
564
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/perfetto/src/ipc/
virtual_destructors.cc
19
#include "perfetto/ipc/
service
.h"
32
Service
::~
Service
() = default;
/external/protobuf/src/google/protobuf/
service.cc
35
#include <google/protobuf/
service
.h>
40
Service
::~
Service
() {}
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
service_registry.hpp
20
template <typename
Service
, typename Arg>
22
asio::io_service& o,
Service
*, Arg arg)
24
first_service_(new
Service
(o, arg))
26
asio::io_service::
service
::key key;
27
init_key(key,
Service
::id);
32
template <typename
Service
>
33
Service
& service_registry::first_service()
35
return *static_cast<
Service
*>(first_service_);
38
template <typename
Service
>
39
Service
& service_registry::use_service(
[
all
...]
/external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
Service.java
23
public interface
Service
{
/external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Service.java
3
public interface
Service
{
ServiceImpl.java
3
public class ServiceImpl implements
Service
{
/external/guice/core/test/com/google/inject/example/
ClientServiceWithDependencyInjection.java
26
public interface
Service
{
30
public static class ServiceImpl implements ClientServiceWithDependencyInjection.
Service
{
41
private static final
Service
service
= new ServiceImpl();
field in class:ClientServiceWithDependencyInjection.ServiceFactory
43
public static
Service
getInstance() {
44
return
service
;
50
private final
Service
service
;
field in class:ClientServiceWithDependencyInjection.Client
52
public Client(
Service
service
) {
66
Service
service
= ServiceFactory.getInstance();
local
[
all
...]
ClientServiceWithFactories.java
26
public interface
Service
{
30
public static class ServiceImpl implements
Service
{
41
private static
Service
instance = new ServiceImpl();
43
public static
Service
getInstance() {
47
public static void setInstance(
Service
service
) {
48
instance =
service
;
55
Service
service
= ServiceFactory.getInstance();
local
56
service
.go()
[
all
...]
/external/grpc-grpc/src/python/grpcio/grpc/framework/common/
style.py
20
class
Service
(enum.Enum):
/external/guice/extensions/service/src/com/google/inject/service/
CompositeService.java
16
package com.google.inject.
service
;
33
* A
service
that composes other services together in a fixed order.
40
private final Set<Key<? extends
Service
>> services = Sets.newLinkedHashSet();
43
* Represents the state of this composite
service
. Will equal FAILED even if only one component
44
*
service
fails to start or stop. In other words, all component services must start successfully
45
* for this
service
to be considered started and similarly for stopped.
47
private volatile
Service
.State compositeState;
56
public CompositeService add(Class<? extends
Service
>
service
) {
57
return add(Key.get(
service
));
[
all
...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
service_registry.hpp
33
// Constructor. Adds the initial
service
.
34
template <typename
Service
, typename Arg>
36
Service
* initial_service, Arg arg);
44
// Get the first
service
object cast to the specified type. Called during
46
template <typename
Service
>
47
Service
& first_service();
49
// Get the
service
object corresponding to the specified
service
type. Will
50
// create a new
service
object automatically if no such object already
51
// exists. Ownership of the
service
object is not transferred to the caller
[
all
...]
/external/tensorflow/tensorflow/core/profiler/rpc/
profiler_service_impl.h
27
std::unique_ptr<grpc::ProfilerService::
Service
> CreateProfilerService(
/cts/hostsidetests/appbinding/app/src/com/android/cts/appbinding/app/sms/
MyRespondService.java
18
import android.app.
Service
;
22
public class MyRespondService extends
Service
{
/cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
MockAccountService.java
19
import android.app.
Service
;
24
*
Service
for wrapping the {@link MockAccountAuthenticator}
26
public class MockAccountService extends
Service
{
/cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
UnprotectedCrossUserService.java
19
import android.app.
Service
;
24
* Dummy
service
that is exported.
26
public class UnprotectedCrossUserService extends
Service
{
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
AccountService.java
19
import android.app.
Service
;
23
public class AccountService extends
Service
{
/cts/hostsidetests/devicepolicy/app/NoLaunchableActivityApp/src/com/android/cts/nolaunchableactivityapp/
EmptyService.java
18
import android.app.
Service
;
22
public class EmptyService extends
Service
{
/cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsSyncService.java
18
import android.app.
Service
;
23
*
Service
for the sync test.
25
public class BatteryStatsSyncService extends
Service
{
/cts/hostsidetests/securitybulletin/test-apps/launchanywhere/src/com/android/security/cts/launchanywhere/
AuthenticatorService.java
19
import android.app.
Service
;
23
public class AuthenticatorService extends
Service
{
/cts/hostsidetests/statsd/apps/statsdapp/src/com/android/server/cts/device/statsd/
StatsdSyncService.java
18
import android.app.
Service
;
23
*
Service
for the sync test.
25
public class StatsdSyncService extends
Service
{
/cts/tests/app/app/src/android/app/stubs/
NullService.java
19
import android.app.
Service
;
25
* A
Service
that always returns null from onBind(Intent).
27
public class NullService extends
Service
{
/cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountService.java
19
import android.app.
Service
;
24
* a basic Mock
Service
for wrapping the MockAccountAuthenticator
26
public class MockAccountService extends
Service
{
MockCustomTokenAccountService.java
3
import android.app.
Service
;
7
public class MockCustomTokenAccountService extends
Service
{
/cts/tests/tests/appcomponentfactory/src/android/app/componentfactory/cts/
MyService.java
17
import android.app.
Service
;
21
public class MyService extends
Service
{
/cts/tests/tests/content/src/android/content/cts/
MockAccountService.java
19
import android.app.
Service
;
24
* a basic Mock
Service
for wrapping the MockAccountAuthenticator
26
public class MockAccountService extends
Service
{
Completed in 1629 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>