prefix            111 lib/serialize.c mc_serialize_str (const char prefix, const char *data, GError **error)
prefix            118 lib/serialize.c     return g_strdup_printf ("%c%zu" SRLZ_DELIM_S "%s", prefix, strlen (data), data);
prefix            134 lib/serialize.c mc_deserialize_str (const char prefix, const char *data, GError **error)
prefix            144 lib/serialize.c     if (*data != prefix)
prefix            146 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            147 lib/strutil.h      /*I*/ int (*prefix) (const char *text, const char *prefix);
prefix            148 lib/strutil.h      /*I*/ int (*caseprefix) (const char *text, const char *prefix);
prefix            497 lib/strutil.h  int str_prefix (const char *text, const char *prefix);
prefix            502 lib/strutil.h  int str_caseprefix (const char *text, const char *prefix);
prefix            867 lib/strutil/strutil.c str_prefix (const char *text, const char *prefix)
prefix            869 lib/strutil/strutil.c     return used_class.prefix (text, prefix);
prefix            875 lib/strutil/strutil.c str_caseprefix (const char *text, const char *prefix)
prefix            877 lib/strutil/strutil.c     return used_class.caseprefix (text, prefix);
prefix            755 lib/strutil/strutil8bit.c str_8bit_prefix (const char *text, const char *prefix)
prefix            760 lib/strutil/strutil8bit.c          text[result] != '\0' && prefix[result] != '\0' && text[result] == prefix[result]; result++)
prefix            769 lib/strutil/strutil8bit.c str_8bit_caseprefix (const char *text, const char *prefix)
prefix            773 lib/strutil/strutil8bit.c     for (result = 0; text[result] != '\0' && prefix[result] != '\0'
prefix            774 lib/strutil/strutil8bit.c          && char_toupper (text[result]) == char_toupper (prefix[result]);
prefix            864 lib/strutil/strutil8bit.c     result.prefix = str_8bit_prefix;
prefix            718 lib/strutil/strutilascii.c str_ascii_prefix (const char *text, const char *prefix)
prefix            723 lib/strutil/strutilascii.c          text[result] != '\0' && prefix[result] != '\0' && text[result] == prefix[result]; result++)
prefix            732 lib/strutil/strutilascii.c str_ascii_caseprefix (const char *text, const char *prefix)
prefix            736 lib/strutil/strutilascii.c     for (result = 0; text[result] != '\0' && prefix[result] != '\0'
prefix            737 lib/strutil/strutilascii.c          && g_ascii_toupper (text[result]) == g_ascii_toupper (prefix[result]);
prefix            794 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            727 lib/vfs/direntry.c         name = g_strconcat (super->name, PATH_SEP_STR, me->prefix, VFS_PATH_URL_DELIMITER,
prefix           1499 lib/vfs/direntry.c vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags, const char *prefix)
prefix           1505 lib/vfs/direntry.c     vclass->prefix = prefix;
prefix           1538 lib/vfs/direntry.c                    const char *prefix)
prefix           1544 lib/vfs/direntry.c     vfs_init_class (vclass, name, flags, prefix);
prefix            715 lib/vfs/interface.c mc_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *suffix)
prefix            720 lib/vfs/interface.c     if (strchr (prefix, PATH_SEP) != NULL)
prefix            721 lib/vfs/interface.c         p1 = g_strdup (prefix);
prefix            725 lib/vfs/interface.c         p1 = g_build_filename (mc_tmpdir (), prefix, (char *) NULL);
prefix            983 lib/vfs/path.c vfs_prefix_to_class (const char *prefix)
prefix            995 lib/vfs/path.c             if (vfs->which (vfs, prefix) == -1)
prefix           1000 lib/vfs/path.c         if (vfs->prefix != NULL && strncmp (prefix, vfs->prefix, strlen (vfs->prefix)) == 0)
prefix           1541 lib/vfs/path.c     pretty_path = g_string_new (element->class->prefix);
prefix             78 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            236 lib/vfs/vfs.h                       const char *prefix);
prefix            338 lib/vfs/vfs.h  int mc_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *suffix);
prefix            180 lib/vfs/xdirentry.h                         const char *prefix);
prefix            381 src/filemanager/cmd.c          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            100 src/vfs/extfs/extfs.c     char *prefix;
prefix            179 src/vfs/extfs/extfs.c     name = g_strconcat (a->name != NULL ? a->name : "", PATH_SEP_STR, info->prefix,
prefix            554 src/vfs/extfs/extfs.c     cmd = g_strconcat (info->path, info->prefix, " list ",
prefix            724 src/vfs/extfs/extfs.c         if ((strncmp (path, info->prefix, path_len) == 0)
prefix            725 src/vfs/extfs/extfs.c             && ((info->prefix[path_len] == '\0') || (info->prefix[path_len] == '+')))
prefix            751 src/vfs/extfs/extfs.c             message (D_ERROR, MSG_ERROR, _ ("Cannot open %s archive\n%s"), info->prefix, name);
prefix            754 src/vfs/extfs/extfs.c             message (D_ERROR, MSG_ERROR, _ ("Cannot open %s archive\n%s:\n%s"), info->prefix, name,
prefix            967 src/vfs/extfs/extfs.c         cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd, quoted_archive_name, " ", file,
prefix            974 src/vfs/extfs/extfs.c         cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd, quoted_archive_name, " ", file,
prefix           1037 src/vfs/extfs/extfs.c         g_strconcat (info->path, info->prefix, " run ", quoted_archive_name, " ", q, (char *) NULL);
prefix           1612 src/vfs/extfs/extfs.c                 info.prefix = g_strndup (filename, len);
prefix           1616 src/vfs/extfs/extfs.c                     info.prefix[len - 1] = '\0';
prefix           1627 src/vfs/extfs/extfs.c                         strcmp (info.path, p->path) != 0 && strcmp (info.prefix, p->prefix) == 0;
prefix           1633 src/vfs/extfs/extfs.c                     g_free (info.prefix);
prefix           1639 src/vfs/extfs/extfs.c                         info.prefix[len - 1] = '+';
prefix           1688 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           1679 src/vfs/shell/shell.c         name = g_strconcat (vfs_shell_ops->prefix, VFS_PATH_URL_DELIMITER,
prefix             90 src/vfs/tar/tar-internal.h     char prefix[155];    // 345
prefix            156 src/vfs/tar/tar-internal.h     char prefix[131];    // 345
prefix            165 src/vfs/tar/tar-internal.h     char prefix[1];                            // 345  t_name prefix
prefix            490 src/vfs/tar/tar-sparse.c     if (h->star_in_header.prefix[0] == '\0' && h->star_in_header.sp[0].offset[10] != '\0')
prefix            378 src/vfs/tar/tar.c             if (header->star_header.prefix[130] == 0
prefix            742 src/vfs/tar/tar.c             if (h->prefix[0] != '\0' && strcmp (h->magic, TMAGIC) == 0)
prefix            743 src/vfs/tar/tar.c                 s1 = g_strndup (h->prefix, sizeof (h->prefix));