Searched refs:EEXIST (Results 1 – 25 of 28) sorted by relevance
12
/tools/include/uapi/asm-generic/ |
D | errno-base.h | 21 #define EEXIST 17 /* File exists */ macro
|
/tools/testing/selftests/bpf/ |
D | cgroup_helpers.c | 123 if (mkdir(cgroup_workdir, 0777) && errno != EEXIST) { in setup_cgroup_environment() 224 if (mkdir(cgroup_path, 0777) && errno != EEXIST) { in create_and_get_cgroup()
|
D | test_lru_map.c | 191 && errno == EEXIST); in test_lru_sanity0() 719 && errno == EEXIST); in test_lru_sanity7() 813 && errno == EEXIST); in test_lru_sanity8()
|
D | test_maps.c | 58 errno == EEXIST); in test_hashmap() 174 errno == EEXIST); in test_hashmap_percpu() 364 errno == EEXIST); in test_arraymap() 422 errno == EEXIST); in test_arraymap_percpu() 1366 errno == EEXIST); in test_map_parallel() 1602 CHECK(err != -1 || errno != EEXIST, in test_reuseport_array()
|
D | test_hashmap.c | 118 if (CHECK(err != -EEXIST, "unexpected add result: %d\n", err)) in test_hashmap_generic()
|
/tools/perf/util/ |
D | rblist.c | 32 return -EEXIST; in rblist__add_node()
|
D | build-id.c | 690 } else if (link(realname, filename) && errno != EEXIST && in build_id_cache__add_s() 716 errno != EEXIST && in build_id_cache__add_s() 855 if (mkdir(buildid_dir, 0755) != 0 && errno != EEXIST) in perf_session__cache_build_ids()
|
D | probe-file.c | 210 if (ret == -EEXIST) in __probe_file__get_namelist()
|
D | bpf-loader.c | 1724 bpf__strerror_entry(EEXIST, "Probe point exist. Try 'perf probe -d \"*\"' and set 'force=yes'"); in bpf__strerror_probe()
|
D | probe-finder.c | 1714 if (err < 0 && err != -EEXIST) in line_range_walk_cb()
|
D | evsel.c | 1701 if (err && errno != EEXIST) { in evsel__open()
|
D | session.c | 2397 err = -EEXIST; in __perf_session__set_tracepoints_handlers()
|
/tools/perf/jvmti/ |
D | jvmti_agent.c | 158 if (errno != EEXIST) { in create_jit_cache_dir() 173 if (errno != EEXIST) { in create_jit_cache_dir()
|
/tools/usb/usbip/src/ |
D | usbip_attach.c | 49 if (errno == EEXIST) { in record_connection()
|
/tools/testing/selftests/filesystems/binderfs/ |
D | binderfs_test.c | 148 if (errno != EEXIST) in __do_binderfs_test()
|
/tools/lib/traceevent/Documentation/ |
D | libtraceevent-commands.txt | 66 is not enough memory to duplicate the _comm_ or EEXIST if a mapping for this 99 if (ret != 0 && errno == EEXIST)
|
/tools/testing/selftests/vm/ |
D | userfaultfd.c | 406 if (uffdio_copy->copy != -EEXIST) in retry_copy_page() 429 if (uffdio_copy.copy != -EEXIST) in __copy_page() 808 if (uffdio_zeropage->zeropage != -EEXIST) in retry_uffdio_zeropage() 835 if (uffdio_zeropage.zeropage == -EEXIST) in __uffdio_zeropage()
|
/tools/lib/bpf/ |
D | hashmap.c | 175 return -EEXIST; in hashmap__insert()
|
D | btf.c | 586 return -EEXIST; in btf__load()
|
/tools/testing/selftests/bpf/map_tests/ |
D | sk_storage_map.c | 524 CHECK(!err || errno != EEXIST, in test_sk_storage_map_basic() 528 CHECK(!err || errno != EEXIST, "bpf_map_update_elem(BPF_NOEXIST)", in test_sk_storage_map_basic()
|
/tools/perf/tests/ |
D | bpf.c | 272 if (err && errno != EEXIST) { in __test__bpf()
|
/tools/perf/ |
D | builtin-buildid-cache.c | 445 if (errno == EEXIST) { in cmd_buildid_cache()
|
D | builtin-trace.c | 1558 return -EEXIST; in trace__read_syscall_info() 1562 return -EEXIST; in trace__read_syscall_info()
|
/tools/testing/selftests/filesystems/incfs/ |
D | incfs_test.c | 535 if (errno != EEXIST) { in create_backing_dir() 1025 if (err < 0 && errno != EEXIST) { in basic_file_ops_test() 1031 if (err < 0 && errno != EEXIST) { in basic_file_ops_test()
|
/tools/testing/selftests/net/ |
D | tls.c | 1194 EXPECT_EQ(errno, EEXIST); in TEST()
|
12