HomeSort by relevance Sort by last modified time
    Searched refs:service_ (Results 1 - 25 of 63) sorted by null

1 2 3

  /frameworks/native/services/vr/virtual_touchpad/
VirtualTouchpadClient.cpp 15 if (service_ != nullptr) {
21 if (service_ != nullptr) {
36 service_ = service;
37 return service_->attach().transactionError();
41 if (service_ == nullptr) {
44 status_t status = service_->detach().transactionError();
45 service_ = nullptr;
50 if (service_ == nullptr) {
53 return service_->touch(touchpad, x, y, pressure).transactionError();
57 if (service_ == nullptr)
77 sp<IVirtualTouchpadService> service_; member in class:android::dvr::__anon46610::VirtualTouchpadClientImpl
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_io_object.hpp 146 return service_->get_io_service();
151 : service_(&asio::use_service<IoObjectService>(io_service))
153 service_->construct(implementation);
157 : service_(&other.get_service())
159 service_->move_construct(implementation, other.implementation);
164 service_->destroy(implementation);
169 service_->move_assign(implementation,
170 *other.service_, other.implementation);
171 service_ = other.service_;
201 IoObjectService* service_; member in class:asio::basic_io_object
    [all...]
  /system/update_engine/client_library/
client_binder.cc 45 &service_) == OK;
52 return service_
68 if (!service_->GetStatus(&status).isOk())
81 return service_->SetCohortHint(String16{in_cohort_hint.c_str()}).isOk();
87 if (!service_->GetCohortHint(&out_as_string16).isOk())
95 return service_->SetUpdateOverCellularPermission(allowed).isOk();
100 return service_->GetUpdateOverCellularPermission(allowed).isOk();
104 return service_->SetP2PUpdatePermission(enabled).isOk();
108 return service_->GetP2PUpdatePermission(enabled).isOk();
112 return service_->AttemptRollback(powerwash).isOk()
    [all...]
client_binder.h 103 android::sp<android::brillo::IUpdateEngine> service_; member in class:update_engine::internal::BinderUpdateEngineClient
  /system/tpm/tpm_manager/server/
tpm_manager_service_test.cc 54 service_.reset(new TpmManagerService(
70 service_->GetTpmStatus(request,
77 void SetupService() { CHECK(service_->Initialize()); }
83 std::unique_ptr<TpmManagerService> service_; member in class:tpm_manager::TpmManagerServiceTest
95 service_.reset(new TpmManagerService(
131 service_->TakeOwnership(request, base::Bind(callback, base::Unretained(this)));
167 service_->GetTpmStatus(request, base::Bind(callback, base::Unretained(this)));
185 service_->GetTpmStatus(request, base::Bind(callback, base::Unretained(this)));
205 service_->GetTpmStatus(request, base::Bind(callback, base::Unretained(this)));
217 service_->TakeOwnership(request, base::Bind(callback, base::Unretained(this)))
    [all...]
  /frameworks/native/libs/vr/libpdx/
service.cpp 23 : service_{Service::GetFromMessageInfo(info)},
27 auto svc = service_.lock();
41 std::swap(service_, other.service_);
52 auto svc = service_.lock();
64 service_.reset();
79 if (auto svc = service_.lock()) {
89 if (auto svc = service_.lock()) {
107 if (auto svc = service_.lock()) {
118 if (auto svc = service_.lock())
    [all...]
service_tests.cpp 106 service_ = std::make_shared<MockService>("MockSvc", std::move(endpoint));
110 return static_cast<MockEndpoint*>(service_->endpoint());
122 info->service = service_.get();
142 std::shared_ptr<MockService> service_; member in class:__anon46434::ServiceTest
164 EXPECT_TRUE(service_->IsInitialized());
165 service_ = std::make_shared<MockService>("MockSvc2", nullptr);
166 EXPECT_FALSE(service_->IsInitialized());
186 EXPECT_EQ(service_, message.GetService());
208 EXPECT_EQ(service_, message.GetService());
225 EXPECT_CALL(*service_, OnChannelOpen(Ref(message))).WillOnce(Return(channel))
    [all...]
  /system/tpm/attestation/server/
attestation_service_test.cc 59 service_.reset(new AttestationService);
60 service_->set_database(&mock_database_);
61 service_->set_crypto_utility(&mock_crypto_utility_);
63 service_->set_http_transport(fake_http_transport_);
64 service_->set_key_store(&mock_key_store_);
65 service_->set_tpm_utility(&mock_tpm_utility_);
74 CHECK(service_->Initialize());
80 service_->attestation_ca_origin() + "/enroll",
88 service_->attestation_ca_origin() + "/sign",
129 std::unique_ptr<AttestationService> service_; member in class:attestation::AttestationServiceTest
    [all...]
dbus_service.cc 35 service_(service) {}
73 // Convert |response| to a shared_ptr so |service_| can safely copy the
82 service_->CreateGoogleAttestedKey(
91 // Convert |response| to a shared_ptr so |service_| can safely copy the
98 service_->GetKeyInfo(
108 // Convert |response| to a shared_ptr so |service_| can safely copy the
117 service_->GetEndorsementInfo(
127 // Convert |response| to a shared_ptr so |service_| can safely copy the
136 service_->GetAttestationKeyInfo(
146 // Convert |response| to a shared_ptr so |service_| can safely copy th
    [all...]
dbus_service.h 46 void set_service(AttestationInterface* service) { service_ = service; }
105 AttestationInterface* service_; member in class:attestation::DBusService
  /external/libmojo/mojo/public/cpp/bindings/tests/
bindings_perftest.cc 51 test::PingServicePtr service_; member in class:mojo::__anon25194::PingPongTest
61 : service_(std::move(service)) {}
69 service_->Ping(base::Bind(&PingPongTest::OnPingDone, base::Unretained(this)));
80 service_->Ping(base::Bind(&PingPongTest::OnPingDone, base::Unretained(this)));
e2e_perftest.cc 62 test::EchoServicePtr service_; member in class:mojo::__anon25197::PingPongTest
76 : service_(std::move(service)),
105 service_->Echo(message_, ping_done_callback_);
  /system/update_engine/
update_engine_client_android.cc 80 android::sp<android::os::IUpdateEngine> service_; member in class:chromeos_update_engine::internal::UpdateEngineClientAndroid
162 android::String16("android.os.UpdateEngineService"), &service_);
170 return ExitWhenIdle(service_->suspend());
174 return ExitWhenIdle(service_->resume());
178 return ExitWhenIdle(service_->cancel());
182 return ExitWhenIdle(service_->resetStatus());
189 if (!service_->bind(callback_, &bound).isOk() || !bound) {
203 Status status = service_->applyPayload(
219 android::os::IUpdateEngine::asBinder(service_),
  /frameworks/native/libs/vr/libvrflinger/
display_manager_service.h 21 : service_(service), channel_id_(channel_id) {}
35 DisplayManagerService* service_; member in class:android::dvr::DisplayManager
vsync_service.h 40 : service_(service), pid_(pid), cid_(cid) {}
46 pdx::Service& service_; member in class:android::dvr::VSyncChannel
display_surface.h 36 DisplayService* service() const { return service_; }
101 DisplayService* service_; member in class:android::dvr::DisplaySurface
  /system/tpm/trunks/
trunks_binder_service.cc 75 : service_(service) {}
89 service_->transceiver_->SendCommand(command_data, callback);
115 CreateResponseProto(service_->transceiver_->SendCommandAndWait(command_data),
trunks_binder_service.h 74 TrunksBinderService* service_; member in class:trunks::TrunksBinderService::BinderServiceInternal
  /frameworks/native/services/vr/bufferhubd/
buffer_hub.h 33 : service_(service),
104 BufferHubService* service() const { return service_; }
113 BufferHubService* service_; member in class:android::dvr::BufferHubChannel
  /frameworks/native/cmds/installd/tests/
installd_dexopt_test.cpp 154 InstalldNativeService* service_; member in class:android::installd::DexoptTest
180 service_ = new InstalldNativeService();
192 service_->destroyAppData(
198 delete service_;
205 service_->createOatDir(app_oat_dir_, kRuntimeIsa);
212 ASSERT_TRUE(service_->createAppData(
239 ASSERT_TRUE(service_->fixupAppData(volume_uuid_, kTestUserId).isOk());
269 binder::Status result = service_->dexopt(path,
307 binder::Status result = service_->reconcileSecondaryDexFile(
397 binder::Status prof_binder_result = service_->prepareAppProfile
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
client_channel_tests.cpp 84 service_ = TestService::Create(std::move(endpoint));
86 dispatcher_->AddService(service_);
94 dispatcher_->RemoveService(service_);
98 std::shared_ptr<TestService> service_; member in class:__anon46443::TestServiceRunner
  /external/flatbuffers/src/
idl_gen_grpc.cpp 104 FlatBufService(const ServiceDef *service) : service_(service) {}
116 std::string name() const { return service_->name; }
119 return static_cast<int>(service_->calls.vec.size());
124 new FlatBufMethod(service_->calls.vec[i]));
128 const ServiceDef *service_; member in class:flatbuffers::FlatBufService
  /external/perfetto/src/tracing/core/
service_impl.cc     [all...]
service_impl.h 95 ServiceImpl* const service_; member in class:perfetto::ServiceImpl::ProducerEndpointImpl
132 ServiceImpl* const service_; member in class:perfetto::ServiceImpl::ConsumerEndpointImpl
  /frameworks/native/libs/vr/libbufferhubqueue/benchmarks/
buffer_transport_benchmark.cpp 160 service_ = sm->getService(kBinderService);
161 if (service_ == nullptr) {
173 int error = service_->transact(CREATE_BUFFER_QUEUE, data, &reply);
203 sp<IBinder> service_; member in class:BinderBufferTransport

Completed in 301 milliseconds

1 2 3