Lines Matching refs:some_bytes_data
770 tmp->some_bytes_data = NULL; in run_new_with_arg()
879 if (msg->some_bytes_data != NULL) in run_some_bytes_assign()
880 free (msg->some_bytes_data); in run_some_bytes_assign()
881 msg->some_bytes_data = malloc(len); in run_some_bytes_assign()
882 if (msg->some_bytes_data == NULL) in run_some_bytes_assign()
886 memcpy(msg->some_bytes_data, value, len); in run_some_bytes_assign()
952 *value = msg->some_bytes_data; in run_some_bytes_get()
1004 free (tmp->some_bytes_data); in run_clear()
1005 tmp->some_bytes_data = NULL; in run_clear()
1037 if (tmp->some_bytes_data != NULL) in run_free()
1038 free(tmp->some_bytes_data); in run_free()
1066 evtag_marshal(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length); in run_marshal()
1115 if ((tmp->some_bytes_data = malloc(tmp->some_bytes_length)) == NULL) in run_unmarshal()
1117 …if (evtag_unmarshal_fixed(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length) == … in run_unmarshal()