Home
last modified time | relevance | path

Searched refs:call_id (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/
Dgatt_ble_scanner_shim.h111 void MsftAdvMonitorAdd(uint32_t call_id, const RustMsftAdvMonitor& monitor);
114 void MsftAdvMonitorRemove(uint32_t call_id, uint8_t monitor_handle);
117 void MsftAdvMonitorEnable(uint32_t call_id, bool enable);
185 void OnMsftAdvMonitorAddCallback(uint32_t call_id, uint8_t monitor_handle, uint8_t status);
186 void OnMsftAdvMonitorRemoveCallback(uint32_t call_id, uint8_t status);
187 void OnMsftAdvMonitorEnableCallback(uint32_t call_id, uint8_t status);
Dgatt_ble_scanner_shim.cc253 void BleScannerIntf::MsftAdvMonitorAdd(uint32_t call_id, const RustMsftAdvMonitor& monitor) { in MsftAdvMonitorAdd() argument
256 base::Bind(&BleScannerIntf::OnMsftAdvMonitorAddCallback, base::Unretained(this), call_id)); in MsftAdvMonitorAdd()
259 void BleScannerIntf::MsftAdvMonitorRemove(uint32_t call_id, uint8_t monitor_handle) { in MsftAdvMonitorRemove() argument
261 …dle, base::Bind(&BleScannerIntf::OnMsftAdvMonitorRemoveCallback, base::Unretained(this), call_id)); in MsftAdvMonitorRemove()
264 void BleScannerIntf::MsftAdvMonitorEnable(uint32_t call_id, bool enable) { in MsftAdvMonitorEnable() argument
266 …ble, base::Bind(&BleScannerIntf::OnMsftAdvMonitorEnableCallback, base::Unretained(this), call_id)); in MsftAdvMonitorEnable()
374 void BleScannerIntf::OnMsftAdvMonitorAddCallback(uint32_t call_id, uint8_t monitor_handle, uint8_t … in OnMsftAdvMonitorAddCallback() argument
375 rusty::gdscan_msft_adv_monitor_add_callback(call_id, monitor_handle, status); in OnMsftAdvMonitorAddCallback()
378 void BleScannerIntf::OnMsftAdvMonitorRemoveCallback(uint32_t call_id, uint8_t status) { in OnMsftAdvMonitorRemoveCallback() argument
379 rusty::gdscan_msft_adv_monitor_remove_callback(call_id, status); in OnMsftAdvMonitorRemoveCallback()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dasync_helper.rs56 let call_id = self.last_call_id; in call_method() localVariable
65 senders.lock().unwrap().remove(&call_id); in call_method()
77 return Arc::new(Mutex::new(Box::new(move |call_id, ret| { in get_callback_sender()
78 if let Some(sender) = senders.lock().unwrap().remove(&call_id) { in get_callback_sender()
Dbluetooth_gatt.rs1347 move |call_id| { in msft_adv_monitor_add()
1348 gatt.lock().unwrap().scanner.msft_adv_monitor_add(call_id, &monitor); in msft_adv_monitor_add()
1361 move |call_id| { in msft_adv_monitor_remove()
1362 gatt.lock().unwrap().scanner.msft_adv_monitor_remove(call_id, monitor_handle); in msft_adv_monitor_remove()
1375 move |call_id| { in msft_adv_monitor_enable()
1376 gatt.lock().unwrap().scanner.msft_adv_monitor_enable(call_id, enable); in msft_adv_monitor_enable()
3784 call_id: u32, in inband_msft_adv_monitor_add_callback()
3790 fn inband_msft_adv_monitor_remove_callback(&mut self, call_id: u32, status: u8); in inband_msft_adv_monitor_remove_callback()
3793 fn inband_msft_adv_monitor_enable_callback(&mut self, call_id: u32, status: u8); in inband_msft_adv_monitor_enable_callback()
3886 call_id: u32, in inband_msft_adv_monitor_add_callback()
[all …]
/packages/apps/Dialer/java/com/android/dialer/calldetails/proto/
Dcall_details_entries.proto13 optional int64 call_id = 1; field
23 // android.telecom.Call}. This is different from call_id which is id of call
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs167 call_id: u32, in MsftAdvMonitorAdd()
170 fn MsftAdvMonitorRemove(self: Pin<&mut BleScannerIntf>, call_id: u32, monitor_handle: u8); in MsftAdvMonitorRemove()
171 fn MsftAdvMonitorEnable(self: Pin<&mut BleScannerIntf>, call_id: u32, enable: bool); in MsftAdvMonitorEnable()
280 call_id: u32, in gdscan_msft_adv_monitor_add_callback()
284 unsafe fn gdscan_msft_adv_monitor_remove_callback(call_id: u32, status: u8); in gdscan_msft_adv_monitor_remove_callback()
285 unsafe fn gdscan_msft_adv_monitor_enable_callback(call_id: u32, status: u8); in gdscan_msft_adv_monitor_enable_callback()
1523 pub fn msft_adv_monitor_add(&mut self, call_id: u32, monitor: &MsftAdvMonitor) { in msft_adv_monitor_add()
1524 mutcxxcall!(self, MsftAdvMonitorAdd, call_id, monitor); in msft_adv_monitor_add()
1527 pub fn msft_adv_monitor_remove(&mut self, call_id: u32, monitor_handle: u8) { in msft_adv_monitor_remove()
1528 mutcxxcall!(self, MsftAdvMonitorRemove, call_id, monitor_handle); in msft_adv_monitor_remove()
[all …]
/packages/apps/Dialer/java/com/android/contacts/common/widget/
Dselect_phone_account_dialog_options.proto35 optional string call_id = 4; field