semi 961 lib/strutil/strutil.c char *semi; semi 968 lib/strutil/strutil.c semi = g_strrstr_len (haystack, len, needle); semi 969 lib/strutil/strutil.c if (semi == NULL) semi 971 lib/strutil/strutil.c len = semi - haystack - 1; semi 975 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 1049 lib/vfs/path.c char *semi; semi 1052 lib/vfs/path.c semi = g_strrstr_len (path, len, VFS_ENCODING_PREFIX); semi 1053 lib/vfs/path.c if (semi == NULL) semi 1056 lib/vfs/path.c if (semi == path || IS_PATH_SEP (semi[-1])) semi 1060 lib/vfs/path.c semi += strlen (VFS_ENCODING_PREFIX); /* skip "#enc:" */ semi 1061 lib/vfs/path.c slash = strchr (semi, PATH_SEP); semi 1063 lib/vfs/path.c return g_strndup (semi, slash - semi); semi 1064 lib/vfs/path.c return g_strdup (semi); semi 1067 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 338 lib/vfs/vfs.c char *semi, *p; semi 344 lib/vfs/vfs.c semi = g_strrstr (p, VFS_PATH_URL_DELIMITER); semi 345 lib/vfs/vfs.c if (semi != NULL) semi 349 lib/vfs/vfs.c *semi = '\0'; semi 352 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';