prefix 112 lib/serialize.c mc_serialize_str (const char prefix, const char *data, GError **error) prefix 119 lib/serialize.c return g_strdup_printf ("%c%zu" SRLZ_DELIM_S "%s", prefix, strlen (data), data); prefix 135 lib/serialize.c mc_deserialize_str (const char prefix, const char *data, GError **error) prefix 145 lib/serialize.c if (*data != prefix) prefix 147 lib/serialize.c g_set_error (error, MC_ERROR, 0, FUNC_NAME ": String prefix doesn't equal to '%c'", prefix); prefix 19 lib/serialize.h char *mc_serialize_str (const char prefix, const char *data, GError ** error); prefix 20 lib/serialize.h char *mc_deserialize_str (const char prefix, const char *data, GError ** error); prefix 148 lib/strutil.h /*I*/ int (*prefix) (const char *text, const char *prefix); prefix 149 lib/strutil.h /*I*/ int (*caseprefix) (const char *text, const char *prefix); prefix 502 lib/strutil.h int str_prefix (const char *text, const char *prefix); prefix 507 lib/strutil.h int str_caseprefix (const char *text, const char *prefix); prefix 862 lib/strutil/strutil.c str_prefix (const char *text, const char *prefix) prefix 864 lib/strutil/strutil.c return used_class.prefix (text, prefix); prefix 870 lib/strutil/strutil.c str_caseprefix (const char *text, const char *prefix) prefix 872 lib/strutil/strutil.c return used_class.caseprefix (text, prefix); prefix 760 lib/strutil/strutil8bit.c str_8bit_prefix (const char *text, const char *prefix) prefix 764 lib/strutil/strutil8bit.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 765 lib/strutil/strutil8bit.c && text[result] == prefix[result]; result++); prefix 773 lib/strutil/strutil8bit.c str_8bit_caseprefix (const char *text, const char *prefix) prefix 777 lib/strutil/strutil8bit.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 778 lib/strutil/strutil8bit.c && char_toupper (text[result]) == char_toupper (prefix[result]); result++); prefix 866 lib/strutil/strutil8bit.c result.prefix = str_8bit_prefix; prefix 720 lib/strutil/strutilascii.c str_ascii_prefix (const char *text, const char *prefix) prefix 724 lib/strutil/strutilascii.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 725 lib/strutil/strutilascii.c && text[result] == prefix[result]; result++); prefix 733 lib/strutil/strutilascii.c str_ascii_caseprefix (const char *text, const char *prefix) prefix 737 lib/strutil/strutilascii.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 738 lib/strutil/strutilascii.c && g_ascii_toupper (text[result]) == g_ascii_toupper (prefix[result]); result++); prefix 793 lib/strutil/strutilascii.c result.prefix = str_ascii_prefix; prefix 1293 lib/strutil/strutilutf8.c str_utf8_prefix (const char *text, const char *prefix) prefix 1301 lib/strutil/strutilutf8.c p = str_utf8_normalize (prefix); prefix 1330 lib/strutil/strutilutf8.c str_utf8_caseprefix (const char *text, const char *prefix) prefix 1338 lib/strutil/strutilutf8.c p = str_utf8_casefold_normalize (prefix); prefix 1524 lib/strutil/strutilutf8.c result.prefix = str_utf8_prefix; prefix 730 lib/vfs/direntry.c name = g_strconcat (super->name, PATH_SEP_STR, me->prefix, VFS_PATH_URL_DELIMITER, prefix 1502 lib/vfs/direntry.c vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags, const char *prefix) prefix 1508 lib/vfs/direntry.c vclass->prefix = prefix; prefix 1541 lib/vfs/direntry.c const char *prefix) prefix 1547 lib/vfs/direntry.c vfs_init_class (vclass, name, flags, prefix); prefix 734 lib/vfs/interface.c mc_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *suffix) prefix 739 lib/vfs/interface.c if (strchr (prefix, PATH_SEP) != NULL) prefix 740 lib/vfs/interface.c p1 = g_strdup (prefix); prefix 744 lib/vfs/interface.c p1 = g_build_filename (mc_tmpdir (), prefix, (char *) NULL); prefix 1010 lib/vfs/path.c vfs_prefix_to_class (const char *prefix) prefix 1022 lib/vfs/path.c if (vfs->which (vfs, prefix) == -1) prefix 1027 lib/vfs/path.c if (vfs->prefix != NULL && strncmp (prefix, vfs->prefix, strlen (vfs->prefix)) == 0) prefix 1578 lib/vfs/path.c pretty_path = g_string_new (element->class->prefix); prefix 82 lib/vfs/path.h struct vfs_class *vfs_prefix_to_class (const char *prefix); prefix 186 lib/vfs/utilvfs.c vfs_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *param_basename) prefix 212 lib/vfs/utilvfs.c fd = mc_mkstemps (pname_vpath, prefix, suffix->str); prefix 45 lib/vfs/utilvfs.h int vfs_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *basename); prefix 142 lib/vfs/vfs.h const char *prefix; /* "shell:" */ prefix 238 lib/vfs/vfs.h const char *prefix); prefix 342 lib/vfs/vfs.h int mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix); prefix 179 lib/vfs/xdirentry.h const char *prefix); prefix 380 src/filemanager/cmd.c const char *history_name, const char *prefix, int to_home, gboolean strip_password) prefix 395 src/filemanager/cmd.c if (strncmp (prefix, machine, strlen (prefix)) == 0) prefix 398 src/filemanager/cmd.c cd_path = g_strconcat (prefix, machine, to_home ? "/~/" : (char *) NULL, (char *) NULL); prefix 94 src/vfs/extfs/extfs.c char *prefix; prefix 174 src/vfs/extfs/extfs.c g_strconcat (a->name != NULL ? a->name : "", PATH_SEP_STR, info->prefix, prefix 549 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, " list ", prefix 717 src/vfs/extfs/extfs.c if ((strncmp (path, info->prefix, path_len) == 0) prefix 718 src/vfs/extfs/extfs.c && ((info->prefix[path_len] == '\0') || (info->prefix[path_len] == '+'))) prefix 744 src/vfs/extfs/extfs.c message (D_ERROR, MSG_ERROR, _("Cannot open %s archive\n%s"), info->prefix, name); prefix 747 src/vfs/extfs/extfs.c message (D_ERROR, MSG_ERROR, _("Cannot open %s archive\n%s:\n%s"), info->prefix, name, prefix 960 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd, quoted_archive_name, " ", prefix 967 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd, quoted_archive_name, " ", prefix 1030 src/vfs/extfs/extfs.c g_strconcat (info->path, info->prefix, " run ", quoted_archive_name, " ", q, (char *) NULL); prefix 1628 src/vfs/extfs/extfs.c info.prefix = g_strndup (filename, len); prefix 1632 src/vfs/extfs/extfs.c info.prefix[len - 1] = '\0'; prefix 1643 src/vfs/extfs/extfs.c && strcmp (info.prefix, p->prefix) == 0; prefix 1649 src/vfs/extfs/extfs.c g_free (info.prefix); prefix 1655 src/vfs/extfs/extfs.c info.prefix[len - 1] = '+'; prefix 1704 src/vfs/extfs/extfs.c g_free (info->prefix); prefix 114 src/vfs/sfs/sfs.c char *prefix; prefix 515 src/vfs/sfs/sfs.c sfs_info[sfs_no].prefix = g_strdup (key); prefix 536 src/vfs/sfs/sfs.c MC_PTR_FREE (sfs_info[i].prefix); prefix 554 src/vfs/sfs/sfs.c if (strcmp (path, sfs_info[i].prefix) == 0) prefix 557 src/vfs/sfs/sfs.c else if (strncmp (path, sfs_info[i].prefix, strlen (sfs_info[i].prefix)) == 0) prefix 1707 src/vfs/shell/shell.c g_strconcat (vfs_shell_ops->prefix, VFS_PATH_URL_DELIMITER, prefix 93 src/vfs/tar/tar-internal.h char prefix[155]; /* 345 */ prefix 159 src/vfs/tar/tar-internal.h char prefix[131]; /* 345 */ prefix 168 src/vfs/tar/tar-internal.h char prefix[1]; /* 345 t_name prefix */ prefix 497 src/vfs/tar/tar-sparse.c if (h->star_in_header.prefix[0] == '\0' && h->star_in_header.sp[0].offset[10] != '\0') prefix 389 src/vfs/tar/tar.c if (header->star_header.prefix[130] == 0 prefix 757 src/vfs/tar/tar.c if (h->prefix[0] != '\0' && strcmp (h->magic, TMAGIC) == 0) prefix 758 src/vfs/tar/tar.c s1 = g_strndup (h->prefix, sizeof (h->prefix));