Home
last modified time | relevance | path

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

/system/bt/gd/rust/hci/src/
Dlib.rs183 let this_opcode = evt.get_command_op_code(); in dispatch() localVariable
185 Some(QueuedCommand{cmd, fut}) if cmd.get_op_code() == this_opcode => { in dispatch()
190 …me(QueuedCommand{cmd, ..}) => panic!("Waiting for {:?}, got {:?}", cmd.get_op_code(), this_opcode), in dispatch()
191 None => panic!("Unexpected status event with opcode {:?}", this_opcode), in dispatch()
196 let this_opcode = evt.get_command_op_code(); in dispatch() localVariable
198 Some(QueuedCommand{cmd, fut}) if cmd.get_op_code() == this_opcode => { in dispatch()
203 …me(QueuedCommand{cmd, ..}) => panic!("Waiting for {:?}, got {:?}", cmd.get_op_code(), this_opcode), in dispatch()
204 … None => panic!("Unexpected complete event with opcode {:?}", this_opcode), in dispatch()