Lines Matching refs:func_ref
300 |func_ref: InterpreterFunctionRef<'a>, in step()
304 let signature = func_ref.signature(); in step()
313 Ok(match func_ref { in step()
393 let func_ref = if let InstructionData::Call { func_ref, .. } = inst { in step() localVariable
394 func_ref in step()
403 .get(func_ref) in step()
404 .ok_or(StepError::UnknownFunction(func_ref))?; in step()
411 .get_function(func_ref) in step()
412 .ok_or(StepError::UnknownFunction(func_ref))?; in step()
447 let func_ref = if let InstructionData::FuncAddr { func_ref, .. } = inst { in step() localVariable
448 func_ref in step()
457 .get(func_ref) in step()
458 .ok_or(StepError::UnknownFunction(func_ref))?; in step()