semi              974 lib/strutil/strutil.c     char *semi;
semi              981 lib/strutil/strutil.c         semi = g_strrstr_len (haystack, len, needle);
semi              982 lib/strutil/strutil.c         if (semi == NULL)
semi              984 lib/strutil/strutil.c         len = semi - haystack - 1;
semi              988 lib/strutil/strutil.c     return semi;
semi               90 lib/vfs/path.c     char *semi;
semi               97 lib/vfs/path.c     semi = strrstr_skip_count (path, "#", skip_count);
semi               99 lib/vfs/path.c     if ((semi == NULL) || (!path_magic (path)))
semi              102 lib/vfs/path.c     slash = strchr (semi, PATH_SEP);
semi              103 lib/vfs/path.c     *semi = '\0';
semi              114 lib/vfs/path.c     ret = vfs_prefix_to_class (semi + 1);
semi              118 lib/vfs/path.c             *op = semi + 1;
semi              127 lib/vfs/path.c     *semi = '#';
semi             1018 lib/vfs/path.c     char *semi;
semi             1021 lib/vfs/path.c     semi = g_strrstr_len (path, len, VFS_ENCODING_PREFIX);
semi             1022 lib/vfs/path.c     if (semi == NULL)
semi             1025 lib/vfs/path.c     if (semi == path || IS_PATH_SEP (semi[-1]))
semi             1029 lib/vfs/path.c         semi += strlen (VFS_ENCODING_PREFIX);  // skip "#enc:"
semi             1030 lib/vfs/path.c         slash = strchr (semi, PATH_SEP);
semi             1032 lib/vfs/path.c             return g_strndup (semi, slash - semi);
semi             1033 lib/vfs/path.c         return g_strdup (semi);
semi             1036 lib/vfs/path.c     return vfs_get_encoding (path, semi - path);
semi              121 lib/vfs/vfs.c      const char *semi;
semi              129 lib/vfs/vfs.c      semi = g_strrstr_len (path, sz, VFS_ENCODING_PREFIX);
semi              130 lib/vfs/vfs.c      if (semi != NULL && (semi == path || IS_PATH_SEP (semi[-1])))
semi              138 lib/vfs/vfs.c          ms = semi - path;
semi              144 lib/vfs/vfs.c          semi += strlen (VFS_ENCODING_PREFIX);  // skip "#enc:"
semi              145 lib/vfs/vfs.c          slash = strchr (semi, PATH_SEP);
semi              150 lib/vfs/vfs.c          ms = slash != NULL ? slash - semi : (long) strlen (semi);
semi              153 lib/vfs/vfs.c          if (semi + ms > path + sz)
semi              154 lib/vfs/vfs.c              ms = path + sz - semi;
semi              155 lib/vfs/vfs.c          memcpy (encoding, semi, ms);
semi              327 lib/vfs/vfs.c      char *semi, *p;
semi              333 lib/vfs/vfs.c      semi = g_strrstr (p, VFS_PATH_URL_DELIMITER);
semi              334 lib/vfs/vfs.c      if (semi != NULL)
semi              338 lib/vfs/vfs.c          *semi = '\0';
semi              341 lib/vfs/vfs.c              *semi = *VFS_PATH_URL_DELIMITER;
semi              465 src/vfs/sfs/sfs.c         char *c, *semi = NULL;
semi              474 src/vfs/sfs/sfs.c                 semi = c;
semi              483 src/vfs/sfs/sfs.c         if (semi == NULL)
semi              490 src/vfs/sfs/sfs.c         for (c = semi + 1; *c != '\0' && !whitespace (*c); c++)
semi              510 src/vfs/sfs/sfs.c         *(semi + 1) = '\0';
semi              511 src/vfs/sfs/sfs.c         semi = strchr (c, '\n');
semi              512 src/vfs/sfs/sfs.c         if (semi != NULL)
semi              513 src/vfs/sfs/sfs.c             *semi = '\0';