Home
last modified time | relevance | path

Searched refs:le (Results 1 – 25 of 87) sorted by relevance

1234

/system/bt/gd/l2cap/
DAndroid.bp27 "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/
Datt_module.cc36 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/
DCheckpoint.cpp555 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/
Dl2cap_security_module_interface.cc35 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()
Dl2cap_security_module_interface.h26 public l2cap::le::SecurityEnforcementInterface {
31 void Enforce(hci::AddressWithType remote, l2cap::le::SecurityPolicy policy,
32 l2cap::le::SecurityEnforcementInterface::ResultCallback result_callback) override;
Dsecurity_module.cc42 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/
DIBluetoothGatt.aidl22 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/
Dsecurity_manager_impl.h48 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_;
Dsecurity_manager_impl.cc373 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/
DIScannerCallback.aidl16 package android.bluetooth.le;
18 import android.bluetooth.le.ScanResult;
DIPeriodicAdvertisingCallback.aidl16 package android.bluetooth.le;
19 import android.bluetooth.le.PeriodicAdvertisingReport;
DAdvertisingSetParameters.aidl17 package android.bluetooth.le;
DPeriodicAdvertisingReport.aidl17 package android.bluetooth.le;
DResultStorageDescriptor.aidl17 package android.bluetooth.le;
DScanSettings.aidl17 package android.bluetooth.le;
DAdvertiseSettings.aidl17 package android.bluetooth.le;
DPeriodicAdvertisingParameters.aidl17 package android.bluetooth.le;
DAdvertiseData.aidl17 package android.bluetooth.le;
DScanResult.aidl17 package android.bluetooth.le;
DScanFilter.aidl17 package android.bluetooth.le;
/system/bt/binder/
DAndroid.bp40 "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/
Dentry.h55 namespace le {
80 l2cap::le::L2capLeModule* GetL2capLeModule();
Dentry.cc84 bluetooth::l2cap::le::L2capLeModule* GetL2capLeModule() { in GetL2capLeModule()
87 ->GetInstance<bluetooth::l2cap::le::L2capLeModule>(); in GetL2capLeModule()
/system/core/libcutils/arch-arm64/
Dandroid_memset.S84 b.le .Ltail15tiny
133 b.le .Ltail63
154 b.le .Ltail_maybe_tiny
162 b.le .Ltail63
/system/bt/gd/l2cap/le/
Ddynamic_channel.cc22 namespace le { namespace

1234