Searched refs:nfnl_queue (Results 1 – 5 of 5) sorted by relevance
/external/libnl/include/netlink/netfilter/ |
D | queue.h | 23 struct nfnl_queue; 36 extern struct nfnl_queue * nfnl_queue_alloc(void); 38 extern void nfnl_queue_get(struct nfnl_queue *); 39 extern void nfnl_queue_put(struct nfnl_queue *); 42 extern void nfnl_queue_set_group(struct nfnl_queue *, uint16_t); 43 extern int nfnl_queue_test_group(const struct nfnl_queue *); 44 extern uint16_t nfnl_queue_get_group(const struct nfnl_queue *); 46 extern void nfnl_queue_set_maxlen(struct nfnl_queue *, uint32_t); 47 extern int nfnl_queue_test_maxlen(const struct nfnl_queue *); 48 extern uint32_t nfnl_queue_get_maxlen(const struct nfnl_queue *); [all …]
|
/external/libnl/lib/netfilter/ |
D | queue_obj.c | 33 struct nfnl_queue *queue = (struct nfnl_queue *) a; in nfnl_queue_dump() 78 struct nfnl_queue *nfnl_queue_alloc(void) in nfnl_queue_alloc() 80 return (struct nfnl_queue *) nl_object_alloc(&queue_obj_ops); in nfnl_queue_alloc() 83 void nfnl_queue_get(struct nfnl_queue *queue) in nfnl_queue_get() 88 void nfnl_queue_put(struct nfnl_queue *queue) in nfnl_queue_put() 100 void nfnl_queue_set_group(struct nfnl_queue *queue, uint16_t group) in nfnl_queue_set_group() 106 int nfnl_queue_test_group(const struct nfnl_queue *queue) in nfnl_queue_test_group() 111 uint16_t nfnl_queue_get_group(const struct nfnl_queue *queue) in nfnl_queue_get_group() 116 void nfnl_queue_set_maxlen(struct nfnl_queue *queue, uint32_t maxlen) in nfnl_queue_set_maxlen() 122 int nfnl_queue_test_maxlen(const struct nfnl_queue *queue) in nfnl_queue_test_maxlen() [all …]
|
D | queue.c | 111 static int nfnl_queue_build_request(const struct nfnl_queue *queue, in nfnl_queue_build_request() 160 int nfnl_queue_build_create_request(const struct nfnl_queue *queue, in nfnl_queue_build_create_request() 182 int nfnl_queue_create(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_create() 193 int nfnl_queue_build_change_request(const struct nfnl_queue *queue, in nfnl_queue_build_change_request() 199 int nfnl_queue_change(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_change() 210 int nfnl_queue_build_delete_request(const struct nfnl_queue *queue, in nfnl_queue_build_delete_request() 220 int nfnl_queue_delete(struct nl_sock *nlh, const struct nfnl_queue *queue) in nfnl_queue_delete()
|
/external/libnl/src/ |
D | nf-queue.c | 24 static struct nfnl_queue *alloc_queue(void) in alloc_queue() 26 struct nfnl_queue *queue; in alloc_queue() 87 struct nfnl_queue *queue; in main()
|
/external/libnl/include/ |
D | netlink-types.h | 799 struct nfnl_queue { struct
|