Symbol: insn_decode
arch/x86/boot/compressed/sev-handle-vc.c
50
ret = insn_decode(&ctxt->insn, buffer, MAX_INSN_SIZE, INSN_MODE_64);
arch/x86/coco/sev/vc-handle.c
176
ret = insn_decode(&ctxt->insn, buffer, MAX_INSN_SIZE, INSN_MODE_64);
arch/x86/coco/tdx/tdx.c
594
if (insn_decode(&insn, buffer, MAX_INSN_SIZE, INSN_MODE_64))
arch/x86/include/asm/insn.h
170
extern int insn_decode(struct insn *insn, const void *kaddr, int buf_len, enum insn_mode m);
arch/x86/include/asm/insn.h
172
#define insn_decode_kernel(_insn, _ptr) insn_decode((_insn), (_ptr), MAX_INSN_SIZE, INSN_MODE_KERN)
arch/x86/kernel/uprobes.c
285
ret = insn_decode(insn, auprobe->insn, sizeof(auprobe->insn), m);
arch/x86/mm/extable.c
71
if (insn_decode(&insn, (void *) regs->ip, len, INSN_MODE_KERN))
arch/x86/tools/insn_decoder_test.c
152
ret = insn_decode(&insn, insn_buff, sizeof(insn_buff),
arch/x86/tools/insn_sanity.c
240
ret = insn_decode(&insn, insn_buff, sizeof(insn_buff),
tools/arch/x86/include/asm/insn.h
170
extern int insn_decode(struct insn *insn, const void *kaddr, int buf_len, enum insn_mode m);
tools/arch/x86/include/asm/insn.h
172
#define insn_decode_kernel(_insn, _ptr) insn_decode((_insn), (_ptr), MAX_INSN_SIZE, INSN_MODE_KERN)
tools/objtool/arch/x86/decode.c
108
insn_decode(&insn, sec->data->d_buf + o, sec_size(sec) - o,
tools/objtool/arch/x86/decode.c
237
ret = insn_decode(&ins, sec->data->d_buf + offset, maxlen,
tools/perf/arch/x86/tests/insn-x86.c
106
ret = insn_decode(&insn, dat->data, MAX_INSN_SIZE,
tools/perf/util/intel-pt-decoder/intel-pt-insn-decoder.c
196
ret = insn_decode(&insn, buf, len,
tools/perf/util/intel-pt-decoder/intel-pt-insn-decoder.c
224
ret = insn_decode(&insn, inbuf, inlen,
tools/perf/util/sample.c
122
ret = insn_decode(&insn, sample->insn, len,