Home | History | Annotate | Download | only in test

Lines Matching refs:notes_data

775   tmp->notes_data = NULL;
800 new_data = (char **) realloc(msg->notes_data,
804 msg->notes_data = new_data;
816 msg->notes_data[msg->notes_length - 1] = strdup(value);
817 if (msg->notes_data[msg->notes_length - 1] == NULL) {
821 msg->notes_data[msg->notes_length - 1] = NULL;
824 return &(msg->notes_data[msg->notes_length - 1]);
902 if (msg->notes_data[off] != NULL)
903 free(msg->notes_data[off]);
904 msg->notes_data[off] = strdup(value);
905 if (msg->notes_data[off] == NULL) {
968 *value = msg->notes_data[offset];
1010 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]);
1012 free(tmp->notes_data);
1013 tmp->notes_data = NULL;
1038 if (tmp->notes_data[i] != NULL) free(tmp->notes_data[i]);
1040 free(tmp->notes_data);
1041 tmp->notes_data = NULL;
1046 free(tmp->notes_data);
1069 evtag_marshal_string(evbuf, RUN_NOTES, tmp->notes_data[i]);
1141 if (evtag_unmarshal_string(evbuf, RUN_NOTES, &tmp->notes_data[tmp->notes_length]) == -1) {