HomeSort by relevance Sort by last modified time
    Searched refs:nl_msg (Results 1 - 25 of 26) sorted by null

1 2

  /external/libnl-headers/netlink/
msg.h 43 struct nl_msg;
72 extern struct nl_msg * nlmsg_alloc(void);
73 extern struct nl_msg * nlmsg_alloc_size(size_t);
74 extern struct nl_msg * nlmsg_alloc_simple(int, int);
76 extern struct nl_msg * nlmsg_inherit(struct nlmsghdr *);
77 extern struct nl_msg * nlmsg_convert(struct nlmsghdr *);
78 extern void * nlmsg_reserve(struct nl_msg *, size_t, int);
79 extern int nlmsg_append(struct nl_msg *, void *, size_t, int);
80 extern int nlmsg_expand(struct nl_msg *, size_t);
82 extern struct nlmsghdr * nlmsg_put(struct nl_msg *, uint32_t, uint32_t
    [all...]
attr.h 24 struct nl_msg;
95 extern struct nlattr * nla_reserve(struct nl_msg *, int, int);
96 extern int nla_put(struct nl_msg *, int, int, const void *);
97 extern int nla_put_data(struct nl_msg *, int, struct nl_data *);
98 extern int nla_put_addr(struct nl_msg *, int, struct nl_addr *);
102 extern int nla_put_u8(struct nl_msg *, int, uint8_t);
104 extern int nla_put_u16(struct nl_msg *, int, uint16_t);
106 extern int nla_put_u32(struct nl_msg *, int, uint32_t);
108 extern int nla_put_u64(struct nl_msg *, int, uint64_t);
113 extern int nla_put_string(struct nl_msg *, int, const char *)
    [all...]
netlink.h 50 extern int nl_sendmsg(struct nl_sock *, struct nl_msg *,
52 extern int nl_send(struct nl_sock *, struct nl_msg *);
53 extern int nl_send_iovec(struct nl_sock *, struct nl_msg *,
56 struct nl_msg *);
58 struct nl_msg *);
handlers.h 27 struct nl_msg;
41 typedef int (*nl_recvmsg_msg_cb_t)(struct nl_msg *msg, void *arg);
138 struct nl_msg *));
cache.h 54 struct nl_msg *);
  /system/core/libnl_2/
msg.c 25 struct nl_msg *nlmsg_alloc(void)
27 /* Whole page will store nl_msg + nlmsghdr + genlmsghdr + payload */
29 struct nl_msg *nm;
33 nm = (struct nl_msg *) malloc(page_sz);
38 nlh = (struct nlmsghdr *) ((char *) nm + sizeof(struct nl_msg));
54 /* Add to reference count and return nl_msg */
67 /* Add reference count to nl_msg */
68 void nlmsg_get(struct nl_msg *nm)
74 void nlmsg_free(struct nl_msg *nm)
85 struct nlmsghdr *nlmsg_hdr(struct nl_msg *n
    [all...]
attr.c 75 struct nlattr *nla_nest_start(struct nl_msg *msg, int attrtype)
88 int nla_nest_end(struct nl_msg *msg, struct nlattr *start)
151 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data)
171 int nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested)
189 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int data_len)
netlink.c 29 int nl_send_auto_complete(struct nl_sock *sk, struct nl_msg *msg)
40 /* Complete the nl_msg header */
116 struct nl_msg *msg;
130 msg = (struct nl_msg *)malloc(sizeof(struct nl_msg));
204 int nl_send(struct nl_sock *sk, struct nl_msg *msg)
217 int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg,
234 rc = nl_sendmsg(sk, (struct nl_msg *) &mh, 0);
242 int nl_sendmsg(struct nl_sock *sk, struct nl_msg *msg, struct msghdr *hdr)
  /external/libnl-headers/netlink/route/
classifier.h 33 struct nl_msg **);
37 struct nl_msg **);
39 struct nl_msg **);
qdisc.h 36 struct nl_msg **);
41 struct nl_msg **);
46 struct nl_msg **);
67 extern struct nl_msg * rtnl_qdisc_get_opts(struct rtnl_qdisc *);
class.h 38 struct nl_msg **);
43 struct nl_msg **);
neighbour.h 40 struct nl_msg **);
44 struct nl_msg **);
addr.h 34 struct nl_msg **);
38 struct nl_msg **);
rule.h 35 struct nl_msg **);
38 struct nl_msg **);
route.h 55 extern int rtnl_route_build_msg(struct nl_msg *, struct rtnl_route *);
58 struct nl_msg **);
61 struct nl_msg **);
neightbl.h 36 struct nl_msg **);
link.h 67 struct nl_msg **);
  /external/libnl-headers/netlink/fib_lookup/
lookup.h 33 struct nl_msg **);
  /external/libnl-headers/netlink/genl/
genl.h 28 extern void * genlmsg_put(struct nl_msg *, uint32_t, uint32_t,
  /external/libnl-headers/netlink/netfilter/
ct.h 42 struct nl_msg **);
46 struct nl_msg **);
50 struct nl_msg **);
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 30 int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg,
31 int (*valid_handler)(struct nl_msg *, void *),
49 struct nl_msg *msg;
77 static int get_power_mode_handler(struct nl_msg *msg, void *arg)
103 struct nl_msg *msg;
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211.c 252 static int bss_info_handler(struct nl_msg *msg, void *arg);
256 static int ack_handler(struct nl_msg *msg, void *arg)
263 static int finish_handler(struct nl_msg *msg, void *arg)
279 static int no_seq_check(struct nl_msg *msg, void *arg)
286 struct nl_handle *nl_handle, struct nl_msg *msg,
287 int (*valid_handler)(struct nl_msg *, void *),
321 struct nl_msg *msg,
322 int (*valid_handler)(struct nl_msg *, void *),
336 static int family_handler(struct nl_msg *msg, void *arg)
370 struct nl_msg *msg
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_nl80211.c 97 static int ack_handler(struct nl_msg *msg, void *arg)
104 static int finish_handler(struct nl_msg *msg, void *arg)
120 struct nl_msg *msg,
121 int (*valid_handler)(struct nl_msg *, void *),
160 static int family_handler(struct nl_msg *msg, void *arg)
194 struct nl_msg *msg;
959 static int no_seq_check(struct nl_msg *msg, void *arg)
965 static int process_event(struct nl_msg *msg, void *arg)
1105 struct nl_msg *msg;
1131 struct nl_msg *msg
    [all...]
  /system/core/libnl_2/genl/
genl.c 46 void *genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family,
54 /* Make sure nl_msg has enough space */
56 if ((sizeof(struct nl_msg) + new_size) > msg->nm_size)
  /external/libnl-headers/
netlink-types.h 59 struct nl_msg *);
128 struct nl_msg struct

Completed in 144 milliseconds

1 2