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

1 2

  /system/tpm/attestation/server/
dbus_service.h 46 void set_service(AttestationInterface* service) { service_ = service; }
105 AttestationInterface* service_; member in class:attestation::DBusService
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...]
  /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...]
  /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.h 74 TrunksBinderService* service_; member in class:trunks::TrunksBinderService::BinderServiceInternal
  /system/update_engine/client_library/
client_binder.h 103 android::sp<android::brillo::IUpdateEngine> service_; member in class:update_engine::internal::BinderUpdateEngineClient
  /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...]
  /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_);
  /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
  /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/libpdx/
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...]
  /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
  /external/perfetto/src/tracing/core/
service_impl.h 95 ServiceImpl* const service_; member in class:perfetto::ServiceImpl::ProducerEndpointImpl
132 ServiceImpl* const service_; member in class:perfetto::ServiceImpl::ConsumerEndpointImpl
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cost_analysis_test.cc 60 service_(static_cast<Service*>(ClientLibrary::GetXlaService(
62 computation_tracker_(service_->computation_tracker()) {
136 Service* service_; member in class:xla::__anon38939::HloCostAnalysisTest
  /frameworks/native/libs/vr/libpdx/private/pdx/
service.h 328 bool IsServiceExpired() const { return service_.expired(); }
346 std::weak_ptr<Service> service_; member in class:android::pdx::Message
  /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...]
  /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
  /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
  /system/core/init/
service.h 263 : service_list_(service_list), subcontexts_(subcontexts), service_(nullptr) {}
274 std::unique_ptr<Service> service_; member in class:android::init::ServiceParser
  /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...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 869 const ServiceDescriptor* service_; member in class:google::protobuf::MethodDescriptor
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 869 const ServiceDescriptor* service_; member in class:google::protobuf::MethodDescriptor
    [all...]

Completed in 1165 milliseconds

1 2