Home | History | Annotate | Download | only in health

Lines Matching refs:del_data

1956 	struct hdp_tmp_dc_data *del_data = data;
1961 reply = g_dbus_create_error(del_data->msg,
1964 g_dbus_send_message(del_data->conn, reply);
1968 path = g_strdup(del_data->hdp_chann->path);
1969 g_dbus_unregister_interface(del_data->conn, path, HEALTH_CHANNEL);
1972 reply = g_dbus_create_reply(del_data->msg, DBUS_TYPE_INVALID);
1973 g_dbus_send_message(del_data->conn, reply);
1978 struct hdp_tmp_dc_data *del_data = user_data;
1983 reply = g_dbus_create_error(del_data->msg,
1986 g_dbus_send_message(del_data->conn, reply);
1990 if (mcap_delete_mdl(del_data->hdp_chann->mdl, hdp_mdl_delete_cb,
1991 hdp_tmp_dc_data_ref(del_data),
1995 reply = g_dbus_create_error(del_data->msg,
1998 hdp_tmp_dc_data_unref(del_data);
2000 g_dbus_send_message(del_data->conn, reply);
2007 struct hdp_tmp_dc_data *del_data;
2024 del_data = g_new0(struct hdp_tmp_dc_data, 1);
2025 del_data->msg = dbus_message_ref(msg);
2026 del_data->conn = dbus_connection_ref(conn);
2027 del_data->hdp_chann = hdp_channel_ref(hdp_chan);
2031 hdp_tmp_dc_data_ref(del_data),
2038 hdp_tmp_dc_data_ref(del_data),
2045 hdp_tmp_dc_data_unref(del_data);