Lines Matching full:path

34     const char *path;  member
38 static int collision_test_vfs_open(void* ctx, const char * path, int flags, int mode) in collision_test_vfs_open() argument
41 if (strcmp(param->path, path) == 0) { in collision_test_vfs_open()
61 .path = FILE1,
96 const char *path; member
101 const char *path; member
106 { .path = FILE1, .local_fd = 1 },
107 { .path = FILE2, .local_fd = 2 },
108 { .path = FILE3, .local_fd = 3 },
109 { .path = FILE4, .local_fd = 4 },
112 static int concurrent_test_vfs_open(const char * path, int flags, int mode) in concurrent_test_vfs_open() argument
115 if (strcmp(concurrent_test_path_to_fd[i].path, path) == 0) { in concurrent_test_vfs_open()
148 const int global_fd = open(task_param->path, 0, 0); in concurrent_task()
168 …concurrent_test_task_param_t param1 = { .path = VFS_PREF1 FILE1, .done = xSemaphoreCreateBinary() …
169 …concurrent_test_task_param_t param2 = { .path = VFS_PREF1 FILE1, .done = xSemaphoreCreateBinary() …
170 …concurrent_test_task_param_t param3 = { .path = VFS_PREF1 FILE2, .done = xSemaphoreCreateBinary() …
171 …concurrent_test_task_param_t param4 = { .path = VFS_PREF1 FILE2, .done = xSemaphoreCreateBinary() …
172 …concurrent_test_task_param_t param5 = { .path = VFS_PREF1 FILE3, .done = xSemaphoreCreateBinary() …
173 …concurrent_test_task_param_t param6 = { .path = VFS_PREF1 FILE3, .done = xSemaphoreCreateBinary() …
174 …concurrent_test_task_param_t param7 = { .path = VFS_PREF1 FILE4, .done = xSemaphoreCreateBinary() …
175 …concurrent_test_task_param_t param8 = { .path = VFS_PREF1 FILE4, .done = xSemaphoreCreateBinary() …
221 static int time_test_vfs_open(const char *path, int flags, int mode) in time_test_vfs_open() argument