Lines Matching refs:path
43 open_restricted_count(const char *path, int flags, void *data)
50 fd = open(path, flags);
69 open_restricted(const char *path, int flags, void *data)
71 int fd = open(path, flags);
109 const char *path = "/tmp";
120 device = libinput_path_add_device(li, path);
136 const char *path = "/dev/uinput";
147 device = libinput_path_add_device(li, path);
163 char path[] = "/tmp/litest_path_XXXXXX";
168 fd = mkstemp(path);
176 unlink(path);
181 device = libinput_path_add_device(li, path);
197 char *path;
200 path = zalloc(PATH_MAX * 2);
201 memset(path, 'a', PATH_MAX * 2 - 1);
210 device = libinput_path_add_device(li, path);
220 free(path);
1036 const char *path;
1039 path = libevdev_uinput_get_devnode(dev->uinput);
1040 ck_assert_notnull(path);
1043 device = libinput_path_add_device(li, path);
1051 TEST_COLLECTION(path)