Lines Matching refs:hook_invoke
160 auto hook_invoke = code_ir->Alloc<lir::Bytecode>(); in Apply() local
161 hook_invoke->opcode = dex::OP_INVOKE_STATIC_RANGE; in Apply()
162 hook_invoke->operands.push_back(args); in Apply()
163 hook_invoke->operands.push_back(hook_method); in Apply()
166 code_ir->instructions.InsertBefore(bytecode, hook_invoke); in Apply()
338 auto hook_invoke = code_ir->Alloc<lir::Bytecode>(); in InjectArrayParamsHook() local
339 hook_invoke->opcode = dex::OP_INVOKE_STATIC_RANGE; in InjectArrayParamsHook()
340 hook_invoke->operands.push_back(args); in InjectArrayParamsHook()
341 hook_invoke->operands.push_back(hook_method); in InjectArrayParamsHook()
342 code_ir->instructions.InsertBefore(bytecode, hook_invoke); in InjectArrayParamsHook()
491 auto hook_invoke = code_ir->Alloc<lir::Bytecode>(); in Apply() local
492 hook_invoke->opcode = dex::OP_INVOKE_STATIC_RANGE; in Apply()
493 hook_invoke->operands.push_back(args); in Apply()
494 hook_invoke->operands.push_back(hook_method); in Apply()
495 code_ir->instructions.InsertBefore(bytecode, hook_invoke); in Apply()