Symbol: USER_PTR_ERR
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
32
SEC("syscall") __retval(USER_PTR_ERR) int test_strcmp_null1(void *ctx) { return bpf_strcmp(NULL, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
33
SEC("syscall") __retval(USER_PTR_ERR)int test_strcmp_null2(void *ctx) { return bpf_strcmp("hello", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
34
SEC("syscall") __retval(USER_PTR_ERR) int test_strcasecmp_null1(void *ctx) { return bpf_strcasecmp(NULL, "HELLO"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
35
SEC("syscall") __retval(USER_PTR_ERR)int test_strcasecmp_null2(void *ctx) { return bpf_strcasecmp("HELLO", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
36
SEC("syscall") __retval(USER_PTR_ERR)int test_strncasecmp_null1(void *ctx) { return bpf_strncasecmp(NULL, "HELLO", 5); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
37
SEC("syscall") __retval(USER_PTR_ERR)int test_strncasecmp_null2(void *ctx) { return bpf_strncasecmp("HELLO", NULL, 5); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
38
SEC("syscall") __retval(USER_PTR_ERR)int test_strchr_null(void *ctx) { return bpf_strchr(NULL, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
39
SEC("syscall") __retval(USER_PTR_ERR)int test_strchrnul_null(void *ctx) { return bpf_strchrnul(NULL, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
40
SEC("syscall") __retval(USER_PTR_ERR)int test_strnchr_null(void *ctx) { return bpf_strnchr(NULL, 1, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
41
SEC("syscall") __retval(USER_PTR_ERR)int test_strrchr_null(void *ctx) { return bpf_strrchr(NULL, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
42
SEC("syscall") __retval(USER_PTR_ERR)int test_strlen_null(void *ctx) { return bpf_strlen(NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
43
SEC("syscall") __retval(USER_PTR_ERR)int test_strnlen_null(void *ctx) { return bpf_strnlen(NULL, 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
44
SEC("syscall") __retval(USER_PTR_ERR)int test_strspn_null1(void *ctx) { return bpf_strspn(NULL, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
45
SEC("syscall") __retval(USER_PTR_ERR)int test_strspn_null2(void *ctx) { return bpf_strspn("hello", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
46
SEC("syscall") __retval(USER_PTR_ERR)int test_strcspn_null1(void *ctx) { return bpf_strcspn(NULL, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
47
SEC("syscall") __retval(USER_PTR_ERR)int test_strcspn_null2(void *ctx) { return bpf_strcspn("hello", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
48
SEC("syscall") __retval(USER_PTR_ERR)int test_strstr_null1(void *ctx) { return bpf_strstr(NULL, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
49
SEC("syscall") __retval(USER_PTR_ERR)int test_strstr_null2(void *ctx) { return bpf_strstr("hello", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
50
SEC("syscall") __retval(USER_PTR_ERR)int test_strcasestr_null1(void *ctx) { return bpf_strcasestr(NULL, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
51
SEC("syscall") __retval(USER_PTR_ERR)int test_strcasestr_null2(void *ctx) { return bpf_strcasestr("hello", NULL); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
52
SEC("syscall") __retval(USER_PTR_ERR)int test_strnstr_null1(void *ctx) { return bpf_strnstr(NULL, "hello", 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
53
SEC("syscall") __retval(USER_PTR_ERR)int test_strnstr_null2(void *ctx) { return bpf_strnstr("hello", NULL, 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
54
SEC("syscall") __retval(USER_PTR_ERR)int test_strncasestr_null1(void *ctx) { return bpf_strncasestr(NULL, "hello", 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
55
SEC("syscall") __retval(USER_PTR_ERR)int test_strncasestr_null2(void *ctx) { return bpf_strncasestr("hello", NULL, 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
58
SEC("syscall") __retval(USER_PTR_ERR) int test_strcmp_user_ptr1(void *ctx) { return bpf_strcmp(user_ptr, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
59
SEC("syscall") __retval(USER_PTR_ERR) int test_strcmp_user_ptr2(void *ctx) { return bpf_strcmp("hello", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
60
SEC("syscall") __retval(USER_PTR_ERR) int test_strcasecmp_user_ptr1(void *ctx) { return bpf_strcasecmp(user_ptr, "HELLO"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
61
SEC("syscall") __retval(USER_PTR_ERR) int test_strcasecmp_user_ptr2(void *ctx) { return bpf_strcasecmp("HELLO", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
62
SEC("syscall") __retval(USER_PTR_ERR) int test_strncasecmp_user_ptr1(void *ctx) { return bpf_strncasecmp(user_ptr, "HELLO", 5); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
63
SEC("syscall") __retval(USER_PTR_ERR) int test_strncasecmp_user_ptr2(void *ctx) { return bpf_strncasecmp("HELLO", user_ptr, 5); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
64
SEC("syscall") __retval(USER_PTR_ERR) int test_strchr_user_ptr(void *ctx) { return bpf_strchr(user_ptr, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
65
SEC("syscall") __retval(USER_PTR_ERR) int test_strchrnul_user_ptr(void *ctx) { return bpf_strchrnul(user_ptr, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
66
SEC("syscall") __retval(USER_PTR_ERR) int test_strnchr_user_ptr(void *ctx) { return bpf_strnchr(user_ptr, 1, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
67
SEC("syscall") __retval(USER_PTR_ERR) int test_strrchr_user_ptr(void *ctx) { return bpf_strrchr(user_ptr, 'a'); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
68
SEC("syscall") __retval(USER_PTR_ERR) int test_strlen_user_ptr(void *ctx) { return bpf_strlen(user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
69
SEC("syscall") __retval(USER_PTR_ERR) int test_strnlen_user_ptr(void *ctx) { return bpf_strnlen(user_ptr, 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
70
SEC("syscall") __retval(USER_PTR_ERR) int test_strspn_user_ptr1(void *ctx) { return bpf_strspn(user_ptr, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
71
SEC("syscall") __retval(USER_PTR_ERR) int test_strspn_user_ptr2(void *ctx) { return bpf_strspn("hello", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
72
SEC("syscall") __retval(USER_PTR_ERR) int test_strcspn_user_ptr1(void *ctx) { return bpf_strcspn(user_ptr, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
73
SEC("syscall") __retval(USER_PTR_ERR) int test_strcspn_user_ptr2(void *ctx) { return bpf_strcspn("hello", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
74
SEC("syscall") __retval(USER_PTR_ERR) int test_strstr_user_ptr1(void *ctx) { return bpf_strstr(user_ptr, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
75
SEC("syscall") __retval(USER_PTR_ERR) int test_strstr_user_ptr2(void *ctx) { return bpf_strstr("hello", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
76
SEC("syscall") __retval(USER_PTR_ERR) int test_strcasestr_user_ptr1(void *ctx) { return bpf_strcasestr(user_ptr, "hello"); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
77
SEC("syscall") __retval(USER_PTR_ERR) int test_strcasestr_user_ptr2(void *ctx) { return bpf_strcasestr("hello", user_ptr); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
78
SEC("syscall") __retval(USER_PTR_ERR) int test_strnstr_user_ptr1(void *ctx) { return bpf_strnstr(user_ptr, "hello", 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
79
SEC("syscall") __retval(USER_PTR_ERR) int test_strnstr_user_ptr2(void *ctx) { return bpf_strnstr("hello", user_ptr, 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
80
SEC("syscall") __retval(USER_PTR_ERR) int test_strncasestr_user_ptr1(void *ctx) { return bpf_strncasestr(user_ptr, "hello", 1); }
tools/testing/selftests/bpf/progs/string_kfuncs_failure1.c
81
SEC("syscall") __retval(USER_PTR_ERR) int test_strncasestr_user_ptr2(void *ctx) { return bpf_strncasestr("hello", user_ptr, 1); }