Home
last modified time | relevance | path

Searched refs:impl_ (Results 1 – 15 of 15) sorted by relevance

/system/connectivity/wificond/
Dclient_interface_binder.cpp34 : impl_(impl) { in ClientInterfaceBinder()
41 *success = impl_ && impl_->EnableSupplicant(); in enableSupplicant()
46 *success = impl_ && impl_->DisableSupplicant(); in disableSupplicant()
52 if (impl_ == nullptr) { in getPacketCounters()
55 impl_->GetPacketCounters(out_packet_counters); in getPacketCounters()
61 if (impl_ == nullptr) { in signalPoll()
64 impl_->SignalPoll(out_signal_poll_results); in signalPoll()
69 if (impl_ == nullptr) { in getMacAddress()
72 *out_mac_address = impl_->GetMacAddress(); in getMacAddress()
77 if (impl_ == nullptr) { in getInterfaceName()
[all …]
Dap_interface_binder.cpp29 ApInterfaceBinder::ApInterfaceBinder(ApInterfaceImpl* impl) : impl_{impl} { in ApInterfaceBinder()
37 if (!impl_) { in startHostapd()
41 *out_success = impl_->StartHostapd(); in startHostapd()
47 if (!impl_) { in stopHostapd()
51 *out_success = impl_->StopHostapd(); in stopHostapd()
63 if (!impl_) { in writeHostapdConfig()
84 *out_success = impl_->WriteHostapdConfig( in writeHostapdConfig()
91 if (!impl_) { in getInterfaceName()
95 *out_name = impl_->GetInterfaceName(); in getInterfaceName()
101 if (!impl_) { in getNumberOfAssociatedStations()
[all …]
Dap_interface_binder.h37 void NotifyImplDead() { impl_ = nullptr; } in NotifyImplDead()
52 ApInterfaceImpl* impl_;
Dclient_interface_binder.h38 void NotifyImplDead() { impl_ = nullptr; } in NotifyImplDead()
57 ClientInterfaceImpl* impl_;
/system/connectivity/wificond/rtt/
Drtt_controller_binder.h38 void NotifyImplDead() { impl_ = nullptr; } in NotifyImplDead()
41 RttControllerImpl* impl_;
Drtt_controller_binder.cpp24 RttControllerBinder::RttControllerBinder(RttControllerImpl* impl) : impl_{impl} { in RttControllerBinder()
/system/core/libmemunreachable/
DAllocator.h46 Heap(const Heap& other) : impl_(other.impl_), owns_impl_(false) {} in Heap()
69 return impl_ == other.impl_;
82 HeapImpl* impl = impl_; in make_unique()
99 HeapImpl* impl_;
DThreadCapture.cpp342 impl_ = impl_allocator.make_unique(pid, impl_allocator); in ThreadCapture()
348 return impl_->ListThreads(tids); in ListThreads()
352 return impl_->CaptureThreads(); in CaptureThreads()
356 return impl_->ReleaseThreads(); in ReleaseThreads()
360 return impl_->ReleaseThread(tid); in ReleaseThread()
364 return impl_->CapturedThreadInfo(threads); in CapturedThreadInfo()
368 impl_->InjectTestFunc(std::forward<std::function<void(pid_t)>>(f)); in InjectTestFunc()
DAllocator.cpp454 impl_ = new HeapImpl(); in Heap()
460 delete impl_; in ~Heap()
465 return impl_->Alloc(size); in allocate()
469 impl_->Free(ptr); in deallocate()
477 return impl_->Empty(); in empty()
DThreadCapture.h51 Allocator<ThreadCaptureImpl>::unique_ptr impl_; variable
/system/core/gatekeeperd/
DSoftGateKeeperDevice.h34 impl_.reset(new SoftGateKeeper()); in SoftGateKeeperDevice()
71 UniquePtr<SoftGateKeeper> impl_;
DSoftGateKeeperDevice.cpp58 impl_->Enroll(request, &response); in enroll()
91 impl_->Verify(request, &response); in verify()
/system/keymaster/
Dsoft_keymaster_device.cpp164 impl_(new AndroidKeymaster(context_, kOperationTableSize)), configured_(false) { in SoftKeymasterDevice()
174 impl_(new AndroidKeymaster(context_, kOperationTableSize)), configured_(false) { in SoftKeymasterDevice()
425 convert_device(dev)->impl_->SupportedAlgorithms(request, &response); in get_supported_algorithms()
461 convert_device(dev)->impl_->SupportedBlockModes(request, &response); in get_supported_block_modes()
498 convert_device(dev)->impl_->SupportedPaddingModes(request, &response); in get_supported_padding_modes()
533 convert_device(dev)->impl_->SupportedDigests(request, &response); in get_supported_digests()
565 convert_device(dev)->impl_->SupportedImportFormats(request, &response); in get_supported_import_formats()
598 convert_device(dev)->impl_->SupportedExportFormats(request, &response); in get_supported_export_formats()
646 convert_device(dev)->impl_->AddRngEntropy(request, &response); in add_rng_entropy()
759 sk_dev->impl_->GenerateKey(request, &response); in generate_key()
[all …]
/system/core/trusty/keymaster/
Dtrusty_keymaster_device_test.cpp39 static keymaster::AndroidKeymaster *impl_ = nullptr; variable
59 impl_ = new keymaster::AndroidKeymaster(new keymaster::SoftKeymasterContext(nullptr), 16); in trusty_keymaster_connect()
86 return fake_call(impl_, &keymaster::AndroidKeymaster::GenerateKey, in_buf, in_size, in trusty_keymaster_call()
89 return fake_call(impl_, &keymaster::AndroidKeymaster::BeginOperation, in_buf, in_size, in trusty_keymaster_call()
92 return fake_call(impl_, &keymaster::AndroidKeymaster::UpdateOperation, in_buf, in_size, in trusty_keymaster_call()
95 return fake_call(impl_, &keymaster::AndroidKeymaster::FinishOperation, in_buf, in_size, in trusty_keymaster_call()
98 return fake_call(impl_, &keymaster::AndroidKeymaster::ImportKey, in_buf, in_size, out_buf, in trusty_keymaster_call()
101 return fake_call(impl_, &keymaster::AndroidKeymaster::ExportKey, in_buf, in_size, out_buf, in trusty_keymaster_call()
/system/keymaster/include/keymaster/
Dsoft_keymaster_device.h78 impl_->GetVersion(req, rsp); in GetVersion()
247 UniquePtr<AndroidKeymaster> impl_; variable