prefix 109 lib/serialize.c mc_serialize_str (const char prefix, const char *data, GError ** error) prefix 116 lib/serialize.c return g_strdup_printf ("%c%zu" SRLZ_DELIM_S "%s", prefix, strlen (data), data); prefix 132 lib/serialize.c mc_deserialize_str (const char prefix, const char *data, GError ** error) prefix 142 lib/serialize.c if (*data != prefix) prefix 144 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 869 lib/strutil/strutil.c str_prefix (const char *text, const char *prefix) prefix 871 lib/strutil/strutil.c return used_class.prefix (text, prefix); prefix 877 lib/strutil/strutil.c str_caseprefix (const char *text, const char *prefix) prefix 879 lib/strutil/strutil.c return used_class.caseprefix (text, prefix); prefix 744 lib/strutil/strutil8bit.c str_8bit_prefix (const char *text, const char *prefix) prefix 748 lib/strutil/strutil8bit.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 749 lib/strutil/strutil8bit.c && text[result] == prefix[result]; result++); prefix 757 lib/strutil/strutil8bit.c str_8bit_caseprefix (const char *text, const char *prefix) prefix 761 lib/strutil/strutil8bit.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 762 lib/strutil/strutil8bit.c && char_toupper (text[result]) == char_toupper (prefix[result]); result++); prefix 850 lib/strutil/strutil8bit.c result.prefix = str_8bit_prefix; prefix 700 lib/strutil/strutilascii.c str_ascii_prefix (const char *text, const char *prefix) prefix 704 lib/strutil/strutilascii.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 705 lib/strutil/strutilascii.c && text[result] == prefix[result]; result++); prefix 713 lib/strutil/strutilascii.c str_ascii_caseprefix (const char *text, const char *prefix) prefix 717 lib/strutil/strutilascii.c for (result = 0; text[result] != '\0' && prefix[result] != '\0' prefix 718 lib/strutil/strutilascii.c && g_ascii_toupper (text[result]) == g_ascii_toupper (prefix[result]); result++); prefix 773 lib/strutil/strutilascii.c result.prefix = str_ascii_prefix; prefix 1272 lib/strutil/strutilutf8.c str_utf8_prefix (const char *text, const char *prefix) prefix 1280 lib/strutil/strutilutf8.c p = str_utf8_normalize (prefix); prefix 1309 lib/strutil/strutilutf8.c str_utf8_caseprefix (const char *text, const char *prefix) prefix 1317 lib/strutil/strutilutf8.c p = str_utf8_casefold_normalize (prefix); prefix 1503 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 1512 lib/vfs/direntry.c vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags, const char *prefix) prefix 1518 lib/vfs/direntry.c vclass->prefix = prefix; prefix 1551 lib/vfs/direntry.c const char *prefix) prefix 1557 lib/vfs/direntry.c vfs_init_class (vclass, name, flags, prefix); prefix 780 lib/vfs/interface.c mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix) prefix 785 lib/vfs/interface.c if (strchr (prefix, PATH_SEP) != NULL) prefix 786 lib/vfs/interface.c p1 = g_strdup (prefix); prefix 790 lib/vfs/interface.c p1 = g_build_filename (mc_tmpdir (), prefix, (char *) NULL); prefix 1026 lib/vfs/path.c vfs_prefix_to_class (const char *prefix) prefix 1038 lib/vfs/path.c if (vfs->which (vfs, prefix) == -1) prefix 1043 lib/vfs/path.c if (vfs->prefix != NULL && strncmp (prefix, vfs->prefix, strlen (vfs->prefix)) == 0) prefix 1561 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 184 lib/vfs/utilvfs.c vfs_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *param_basename) prefix 210 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 141 lib/vfs/vfs.h const char *prefix; /* "fish:" */ prefix 232 lib/vfs/vfs.h const char *prefix); prefix 334 lib/vfs/vfs.h int mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix); prefix 177 lib/vfs/xdirentry.h const char *prefix); prefix 389 src/filemanager/cmd.c const char *history_name, const char *prefix, int to_home, gboolean strip_password) prefix 404 src/filemanager/cmd.c if (strncmp (prefix, machine, strlen (prefix)) == 0) prefix 407 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 550 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, " list ", local_last_path, (char *) NULL); prefix 553 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, " list ", tmp, (char *) NULL); prefix 721 src/vfs/extfs/extfs.c if ((strncmp (path, info->prefix, path_len) == 0) prefix 722 src/vfs/extfs/extfs.c && ((info->prefix[path_len] == '\0') || (info->prefix[path_len] == '+'))) prefix 747 src/vfs/extfs/extfs.c message (D_ERROR, MSG_ERROR, _("Cannot open %s archive\n%s:\n%s"), info->prefix, name, prefix 946 src/vfs/extfs/extfs.c cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd, prefix 999 src/vfs/extfs/extfs.c g_strconcat (info->path, info->prefix, " run ", quoted_archive_name, " ", q, (char *) NULL); prefix 1599 src/vfs/extfs/extfs.c info.prefix = g_strdup (filename); prefix 1603 src/vfs/extfs/extfs.c info.prefix[len - 1] = '\0'; prefix 1614 src/vfs/extfs/extfs.c && (strcmp (info.prefix, p->prefix) == 0)) prefix 1624 src/vfs/extfs/extfs.c g_free (info.prefix); prefix 1630 src/vfs/extfs/extfs.c info.prefix[len - 1] = '+'; prefix 1679 src/vfs/extfs/extfs.c g_free (info->prefix); prefix 1719 src/vfs/fish/fish.c g_strconcat (vfs_fish_ops->prefix, VFS_PATH_URL_DELIMITER, prefix 115 src/vfs/sfs/sfs.c char *prefix; prefix 518 src/vfs/sfs/sfs.c sfs_info[sfs_no].prefix = g_strdup (key); prefix 539 src/vfs/sfs/sfs.c MC_PTR_FREE (sfs_info[i].prefix); prefix 557 src/vfs/sfs/sfs.c if (strcmp (path, sfs_info[i].prefix) == 0) prefix 560 src/vfs/sfs/sfs.c else if (strncmp (path, sfs_info[i].prefix, strlen (sfs_info[i].prefix)) == 0) prefix 158 src/vfs/tar/tar.c char prefix[155]; /* 345 */ prefix 733 src/vfs/tar/tar.c if (header->header.prefix[0] != '\0') prefix 738 src/vfs/tar/tar.c temp_prefix = g_strndup (header->header.prefix, sizeof (header->header.prefix));