Home
last modified time | relevance | path

Searched defs:at_command (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/utils/src/
Dat_command_parser.rs282 let at_command = parse_at_command_data("".to_string()); in test_parse_empty_fails() localVariable
285 let at_command = parse_at_command_data("+".to_string()); in test_parse_empty_fails() localVariable
288 let at_command = parse_at_command_data("AT+".to_string()); in test_parse_empty_fails() localVariable
295 let at_command = parse_at_command_data("+CMD".to_string()).unwrap(); in test_at_string_copied() localVariable
301 let at_command = parse_at_command_data("CMD=".to_string()).unwrap(); in test_parse_command_type() localVariable
304 let at_command = parse_at_command_data("CMD?".to_string()).unwrap(); in test_parse_command_type() localVariable
307 let at_command = parse_at_command_data("CMD=?".to_string()).unwrap(); in test_parse_command_type() localVariable
310 let at_command = parse_at_command_data("CMD".to_string()).unwrap(); in test_parse_command_type() localVariable
317 let at_command = parse_at_command_data("CMD".to_string()).unwrap(); in test_parse_command() localVariable
321 let at_command = parse_at_command_data("AT+CMD".to_string()).unwrap(); in test_parse_command() localVariable
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/hfp/
Dhfp_shim.cc230 const std::string at_command = common::ToString(at_string); in UnknownAtCallback() local
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_media.rs1586 let at_command = match parse_at_command_data(at_string) { in dispatch_hfp_callbacks() localVariable