Lines Matching refs:notes_data
775 tmp->notes_data = NULL; in run_new_with_arg()
800 new_data = (char **) realloc(msg->notes_data, in run_notes_expand_to_hold_more()
804 msg->notes_data = new_data; in run_notes_expand_to_hold_more()
816 msg->notes_data[msg->notes_length - 1] = strdup(value); in run_notes_add()
817 if (msg->notes_data[msg->notes_length - 1] == NULL) { in run_notes_add()
821 msg->notes_data[msg->notes_length - 1] = NULL; in run_notes_add()
824 return &(msg->notes_data[msg->notes_length - 1]); in run_notes_add()
902 if (msg->notes_data[off] != NULL) in run_notes_assign()
903 free(msg->notes_data[off]); in run_notes_assign()
904 msg->notes_data[off] = strdup(value); in run_notes_assign()
905 if (msg->notes_data[off] == NULL) { in run_notes_assign()
968 *value = msg->notes_data[offset]; in run_notes_get()
1010 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]); in run_clear()
1012 free(tmp->notes_data); in run_clear()
1013 tmp->notes_data = NULL; in run_clear()
1038 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]); in run_free()
1040 free(tmp->notes_data); in run_free()
1041 tmp->notes_data = NULL; in run_free()
1046 free(tmp->notes_data); in run_free()
1069 evtag_marshal_string(evbuf, RUN_NOTES, tmp->notes_data[i]); in run_marshal()
1141 if (evtag_unmarshal_string(evbuf, RUN_NOTES, &tmp->notes_data[tmp->notes_length]) == -1) { in run_unmarshal()