/system/connectivity/shill/ |
D | accessor_interface.h | 75 typedef std::shared_ptr<AccessorInterface<bool>> BoolAccessor; 76 typedef std::shared_ptr<AccessorInterface<int16_t>> Int16Accessor; 77 typedef std::shared_ptr<AccessorInterface<int32_t>> Int32Accessor; 81 typedef std::shared_ptr< 83 typedef std::shared_ptr< 85 typedef std::shared_ptr<AccessorInterface<std::string>> StringAccessor; 86 typedef std::shared_ptr<AccessorInterface<Stringmap>> StringmapAccessor; 87 typedef std::shared_ptr<AccessorInterface<Stringmaps>> StringmapsAccessor; 88 typedef std::shared_ptr<AccessorInterface<Strings>> StringsAccessor; 89 typedef std::shared_ptr< [all …]
|
D | property_observer.h | 41 PropertyObserver(std::shared_ptr<AccessorInterface<T>> accessor, in PropertyObserver() 65 std::shared_ptr<AccessorInterface<T>> accessor_;
|
D | dns_client.cc | 71 map<ares_socket_t, std::shared_ptr<IOHandler>> read_handlers; 72 map<ares_socket_t, std::shared_ptr<IOHandler>> write_handlers; 303 map<ares_socket_t, std::shared_ptr<IOHandler>> old_read = in RefreshHandles() 305 map<ares_socket_t, std::shared_ptr<IOHandler>> old_write = in RefreshHandles() 325 std::shared_ptr<IOHandler> ( in RefreshHandles() 336 std::shared_ptr<IOHandler> ( in RefreshHandles()
|
/system/tpm/tpm_manager/server/ |
D | tpm_manager_service.h | 103 const std::shared_ptr<ReplyProtobufType>& reply); 125 const std::shared_ptr<GetTpmStatusReply>& result); 130 const std::shared_ptr<TakeOwnershipReply>& result); 136 const std::shared_ptr<RemoveOwnerDependencyReply>& result); 147 const std::shared_ptr<DefineNvramReply>& result); 152 const std::shared_ptr<DestroyNvramReply>& result); 157 const std::shared_ptr<WriteNvramReply>& result); 162 const std::shared_ptr<ReadNvramReply>& result); 167 const std::shared_ptr<IsNvramDefinedReply>& result); 172 const std::shared_ptr<IsNvramLockedReply>& result); [all …]
|
D | tpm_manager_service.cc | 70 const std::shared_ptr<GetTpmStatusReply>& result) { in GetTpmStatusTask() 101 const std::shared_ptr<TakeOwnershipReply>& result) { in TakeOwnershipTask() 123 const std::shared_ptr<RemoveOwnerDependencyReply>& result) { in RemoveOwnerDependencyTask() 164 const std::shared_ptr<DefineNvramReply>& result) { in DefineNvramTask() 181 const std::shared_ptr<DestroyNvramReply>& result) { in DestroyNvramTask() 198 const std::shared_ptr<WriteNvramReply>& result) { in WriteNvramTask() 215 const std::shared_ptr<ReadNvramReply>& result) { in ReadNvramTask() 232 const std::shared_ptr<IsNvramDefinedReply>& result) { in IsNvramDefinedTask() 251 const std::shared_ptr<IsNvramLockedReply>& result) { in IsNvramLockedTask() 270 const std::shared_ptr<GetNvramSizeReply>& result) { in GetNvramSizeTask() [all …]
|
/system/tpm/attestation/server/ |
D | attestation_service.h | 104 const std::shared_ptr<brillo::http::Transport>& transport) { in set_http_transport() 132 const std::shared_ptr<ReplyProtobufType>& reply) { in TaskRelayCallback() 140 const std::shared_ptr<CreateGoogleAttestedKeyReply>& result); 145 const std::shared_ptr<GetKeyInfoReply>& result); 150 const std::shared_ptr<GetEndorsementInfoReply>& result); 155 const std::shared_ptr<GetAttestationKeyInfoReply>& result); 160 const std::shared_ptr<ActivateAttestationKeyReply>& result); 165 const std::shared_ptr<CreateCertifiableKeyReply>& result); 169 const std::shared_ptr<DecryptReply>& result); 173 const std::shared_ptr<SignReply>& result); [all …]
|
D | dbus_service.cc | 81 using SharedResponsePointer = std::shared_ptr< in HandleCreateGoogleAttestedKey() 99 using SharedResponsePointer = std::shared_ptr< in HandleGetKeyInfo() 118 using SharedResponsePointer = std::shared_ptr< in HandleGetEndorsementInfo() 137 using SharedResponsePointer = std::shared_ptr< in HandleGetAttestationKeyInfo() 156 using SharedResponsePointer = std::shared_ptr< in HandleActivateAttestationKey() 175 using SharedResponsePointer = std::shared_ptr< in HandleCreateCertifiableKey() 193 using SharedResponsePointer = std::shared_ptr< in HandleDecrypt() 211 using SharedResponsePointer = std::shared_ptr< in HandleSign() 230 using SharedResponsePointer = std::shared_ptr< in HandleRegisterKeyWithChapsToken()
|
/system/vold/ |
D | MoveTask.h | 30 MoveTask(const std::shared_ptr<VolumeBase>& from, const std::shared_ptr<VolumeBase>& to); 36 std::shared_ptr<VolumeBase> mFrom; 37 std::shared_ptr<VolumeBase> mTo;
|
D | VolumeManager.h | 116 void addDiskSource(const std::shared_ptr<DiskSource>& diskSource); 118 std::shared_ptr<android::vold::Disk> findDisk(const std::string& id); 119 std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id); 132 int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol); 208 std::list<std::shared_ptr<DiskSource>> mDiskSources; 209 std::list<std::shared_ptr<android::vold::Disk>> mDisks; 214 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated; 215 std::shared_ptr<android::vold::VolumeBase> mPrimary;
|
D | VolumeBase.h | 93 void addVolume(const std::shared_ptr<VolumeBase>& volume); 94 void removeVolume(const std::shared_ptr<VolumeBase>& volume); 96 std::shared_ptr<VolumeBase> findVolume(const std::string& id); 145 std::list<std::shared_ptr<VolumeBase>> mVolumes;
|
D | Keymaster.h | 63 KeymasterOperation(std::shared_ptr<IKeymasterDevice> d, keymaster_operation_handle_t h) in KeymasterOperation() 65 std::shared_ptr<IKeymasterDevice> mDevice; 90 std::shared_ptr<IKeymasterDevice> mDevice;
|
D | MoveTask.cpp | 46 MoveTask::MoveTask(const std::shared_ptr<VolumeBase>& from, in MoveTask() 47 const std::shared_ptr<VolumeBase>& to) : in MoveTask() 159 static void bringOffline(const std::shared_ptr<VolumeBase>& vol) { in bringOffline() 167 static void bringOnline(const std::shared_ptr<VolumeBase>& vol) { in bringOnline()
|
/system/update_engine/common/ |
D | action.h | 165 const std::shared_ptr<ActionPipe< in set_in_pipe() 177 const std::shared_ptr<ActionPipe< in set_out_pipe() 219 std::shared_ptr<ActionPipe<typename ActionTraits<SubClass>::InputObjectType>> 221 std::shared_ptr<ActionPipe<typename ActionTraits<SubClass>::OutputObjectType>>
|
/system/update_engine/ |
D | update_attempter.cc | 80 using std::shared_ptr; 587 shared_ptr<PostinstallRunnerAction> postinstall_runner_action( in BuildPostInstallActions() 590 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action)); in BuildPostInstallActions() 606 shared_ptr<OmahaRequestAction> update_check_action( in BuildUpdateActions() 611 shared_ptr<OmahaResponseHandlerAction> response_handler_action( in BuildUpdateActions() 613 shared_ptr<FilesystemVerifierAction> src_filesystem_verifier_action( in BuildUpdateActions() 617 shared_ptr<OmahaRequestAction> download_started_action( in BuildUpdateActions() 629 shared_ptr<DownloadAction> download_action(new DownloadAction( in BuildUpdateActions() 635 shared_ptr<OmahaRequestAction> download_finished_action( in BuildUpdateActions() 643 shared_ptr<FilesystemVerifierAction> dst_filesystem_verifier_action( in BuildUpdateActions() [all …]
|
D | update_attempter_android.cc | 43 using std::shared_ptr; 390 shared_ptr<InstallPlanAction> install_plan_action( in BuildUpdateActions() 396 shared_ptr<DownloadAction> download_action(new DownloadAction( in BuildUpdateActions() 402 shared_ptr<FilesystemVerifierAction> dst_filesystem_verifier_action( in BuildUpdateActions() 406 shared_ptr<PostinstallRunnerAction> postinstall_runner_action( in BuildUpdateActions() 412 actions_.push_back(shared_ptr<AbstractAction>(install_plan_action)); in BuildUpdateActions() 413 actions_.push_back(shared_ptr<AbstractAction>(download_action)); in BuildUpdateActions() 415 shared_ptr<AbstractAction>(dst_filesystem_verifier_action)); in BuildUpdateActions() 416 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action)); in BuildUpdateActions() 426 for (const shared_ptr<AbstractAction>& action : actions_) in BuildUpdateActions()
|
/system/core/libmemunreachable/ |
D | Allocator.h | 93 using shared_ptr = std::shared_ptr<T>; variable 96 shared_ptr<T> make_shared(Args&&... args); 181 using shared_ptr = Heap::shared_ptr<T>; variable 184 shared_ptr make_shared(Args&& ...args) { in make_shared() 200 inline Heap::shared_ptr<T> Heap::make_shared(Args&&... args) { in make_shared()
|
/system/core/metricsd/uploader/ |
D | metricsd_service_runner.h | 30 MetricsdServiceRunner(std::shared_ptr<CrashCounters> counters); 46 std::shared_ptr<CrashCounters> counters_;
|
D | bn_metricsd_impl.h | 25 explicit BnMetricsdImpl(const std::shared_ptr<CrashCounters>& counters); 51 std::shared_ptr<CrashCounters> counters_;
|
/system/connectivity/shill/cellular/ |
D | modem_manager.cc | 30 using std::shared_ptr; 78 void ModemManager::RecordAddedModem(shared_ptr<Modem> modem) { in RecordAddedModem() 140 shared_ptr<ModemClassic> modem(new ModemClassic(service(), in AddModemClassic() 152 void ModemManagerClassic::InitModemClassic(shared_ptr<ModemClassic> modem) { in InitModemClassic()
|
D | modem_manager.h | 62 typedef std::map<std::string, std::shared_ptr<Modem>> Modems; 81 void RecordAddedModem(std::shared_ptr<Modem> modem); 133 virtual void InitModemClassic(std::shared_ptr<ModemClassic> modem); 160 virtual void InitModem1(std::shared_ptr<Modem1> modem,
|
D | modem_manager_1.cc | 30 using std::shared_ptr; 91 shared_ptr<Modem1> modem1(new Modem1(service(), in AddModem1() 99 void ModemManager1::InitModem1(shared_ptr<Modem1> modem, in InitModem1()
|
/system/bt/service/hal/ |
D | fake_bluetooth_gatt_interface.h | 87 FakeBluetoothGattInterface(std::shared_ptr<TestClientHandler> client_handler, 88 std::shared_ptr<TestServerHandler> server_handler); 145 std::shared_ptr<TestClientHandler> client_handler_; 146 std::shared_ptr<TestServerHandler> server_handler_;
|
/system/bt/service/ipc/binder/ |
D | interface_with_instances_base.h | 72 std::shared_ptr<bluetooth::BluetoothInstance> GetInstance( 101 std::unordered_map<int, std::shared_ptr<bluetooth::BluetoothInstance>>
|
D | interface_with_instances_base.cpp | 96 std::shared_ptr<bluetooth::BluetoothInstance> 100 return std::shared_ptr<bluetooth::BluetoothInstance>(); in GetInstance() 141 std::shared_ptr<bluetooth::BluetoothInstance>(instance.release()); in OnRegisterInstance()
|
/system/weaved/buffet/ |
D | shill_client.h | 71 std::shared_ptr<org::chromium::flimflam::ServiceProxy> selected_service; 111 std::shared_ptr<org::chromium::flimflam::ServiceProxy> 124 std::shared_ptr<org::chromium::flimflam::ServiceProxy> connecting_service_;
|