Lines Matching defs:nl_sock
55 int nl_send_msg(struct nl_sock *sock, struct nl_cb *cb, struct nl_msg *msg,
113 static int nl_get_multicast_id(struct nl_sock *sock, struct nl_cb *cb,
144 int nl_thermal_connect(struct nl_sock **nl_sock, struct nl_cb **nl_cb)
147 struct nl_sock *sock;
166 *nl_sock = sock;
178 void nl_thermal_disconnect(struct nl_sock *nl_sock, struct nl_cb *nl_cb)
180 nl_close(nl_sock);
181 nl_socket_free(nl_sock);
185 int nl_unsubscribe_thermal(struct nl_sock *nl_sock, struct nl_cb *nl_cb,
190 mcid = nl_get_multicast_id(nl_sock, nl_cb, THERMAL_GENL_FAMILY_NAME,
195 if (nl_socket_drop_membership(nl_sock, mcid))
201 int nl_subscribe_thermal(struct nl_sock *nl_sock, struct nl_cb *nl_cb,
206 mcid = nl_get_multicast_id(nl_sock, nl_cb, THERMAL_GENL_FAMILY_NAME,
211 if (nl_socket_add_membership(nl_sock, mcid))