semi              970 lib/strutil/strutil.c     char *semi;
semi              977 lib/strutil/strutil.c         semi = g_strrstr_len (haystack, len, needle);
semi              978 lib/strutil/strutil.c         if (semi == NULL)
semi              980 lib/strutil/strutil.c         len = semi - haystack - 1;
semi              984 lib/strutil/strutil.c     return semi;
semi               91 lib/vfs/path.c     char *semi;
semi               98 lib/vfs/path.c     semi = strrstr_skip_count (path, "#", skip_count);
semi              100 lib/vfs/path.c     if ((semi == NULL) || (!path_magic (path)))
semi              103 lib/vfs/path.c     slash = strchr (semi, PATH_SEP);
semi              104 lib/vfs/path.c     *semi = '\0';
semi              115 lib/vfs/path.c     ret = vfs_prefix_to_class (semi + 1);
semi              119 lib/vfs/path.c             *op = semi + 1;
semi              128 lib/vfs/path.c     *semi = '#';
semi              197 lib/vfs/path.c     char *semi;
semi              200 lib/vfs/path.c     semi = g_strrstr_len (path, len, VFS_ENCODING_PREFIX);
semi              201 lib/vfs/path.c     if (semi == NULL)
semi              204 lib/vfs/path.c     if (semi == path || IS_PATH_SEP (semi[-1]))
semi              208 lib/vfs/path.c         semi += strlen (VFS_ENCODING_PREFIX);   /* skip "#enc:" */
semi              209 lib/vfs/path.c         slash = strchr (semi, PATH_SEP);
semi              211 lib/vfs/path.c             return g_strndup (semi, slash - semi);
semi              212 lib/vfs/path.c         return g_strdup (semi);
semi              215 lib/vfs/path.c     return vfs_get_encoding (path, semi - path);
semi              125 lib/vfs/vfs.c      const char *semi;
semi              133 lib/vfs/vfs.c      semi = g_strrstr_len (path, size, VFS_ENCODING_PREFIX);
semi              134 lib/vfs/vfs.c      if (semi != NULL && (semi == path || IS_PATH_SEP (semi[-1])))
semi              142 lib/vfs/vfs.c          ms = semi - path;
semi              150 lib/vfs/vfs.c          semi += strlen (VFS_ENCODING_PREFIX);   /* skip "#enc:" */
semi              151 lib/vfs/vfs.c          slash = strchr (semi, PATH_SEP);
semi              156 lib/vfs/vfs.c          ms = (slash != NULL) ? slash - semi : (int) strlen (semi);
semi              159 lib/vfs/vfs.c          if (semi + ms > path + size)
semi              160 lib/vfs/vfs.c              ms = path + size - semi;
semi              161 lib/vfs/vfs.c          memcpy (encoding, semi, ms);
semi              342 lib/vfs/vfs.c      char *semi, *p;
semi              348 lib/vfs/vfs.c      semi = g_strrstr (p, VFS_PATH_URL_DELIMITER);
semi              349 lib/vfs/vfs.c      if (semi != NULL)
semi              353 lib/vfs/vfs.c          *semi = '\0';
semi              356 lib/vfs/vfs.c              *semi = *VFS_PATH_URL_DELIMITER;
semi              471 src/vfs/sfs/sfs.c         char *c, *semi = NULL;
semi              480 src/vfs/sfs/sfs.c                 semi = c;
semi              489 src/vfs/sfs/sfs.c         if (semi == NULL)
semi              496 src/vfs/sfs/sfs.c         for (c = semi + 1; *c != '\0' && !whitespace (*c); c++)
semi              516 src/vfs/sfs/sfs.c         *(semi + 1) = '\0';
semi              517 src/vfs/sfs/sfs.c         semi = strchr (c, '\n');
semi              518 src/vfs/sfs/sfs.c         if (semi != NULL)
semi              519 src/vfs/sfs/sfs.c             *semi = '\0';