Lines Matching refs:path
149 * We could use a static buffer for the path manipulations that we need outside
152 * There is no direct way of getting the exe path in zOS - either through /procfs
630 static int os390_regfileint(uv_fs_event_t* handle, char* path) {
643 rc = __w_pioctl(path, _IOCC_REGFILEINT, sizeof(reg_struct), ®_struct);
656 char* path;
662 path = uv__strdup(filename);
663 if (path == NULL)
666 rc = os390_regfileint(handle, path);
668 uv__free(path);
673 handle->path = path;
698 * This call will take "/" as the path argument in case we
699 * don't care to supply the correct path. The system will simply
706 if (handle->path != NULL) {
707 uv__free(handle->path);
708 handle->path = NULL;
786 } else if (handle->path == NULL) {
797 assert(handle->path != NULL);
798 os390_regfileint(handle, handle->path);
799 handle->cb(handle, uv__basename_r(handle->path), events, 0);