Searched refs:ksem_open_should_fail (Results 1 – 1 of 1) sorted by relevance
/freebsd/tools/regression/posixsem/ |
H A D | posixsem.c | 120 ksem_open_should_fail(const char *path, int flags, mode_t mode, unsigned int in ksem_open_should_fail() function 250 ksem_open_should_fail(TEST_PATH, O_RDONLY, 0777, 1, ENOENT); in open_after_unlink() 258 ksem_open_should_fail("blah", 0, 0777, 1, EINVAL); in open_invalid_path() 266 ksem_open_should_fail(TEST_PATH, O_RDONLY | O_DIRECT, 0777, 1, EINVAL); in open_extra_flags() 276 ksem_open_should_fail(TEST_PATH, O_CREAT, 0777, UINT_MAX, EINVAL); in open_bad_value() 284 ksem_open_should_fail((char *)1024, O_RDONLY, 0777, 1, EFAULT); in open_bad_path_pointer() 296 ksem_open_should_fail(page, O_RDONLY, 0777, 1, ENAMETOOLONG); in open_path_too_long() 305 ksem_open_should_fail("/notreallythere", 0, 0777, 1, ENOENT); in open_nonexisting_semaphore() 320 ksem_open_should_fail(TEST_PATH, O_CREAT | O_EXCL, 0777, 1, EEXIST); in exclusive_create_existing_semaphore()
|