Home
last modified time | relevance | path

Searched refs:value_history_chain (Results 1 – 1 of 1) sorted by relevance

/freebsd-10-stable/contrib/gdb/gdb/
Dvalues.c68 static struct value_history_chunk *value_history_chain; variable
276 new->next = value_history_chain; in record_latest_value()
277 value_history_chain = new; in record_latest_value()
280 value_history_chain->values[i] = val; in record_latest_value()
316 chunk = value_history_chain; in access_value_history()
335 while (value_history_chain) in clear_value_history()
338 if ((val = value_history_chain->values[i]) != NULL) in clear_value_history()
340 next = value_history_chain->next; in clear_value_history()
341 xfree (value_history_chain); in clear_value_history()
342 value_history_chain = next; in clear_value_history()