Lines Matching refs:notes_data
776 tmp->notes_data = NULL; in run_new_with_arg()
801 new_data = (char **) realloc(msg->notes_data, in run_notes_expand_to_hold_more()
805 msg->notes_data = new_data; in run_notes_expand_to_hold_more()
818 msg->notes_data[msg->notes_length - 1] = strdup(value); in run_notes_add()
819 if (msg->notes_data[msg->notes_length - 1] == NULL) { in run_notes_add()
823 msg->notes_data[msg->notes_length - 1] = NULL; in run_notes_add()
826 return &(msg->notes_data[msg->notes_length - 1]); in run_notes_add()
905 if (msg->notes_data[off] != NULL) in run_notes_assign()
906 free(msg->notes_data[off]); in run_notes_assign()
907 msg->notes_data[off] = strdup(value); in run_notes_assign()
908 if (msg->notes_data[off] == NULL) { in run_notes_assign()
971 *value = msg->notes_data[offset]; in run_notes_get()
1013 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]); in run_clear()
1015 free(tmp->notes_data); in run_clear()
1016 tmp->notes_data = NULL; in run_clear()
1041 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]); in run_free()
1043 free(tmp->notes_data); in run_free()
1044 tmp->notes_data = NULL; in run_free()
1049 free(tmp->notes_data); in run_free()
1072 evtag_marshal_string(evbuf, RUN_NOTES, tmp->notes_data[i]); in run_marshal()
1137 if (evtag_unmarshal_string(evbuf, RUN_NOTES, &tmp->notes_data[tmp->notes_length]) == -1) { in run_unmarshal()