/system/bt/gd/l2cap/ |
D | Android.bp | 27 "le/dynamic_channel.cc", 28 "le/dynamic_channel_manager.cc", 29 "le/dynamic_channel_service.cc", 30 "le/fixed_channel.cc", 31 "le/fixed_channel_manager.cc", 32 "le/fixed_channel_service.cc", 33 "le/link_options.cc", 34 "le/internal/dynamic_channel_service_manager_impl.cc", 35 "le/internal/fixed_channel_impl.cc", 36 "le/internal/fixed_channel_service_manager_impl.cc", [all …]
|
/system/bt/gd/att/ |
D | att_module.cc | 36 l2cap::le::FixedChannelManager::RegistrationResult result, in OnAttRegistrationCompleteLe() 37 std::unique_ptr<l2cap::le::FixedChannelService> le_smp_service) { in OnAttRegistrationCompleteLe() 41 void OnAttConnectionOpenLe(std::unique_ptr<l2cap::le::FixedChannel> channel) { in OnAttConnectionOpenLe() 49 l2cap::le::L2capLeModule* l2cap_le_module, in impl() 53 std::unique_ptr<bluetooth::l2cap::le::FixedChannelManager> l2cap_manager_le_( in impl() 66 l2cap::le::L2capLeModule* l2cap_le_module_; 71 list->add<l2cap::le::L2capLeModule>(); in ListDependencies() 77 …GetHandler(), GetDependency<l2cap::le::L2capLeModule>(), GetDependency<l2cap::classic::L2capClassi… in Start()
|
/system/vold/ |
D | Checkpoint.cpp | 555 log_entry* le, std::vector<char>& buffer) { in restoreSector() argument 557 uint32_t index = le - ((log_entry*)&ls_buffer[ls.header_size]); in restoreSector() 558 int count = (le->size - 1) / kSectorSize + 1; in restoreSector() 560 if (checkCollision(used_sectors, le->source, le->source + count)) { in restoreSector() 571 markUsed(used_sectors, le->dest, le->dest + count); in restoreSector() 580 lseek64(device_fd, le->source * kSectorSize, SEEK_SET); in restoreSector() 581 write(device_fd, &buffer[0], le->size); in restoreSector() 662 for (log_entry* le = in cp_restoreCheckpoint() local 664 le >= reinterpret_cast<log_entry*>(&ls_buffer[ls.header_size]); --le) { in cp_restoreCheckpoint() 666 LOG(VERBOSE) << action << " " << le->size << " bytes from sector " << le->dest in cp_restoreCheckpoint() [all …]
|
/system/bt/gd/security/ |
D | l2cap_security_module_interface.cc | 35 void L2capSecurityModuleInterface::Enforce(hci::AddressWithType remote, l2cap::le::SecurityPolicy p… in Enforce() 36 … l2cap::le::SecurityEnforcementInterface::ResultCallback result_callback) { in Enforce() 39 std::forward<hci::AddressWithType>(remote), std::forward<l2cap::le::SecurityPolicy>(policy), in Enforce() 40 std::forward<l2cap::le::SecurityEnforcementInterface::ResultCallback>(result_callback))); in Enforce()
|
D | l2cap_security_module_interface.h | 26 public l2cap::le::SecurityEnforcementInterface { 31 void Enforce(hci::AddressWithType remote, l2cap::le::SecurityPolicy policy, 32 l2cap::le::SecurityEnforcementInterface::ResultCallback result_callback) override;
|
D | security_module.cc | 42 l2cap::le::L2capLeModule* l2cap_le_module, in impl() 63 l2cap::le::L2capLeModule* l2cap_le_module_; 81 list->add<l2cap::le::L2capLeModule>(); in ListDependencies() 91 GetDependency<l2cap::le::L2capLeModule>(), in Start()
|
/system/bt/binder/android/bluetooth/ |
D | IBluetoothGatt.aidl | 22 import android.bluetooth.le.AdvertiseSettings; 23 import android.bluetooth.le.AdvertiseData; 24 import android.bluetooth.le.AdvertisingSetParameters; 25 import android.bluetooth.le.PeriodicAdvertisingParameters; 26 import android.bluetooth.le.ScanFilter; 27 import android.bluetooth.le.ScanResult; 28 import android.bluetooth.le.ScanSettings; 29 import android.bluetooth.le.ResultStorageDescriptor; 35 import android.bluetooth.le.IAdvertisingSetCallback; 36 import android.bluetooth.le.IPeriodicAdvertisingCallback; [all …]
|
/system/bt/gd/security/internal/ |
D | security_manager_impl.h | 48 std::unique_ptr<l2cap::le::FixedChannel> channel_; 56 l2cap::le::L2capLeModule* l2cap_le_module, 184 void EnforceLeSecurityPolicy(hci::AddressWithType remote, l2cap::le::SecurityPolicy policy, 185 … l2cap::le::SecurityEnforcementInterface::ResultCallback result_callback); 201 void OnL2capRegistrationCompleteLe(l2cap::le::FixedChannelManager::RegistrationResult result, 202 … std::unique_ptr<l2cap::le::FixedChannelService> le_smp_service); 204 void OnConnectionOpenLe(std::unique_ptr<l2cap::le::FixedChannel> channel); 206 void OnConnectionFailureLe(bluetooth::l2cap::le::FixedChannelManager::ConnectionResult result); 220 l2cap::le::L2capLeModule* l2cap_le_module_ __attribute__((unused)); 221 std::unique_ptr<l2cap::le::FixedChannelManager> l2cap_manager_le_;
|
D | security_manager_impl.cc | 373 l2cap::le::FixedChannelManager::RegistrationResult result, in OnL2capRegistrationCompleteLe() 374 std::unique_ptr<l2cap::le::FixedChannelService> le_smp_service) { in OnL2capRegistrationCompleteLe() 375 ASSERT_LOG(result == bluetooth::l2cap::le::FixedChannelManager::RegistrationResult::SUCCESS, in OnL2capRegistrationCompleteLe() 405 std::unique_ptr<l2cap::le::FixedChannel>& channel = stored_chan->channel_; in OnSmpCommandLe() 486 void SecurityManagerImpl::OnConnectionOpenLe(std::unique_ptr<l2cap::le::FixedChannel> channel_param… in OnConnectionOpenLe() 570 void SecurityManagerImpl::OnConnectionFailureLe(bluetooth::l2cap::le::FixedChannelManager::Connecti… in OnConnectionFailureLe() 572 … bluetooth::l2cap::le::FixedChannelManager::ConnectionResultCode::FAIL_ALL_SERVICES_HAVE_CHANNEL) { in OnConnectionFailureLe() 582 l2cap::le::L2capLeModule* l2cap_le_module, in SecurityManagerImpl() 718 hci::AddressWithType remote, l2cap::le::SecurityPolicy policy, in EnforceLeSecurityPolicy() 719 l2cap::le::SecurityEnforcementInterface::ResultCallback result_callback) { in EnforceLeSecurityPolicy() [all …]
|
/system/bt/binder/android/bluetooth/le/ |
D | IScannerCallback.aidl | 16 package android.bluetooth.le; 18 import android.bluetooth.le.ScanResult;
|
D | IPeriodicAdvertisingCallback.aidl | 16 package android.bluetooth.le; 19 import android.bluetooth.le.PeriodicAdvertisingReport;
|
D | AdvertisingSetParameters.aidl | 17 package android.bluetooth.le;
|
D | PeriodicAdvertisingReport.aidl | 17 package android.bluetooth.le;
|
D | ResultStorageDescriptor.aidl | 17 package android.bluetooth.le;
|
D | ScanSettings.aidl | 17 package android.bluetooth.le;
|
D | AdvertiseSettings.aidl | 17 package android.bluetooth.le;
|
D | PeriodicAdvertisingParameters.aidl | 17 package android.bluetooth.le;
|
D | AdvertiseData.aidl | 17 package android.bluetooth.le;
|
D | ScanResult.aidl | 17 package android.bluetooth.le;
|
D | ScanFilter.aidl | 17 package android.bluetooth.le;
|
/system/bt/binder/ |
D | Android.bp | 40 "android/bluetooth/le/IAdvertisingSetCallback.aidl", 41 "android/bluetooth/le/IPeriodicAdvertisingCallback.aidl", 42 "android/bluetooth/le/IScannerCallback.aidl" 115 "android/bluetooth/le/IAdvertisingSetCallback.aidl", 116 "android/bluetooth/le/IPeriodicAdvertisingCallback.aidl", 117 "android/bluetooth/le/IScannerCallback.aidl",
|
/system/bt/main/shim/ |
D | entry.h | 55 namespace le { 80 l2cap::le::L2capLeModule* GetL2capLeModule();
|
D | entry.cc | 84 bluetooth::l2cap::le::L2capLeModule* GetL2capLeModule() { in GetL2capLeModule() 87 ->GetInstance<bluetooth::l2cap::le::L2capLeModule>(); in GetL2capLeModule()
|
/system/core/libcutils/arch-arm64/ |
D | android_memset.S | 84 b.le .Ltail15tiny 133 b.le .Ltail63 154 b.le .Ltail_maybe_tiny 162 b.le .Ltail63
|
/system/bt/gd/l2cap/le/ |
D | dynamic_channel.cc | 22 namespace le { namespace
|