Lines Matching defs:path
86 #define COPY_WHEN_ABSOLUTE(path) 2 argument
87 #define IS_UNC_PATH(path, len) \ argument
89 #define IS_ABSOLUTE_PATH(path, len) \ argument
124 #define COPY_WHEN_ABSOLUTE(path) 0 argument
128 #define IS_ABSOLUTE_PATH(path, len) \ argument
223 char *path; member
274 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument
276 #define VCWD_OPEN(path, flags) virtual_open(path, flags) argument
277 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
278 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument
279 #define VCWD_CHDIR(path) virtual_chdir(path) argument
280 #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, (int (*)(const char *)) virtual_chdir) argument
282 #define VCWD_REALPATH(path, real_path) virtual_realpath(path, real_path) argument
284 #define VCWD_STAT(path, buff) virtual_stat(path, buff) argument
285 # define VCWD_LSTAT(path, buff) virtual_lstat(path, buff) argument
286 #define VCWD_UNLINK(path) virtual_unlink(path) argument
293 #define VCWD_UTIME(path, time) virtual_utime(path, time) argument
295 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument
297 #define VCWD_CHOWN(path, owner, group) virtual_chown(path, owner, group, 0) argument
299 #define VCWD_LCHOWN(path, owner, group) virtual_chown(path, owner, group, 1) argument
305 #define VCWD_CREAT(path, mode) creat(path, mode) argument
309 #define VCWD_FOPEN(path, mode) php_win32_ioutil_fopen(path, mode) argument
310 #define VCWD_OPEN(path, flags) php_win32_ioutil_open(path, flags) argument
311 #define VCWD_OPEN_MODE(path, flags, mode) php_win32_ioutil_open(path, flags, mode) argument
315 #define VCWD_UNLINK(path) php_win32_ioutil_unlink(path) argument
316 #define VCWD_CHDIR(path) php_win32_ioutil_chdir(path) argument
319 #define VCWD_CHMOD(path, mode) php_win32_ioutil_chmod(path, mode) argument
321 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
322 #define VCWD_OPEN(path, flags) open(path, flags) argument
323 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
327 #define VCWD_UNLINK(path) unlink(path) argument
328 #define VCWD_CHDIR(path) chdir(path) argument
331 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument
334 #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, chdir) argument
336 #define VCWD_STAT(path, buff) php_sys_stat(path, buff) argument
337 #define VCWD_LSTAT(path, buff) lstat(path, buff) argument
341 #define VCWD_REALPATH(path, real_path) tsrm_realpath(path, real_path) argument
345 # define VCWD_UTIME(path, time) win32_utime(path, time) argument
347 # define VCWD_UTIME(path, time) utime(path, time) argument
352 #define VCWD_CHOWN(path, owner, group) chown(path, owner, group) argument
354 #define VCWD_LCHOWN(path, owner, group) lchown(path, owner, group) argument