cpath            1127 lib/vfs/path.c     mc_config_t *cpath;
cpath            1139 lib/vfs/path.c     cpath = mc_config_init (NULL, FALSE);
cpath            1150 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "path", element->path);
cpath            1151 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "class-name", element->class->name);
cpath            1153 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "encoding", element->encoding);
cpath            1155 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "vfs_prefix", element->vfs_prefix);
cpath            1157 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "user", element->user);
cpath            1158 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "password", element->password);
cpath            1159 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "host", element->host);
cpath            1161 lib/vfs/path.c             mc_config_set_int (cpath, groupname, "port", element->port);
cpath            1164 lib/vfs/path.c     ret_value = mc_serialize_config (cpath, mcerror);
cpath            1165 lib/vfs/path.c     mc_config_deinit (cpath);
cpath            1182 lib/vfs/path.c     mc_config_t *cpath;
cpath            1188 lib/vfs/path.c     cpath = mc_deserialize_config (data, mcerror);
cpath            1189 lib/vfs/path.c     if (cpath == NULL)
cpath            1202 lib/vfs/path.c         if (!mc_config_has_group (cpath, groupname))
cpath            1205 lib/vfs/path.c         cfg_value = mc_config_get_string_raw (cpath, groupname, "class-name", NULL);
cpath            1212 lib/vfs/path.c             mc_config_deinit (cpath);
cpath            1219 lib/vfs/path.c         element->path = mc_config_get_string_raw (cpath, groupname, "path", NULL);
cpath            1222 lib/vfs/path.c         element->encoding = mc_config_get_string_raw (cpath, groupname, "encoding", NULL);
cpath            1227 lib/vfs/path.c         element->vfs_prefix = mc_config_get_string_raw (cpath, groupname, "vfs_prefix", NULL);
cpath            1229 lib/vfs/path.c         element->user = mc_config_get_string_raw (cpath, groupname, "user", NULL);
cpath            1230 lib/vfs/path.c         element->password = mc_config_get_string_raw (cpath, groupname, "password", NULL);
cpath            1231 lib/vfs/path.c         element->host = mc_config_get_string_raw (cpath, groupname, "host", NULL);
cpath            1232 lib/vfs/path.c         element->port = mc_config_get_int (cpath, groupname, "port", 0);
cpath            1237 lib/vfs/path.c     mc_config_deinit (cpath);