Searched refs:use_64 (Results 1 – 1 of 1) sorted by relevance
684 bool use_64 = (GetVersion() >= 11); in SendRequestReadMemory() local685 uint32_t command_addr_byte_size = use_64 ? 8 : 4; in SendRequestReadMemory()686 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM; in SendRequestReadMemory()729 bool use_64 = (GetVersion() >= 11); in SendRequestWriteMemory() local730 uint32_t command_addr_byte_size = use_64 ? 8 : 4; in SendRequestWriteMemory()731 const CommandType command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM; in SendRequestWriteMemory()1413 bool use_64 = (GetVersion() >= 11); in SendRequestBreakpoint() local1414 uint32_t command_addr_byte_size = use_64 ? 8 : 4; in SendRequestBreakpoint()1415 const CommandType command = set ? (use_64 ? KDP_BREAKPOINT_SET64 : KDP_BREAKPOINT_SET ): in SendRequestBreakpoint()1416 (use_64 ? KDP_BREAKPOINT_REMOVE64 : KDP_BREAKPOINT_REMOVE); in SendRequestBreakpoint()