semi 966 lib/strutil/strutil.c char *semi; semi 973 lib/strutil/strutil.c semi = g_strrstr_len (haystack, len, needle); semi 974 lib/strutil/strutil.c if (semi == NULL) semi 976 lib/strutil/strutil.c len = semi - haystack - 1; semi 980 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 1019 lib/vfs/path.c char *semi; semi 1022 lib/vfs/path.c semi = g_strrstr_len (path, len, VFS_ENCODING_PREFIX); semi 1023 lib/vfs/path.c if (semi == NULL) semi 1026 lib/vfs/path.c if (semi == path || IS_PATH_SEP (semi[-1])) semi 1030 lib/vfs/path.c semi += strlen (VFS_ENCODING_PREFIX); // skip "#enc:" semi 1031 lib/vfs/path.c slash = strchr (semi, PATH_SEP); semi 1033 lib/vfs/path.c return g_strndup (semi, slash - semi); semi 1034 lib/vfs/path.c return g_strdup (semi); semi 1037 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, size, 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 146 lib/vfs/vfs.c semi += strlen (VFS_ENCODING_PREFIX); // skip "#enc:" semi 147 lib/vfs/vfs.c slash = strchr (semi, PATH_SEP); semi 152 lib/vfs/vfs.c ms = (slash != NULL) ? slash - semi : (int) strlen (semi); semi 155 lib/vfs/vfs.c if (semi + ms > path + size) semi 156 lib/vfs/vfs.c ms = path + size - semi; semi 157 lib/vfs/vfs.c memcpy (encoding, semi, ms); semi 328 lib/vfs/vfs.c char *semi, *p; semi 334 lib/vfs/vfs.c semi = g_strrstr (p, VFS_PATH_URL_DELIMITER); semi 335 lib/vfs/vfs.c if (semi != NULL) semi 339 lib/vfs/vfs.c *semi = '\0'; semi 342 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';