/external/qemu/disas/ |
mips.c | [all...] |
ppc.c | [all...] |
i386.c | [all...] |
arm.c | [all...] |
/external/qemu/include/disas/ |
bfd.h | 264 fprintf_function fprintf_func; member in struct:disassemble_info 429 It prints a message using info->fprintf_func and info->stream. */ 443 #define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \ 448 INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC) 455 #define INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC) \ 456 (INFO).fprintf_func = (FPRINTF_FUNC), \
|
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/x86_64-linux-gnu/aarch64-linux-android/include/ |
dis-asm.h | 64 fprintf_ftype fprintf_func; member in struct:disassemble_info 350 It prints a message using info->fprintf_func and info->stream. */ 371 fprintf_ftype fprintf_func); 374 #define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \ 375 init_disassemble_info (&(INFO), (STREAM), (fprintf_ftype) (FPRINTF_FUNC)) 376 #define INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC) \ 377 init_disassemble_info (&(INFO), (STREAM), (fprintf_ftype) (FPRINTF_FUNC))
|
/external/qemu/ |
disas.c | 53 (*info->fprintf_func) (info->stream, "Unknown error %d\n", status); 57 (*info->fprintf_func) (info->stream, 71 (*info->fprintf_func) (info->stream, "0x%" PRIx64, addr); 171 info->fprintf_func(info->stream, "\n%s: ", prefix); 173 info->fprintf_func(info->stream, "%02x", buf[i]);
|