OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BPF_EXIST
(Results
1 - 6
of
6
) sorted by null
/external/strace/xlat/
bpf_map_update_elem_flags.h
8
#if !(defined(
BPF_EXIST
) || (defined(HAVE_DECL_BPF_EXIST) && HAVE_DECL_BPF_EXIST))
9
# define
BPF_EXIST
2
22
XLAT(
BPF_EXIST
),
/external/linux-kselftest/tools/testing/selftests/bpf/
test_maps.c
63
/*
BPF_EXIST
means update existing element. */
64
assert(bpf_map_update_elem(fd, &key, &value,
BPF_EXIST
) == -1 &&
80
assert(bpf_map_update_elem(fd, &key, &value,
BPF_EXIST
) == 0);
175
/*
BPF_EXIST
means update existing element. */
176
assert(bpf_map_update_elem(fd, &key, value,
BPF_EXIST
) == -1 &&
209
/* Update with
BPF_EXIST
. */
211
assert(bpf_map_update_elem(fd, &key, value,
BPF_EXIST
) == 0);
260
assert(bpf_map_update_elem(fd, &key, &value,
BPF_EXIST
) == -1 &&
315
assert(bpf_map_update_elem(fd, &key, values,
BPF_EXIST
) == -1 &&
468
BPF_EXIST
) == 0)
[
all
...]
test_lru_map.c
141
/*
BPF_EXIST
means: update existing element */
142
assert(bpf_map_update_elem(lru_map_fd, &key, value,
BPF_EXIST
) == -1 &&
329
BPF_EXIST
));
/external/iproute2/include/linux/
bpf.h
99
#define
BPF_EXIST
2 /* update existing element */
/bionic/libc/kernel/uapi/linux/
bpf.h
111
#define
BPF_EXIST
2
/external/kernel-headers/original/uapi/linux/
bpf.h
130
#define
BPF_EXIST
2 /* update existing element */
Completed in 151 milliseconds