Lines Matching refs:ptr

834 	char *ptr = output_buffer;  in stub_is_stopped()  local
839 *ptr++ = 'T'; in stub_is_stopped()
840 ptr = hex_byte_pack(ptr, sigval); in stub_is_stopped()
926 strncpy(ptr, "rwatch", 6); in stub_is_stopped()
927 ptr += 6; in stub_is_stopped()
930 strncpy(ptr, "watch", 5); in stub_is_stopped()
931 ptr += 5; in stub_is_stopped()
934 strncpy(ptr, "awatch", 6); in stub_is_stopped()
935 ptr += 6; in stub_is_stopped()
940 *ptr++ = ':'; in stub_is_stopped()
942 ptr = mem2hex_nbo(ptr, (unsigned char *)&stopped_data_address, register_size[EDA]); in stub_is_stopped()
943 *ptr++ = ';'; in stub_is_stopped()
948 ptr = hex_byte_pack(ptr, PC); in stub_is_stopped()
949 *ptr++ = ':'; in stub_is_stopped()
950 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[PC]); in stub_is_stopped()
951 *ptr++ = ';'; in stub_is_stopped()
954 ptr = hex_byte_pack(ptr, R8); in stub_is_stopped()
955 *ptr++ = ':'; in stub_is_stopped()
956 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[R8]); in stub_is_stopped()
957 *ptr++ = ';'; in stub_is_stopped()
960 ptr = hex_byte_pack(ptr, SP); in stub_is_stopped()
961 *ptr++ = ':'; in stub_is_stopped()
962 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[SP]); in stub_is_stopped()
963 *ptr++ = ';'; in stub_is_stopped()
967 ptr = hex_byte_pack(ptr, ERP); in stub_is_stopped()
968 *ptr++ = ':'; in stub_is_stopped()
969 ptr = mem2hex(ptr, (unsigned char *)&reg_cont, register_size[ERP]); in stub_is_stopped()
970 *ptr++ = ';'; in stub_is_stopped()
973 *ptr = 0; in stub_is_stopped()