Lines Matching refs:ptr

863 	char *ptr = output_buffer;  in stub_is_stopped()  local
868 *ptr++ = 'T'; in stub_is_stopped()
869 ptr = hex_byte_pack(ptr, sigval); in stub_is_stopped()
955 strncpy(ptr, "rwatch", 6); in stub_is_stopped()
956 ptr += 6; in stub_is_stopped()
959 strncpy(ptr, "watch", 5); in stub_is_stopped()
960 ptr += 5; in stub_is_stopped()
963 strncpy(ptr, "awatch", 6); in stub_is_stopped()
964 ptr += 6; in stub_is_stopped()
969 *ptr++ = ':'; in stub_is_stopped()
971 ptr = mem2hex_nbo(ptr, (unsigned char *)&stopped_data_address, register_size[EDA]); in stub_is_stopped()
972 *ptr++ = ';'; in stub_is_stopped()
977 ptr = hex_byte_pack(ptr, PC); in stub_is_stopped()
978 *ptr++ = ':'; in stub_is_stopped()
979 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[PC]); in stub_is_stopped()
980 *ptr++ = ';'; in stub_is_stopped()
983 ptr = hex_byte_pack(ptr, R8); in stub_is_stopped()
984 *ptr++ = ':'; in stub_is_stopped()
985 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[R8]); in stub_is_stopped()
986 *ptr++ = ';'; in stub_is_stopped()
989 ptr = hex_byte_pack(ptr, SP); in stub_is_stopped()
990 *ptr++ = ':'; in stub_is_stopped()
991 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[SP]); in stub_is_stopped()
992 *ptr++ = ';'; in stub_is_stopped()
996 ptr = hex_byte_pack(ptr, ERP); in stub_is_stopped()
997 *ptr++ = ':'; in stub_is_stopped()
998 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[ERP]); in stub_is_stopped()
999 *ptr++ = ';'; in stub_is_stopped()
1002 *ptr = 0; in stub_is_stopped()