Lines Matching defs:cb
90 static struct nl_sock *__alloc_socket(struct nl_cb *cb)
99 sk->s_cb = cb;
119 struct nl_cb *cb;
121 cb = nl_cb_alloc(default_cb);
122 if (!cb)
125 return __alloc_socket(cb);
130 * @arg cb Callback handler
137 struct nl_sock *nl_socket_alloc_cb(struct nl_cb *cb)
139 if (cb == NULL)
142 return __alloc_socket(nl_cb_get(cb));
460 void nl_socket_set_cb(struct nl_sock *sk, struct nl_cb *cb)
463 sk->s_cb = nl_cb_get(cb);