Lines Matching refs:path
148 * We could use a static buffer for the path manipulations that we need outside
151 * There is no direct way of getting the exe path in zOS - either through /procfs
637 static int os390_regfileint(uv_fs_event_t* handle, char* path) {
650 rc = __w_pioctl(path, _IOCC_REGFILEINT, sizeof(reg_struct), ®_struct);
663 char* path;
669 path = uv__strdup(filename);
670 if (path == NULL)
673 rc = os390_regfileint(handle, path);
675 uv__free(path);
680 handle->path = path;
705 * This call will take "/" as the path argument in case we
706 * don't care to supply the correct path. The system will simply
713 if (handle->path != NULL) {
714 uv__free(handle->path);
715 handle->path = NULL;
793 } else if (handle->path == NULL) {
804 assert(handle->path != NULL);
805 os390_regfileint(handle, handle->path);
806 handle->cb(handle, uv__basename_r(handle->path), events, 0);