Lines Matching refs:some_bytes_data
768 tmp->some_bytes_data = NULL; in run_new_with_arg()
875 if (msg->some_bytes_data != NULL) in run_some_bytes_assign()
876 free (msg->some_bytes_data); in run_some_bytes_assign()
877 msg->some_bytes_data = malloc(len); in run_some_bytes_assign()
878 if (msg->some_bytes_data == NULL) in run_some_bytes_assign()
882 memcpy(msg->some_bytes_data, value, len); in run_some_bytes_assign()
948 *value = msg->some_bytes_data; in run_some_bytes_get()
1000 free (tmp->some_bytes_data); in run_clear()
1001 tmp->some_bytes_data = NULL; in run_clear()
1033 if (tmp->some_bytes_data != NULL) in run_free()
1034 free(tmp->some_bytes_data); in run_free()
1062 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()