Lines Matching refs:bpf_sock

10 struct bpf_sock;
1551 * **bpf_sock_ops_cb_flags_set(bpf_sock,**
1552 * **bpf_sock->bpf_sock_ops_cb_flags & ~BPF_SOCK_OPS_RTO_CB_FLAG)**
1569 static long (*bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops *bpf_sock, int argval) = (void *) 59;
2217 * Pointer to **struct bpf_sock**, or **NULL** in case of failure.
2218 * For sockets with reuseport option, the **struct bpf_sock**
2222 static struct bpf_sock *(*bpf_sk_lookup_tcp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 84;
2258 * Pointer to **struct bpf_sock**, or **NULL** in case of failure.
2259 * For sockets with reuseport option, the **struct bpf_sock**
2263 static struct bpf_sock *(*bpf_sk_lookup_udp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 85;
2431 * This helper gets a **struct bpf_sock** pointer such
2432 * that all the fields in this **bpf_sock** can be accessed.
2435 * A **struct bpf_sock** pointer on success, or **NULL** in
2438 static struct bpf_sock *(*bpf_sk_fullsock)(struct bpf_sock *sk) = (void *) 95;
2444 * **struct bpf_sock** pointer.
2450 static struct bpf_tcp_sock *(*bpf_tcp_sock)(struct bpf_sock *sk) = (void *) 96;
2469 * Return a **struct bpf_sock** pointer in **TCP_LISTEN** state.
2473 * A **struct bpf_sock** pointer on success, or **NULL** in
2476 static struct bpf_sock *(*bpf_get_listener_sock)(struct bpf_sock *sk) = (void *) 98;
2494 * Pointer to **struct bpf_sock**, or **NULL** in case of failure.
2495 * For sockets with reuseport option, the **struct bpf_sock**
2499 static struct bpf_sock *(*bpf_skc_lookup_tcp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 99;
2679 * *sk* is a **struct bpf_sock** pointer for other program types.