lpath             772 lib/utilunix.c     char *lpath = path;         /* path without leading UNC part */
lpath             781 lib/utilunix.c             lpath = p;
lpath             784 lib/utilunix.c     if (lpath[0] == '\0' || lpath[1] == '\0')
lpath             790 lib/utilunix.c         for (p = lpath; *p != '\0'; p++)
lpath             791 lib/utilunix.c             if (IS_PATH_SEP (p[0]) && IS_PATH_SEP (p[1]) && (p == lpath || *(p - 1) != ':'))
lpath             800 lib/utilunix.c         for (p = lpath; *p != '\0';)
lpath             812 lib/utilunix.c         for (p = lpath + strlen (lpath) - 1; p > lpath && IS_PATH_SEP (*p); p--)
lpath             814 lib/utilunix.c             if (p >= lpath + url_delim_len - 1
lpath             821 lib/utilunix.c         if (lpath[0] == '.' && IS_PATH_SEP (lpath[1]))
lpath             823 lib/utilunix.c             if (lpath[2] == '\0')
lpath             825 lib/utilunix.c                 lpath[1] = '\0';
lpath             829 lib/utilunix.c             str_move (lpath, lpath + 2);
lpath             833 lib/utilunix.c         len = strlen (lpath);
lpath             837 lib/utilunix.c         if (IS_PATH_SEP (lpath[len - 1])
lpath             839 lib/utilunix.c                 || strncmp (lpath + len - url_delim_len, VFS_PATH_URL_DELIMITER,
lpath             841 lib/utilunix.c             lpath[len - 1] = '\0';
lpath             842 lib/utilunix.c         else if (lpath[len - 1] == '.' && IS_PATH_SEP (lpath[len - 2]))
lpath             846 lib/utilunix.c                 lpath[1] = '\0';
lpath             850 lib/utilunix.c             lpath[len - 2] = '\0';
lpath             861 lib/utilunix.c         for (p = lpath; p[0] != '\0' && p[1] != '\0' && p[2] != '\0';)
lpath             872 lib/utilunix.c             if (s >= lpath + url_delim_len - 2
lpath             876 lib/utilunix.c                 while (s >= lpath && !IS_PATH_SEP (*s--))
lpath             880 lib/utilunix.c             while (s >= lpath)
lpath             882 lib/utilunix.c                 if (s - url_delim_len > lpath
lpath             888 lib/utilunix.c                     while (vfs_prefix > lpath && !IS_PATH_SEP (*--vfs_prefix))
lpath             921 lib/utilunix.c                 if (s == lpath && IS_PATH_SEP (*s))
lpath             939 lib/utilunix.c                 p = s > lpath ? s - 1 : s;
lpath             944 lib/utilunix.c             if (s == lpath)
lpath             947 lib/utilunix.c                 if (!IS_PATH_SEP (lpath[0]))
lpath             948 lib/utilunix.c                     lpath[0] = '.';
lpath             949 lib/utilunix.c                 lpath[1] = '\0';
lpath             954 lib/utilunix.c                 if (s == lpath + 1)
lpath             967 lib/utilunix.c                     for (p = s - 1; p >= lpath && !IS_PATH_SEP (*p); p--)
lpath             970 lib/utilunix.c                     if (p >= lpath)
lpath             976 lib/utilunix.c                     if (s >= lpath + url_delim_len