Lines Matching defs:use_64
551 bool use_64 = (GetVersion() >= 11);
552 uint32_t command_addr_byte_size = use_64 ? 8 : 4;
553 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM;
590 bool use_64 = (GetVersion() >= 11);
591 uint32_t command_addr_byte_size = use_64 ? 8 : 4;
592 const CommandType command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM;
1253 bool use_64 = (GetVersion() >= 11);
1254 uint32_t command_addr_byte_size = use_64 ? 8 : 4;
1256 set ? (use_64 ? KDP_BREAKPOINT_SET64 : KDP_BREAKPOINT_SET)
1257 : (use_64 ? KDP_BREAKPOINT_REMOVE64 : KDP_BREAKPOINT_REMOVE);