Lines Matching refs:some_bytes_data
769 tmp->some_bytes_data = NULL; in run_new_with_arg()
878 if (msg->some_bytes_data != NULL) in run_some_bytes_assign()
879 free (msg->some_bytes_data); in run_some_bytes_assign()
880 msg->some_bytes_data = malloc(len); in run_some_bytes_assign()
881 if (msg->some_bytes_data == NULL) in run_some_bytes_assign()
885 memcpy(msg->some_bytes_data, value, len); in run_some_bytes_assign()
951 *value = msg->some_bytes_data; in run_some_bytes_get()
1003 free (tmp->some_bytes_data); in run_clear()
1004 tmp->some_bytes_data = NULL; in run_clear()
1036 if (tmp->some_bytes_data != NULL) in run_free()
1037 free(tmp->some_bytes_data); in run_free()
1065 evtag_marshal(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length); in run_marshal()
1114 if ((tmp->some_bytes_data = malloc(tmp->some_bytes_length)) == NULL) in run_unmarshal()
1116 …if (evtag_unmarshal_fixed(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length) == … in run_unmarshal()