pip               617 src/vfs/extfs/extfs.c extfs_read_archive (mc_pipe_t *pip, struct extfs_super_t *archive, GError **error)
pip               627 src/vfs/extfs/extfs.c         pip->out.len = MC_PIPE_BUFSIZE;
pip               628 src/vfs/extfs/extfs.c         pip->err.len = MC_PIPE_BUFSIZE;
pip               630 src/vfs/extfs/extfs.c         mc_pread (pip, error);
pip               635 src/vfs/extfs/extfs.c         if (pip->err.len > 0)
pip               639 src/vfs/extfs/extfs.c                 err_msg = g_string_new_len (pip->err.buf, pip->err.len);
pip               644 src/vfs/extfs/extfs.c                 g_string_append_len (err_msg, pip->err.buf, pip->err.len);
pip               648 src/vfs/extfs/extfs.c         if (pip->out.len == MC_PIPE_STREAM_EOF)
pip               651 src/vfs/extfs/extfs.c         if (pip->out.len == 0)
pip               654 src/vfs/extfs/extfs.c         if (pip->out.len == MC_PIPE_ERROR_READ)
pip               657 src/vfs/extfs/extfs.c         while (ret != -1 && (buffer = mc_pstream_get_string (&pip->out)) != NULL)
pip               745 src/vfs/extfs/extfs.c     mc_pipe_t *pip;
pip               748 src/vfs/extfs/extfs.c     pip = extfs_open_archive (fstype, name, archive, &error);
pip               752 src/vfs/extfs/extfs.c     if (pip == NULL)
pip               768 src/vfs/extfs/extfs.c         result = extfs_read_archive (pip, a, &error);
pip               779 src/vfs/extfs/extfs.c         mc_pclose (pip, NULL);
pip               947 src/vfs/extfs/extfs.c     mc_pipe_t *pip;
pip               995 src/vfs/extfs/extfs.c     pip = mc_popen (cmd->str, FALSE, TRUE, &error);
pip               998 src/vfs/extfs/extfs.c     if (pip == NULL)
pip              1005 src/vfs/extfs/extfs.c     pip->err.null_term = TRUE;
pip              1007 src/vfs/extfs/extfs.c     mc_pread (pip, &error);
pip              1014 src/vfs/extfs/extfs.c     else if (pip->err.len > 0)
pip              1015 src/vfs/extfs/extfs.c         message (D_ERROR, MSG_ERROR, _ ("EXTFS virtual file system:\n%s"), pip->err.buf);
pip              1017 src/vfs/extfs/extfs.c     mc_pclose (pip, NULL);
pip               145 src/vfs/sfs/sfs.c     mc_pipe_t *pip;
pip               227 src/vfs/sfs/sfs.c     pip = mc_popen (pad, FALSE, TRUE, &error);
pip               228 src/vfs/sfs/sfs.c     if (pip == NULL)
pip               235 src/vfs/sfs/sfs.c     pip->err.null_term = TRUE;
pip               237 src/vfs/sfs/sfs.c     mc_pread (pip, &error);
pip               242 src/vfs/sfs/sfs.c         mc_pclose (pip, NULL);
pip               246 src/vfs/sfs/sfs.c     if (pip->err.len > 0)
pip               247 src/vfs/sfs/sfs.c         message (D_ERROR, MSG_ERROR, _ ("SFS virtual file system:\n%s"), pip->err.buf);
pip               249 src/vfs/sfs/sfs.c     mc_pclose (pip, NULL);
pip               260 tests/lib/utilunix__mc_pstream_get_string.c     mc_pipe_t *pip;
pip               285 tests/lib/utilunix__mc_pstream_get_string.c     pip = test_mc_popen ();
pip               291 tests/lib/utilunix__mc_pstream_get_string.c         test_mc_pread (pip);
pip               293 tests/lib/utilunix__mc_pstream_get_string.c         if (pip->out.len == MC_PIPE_STREAM_EOF)
pip               296 tests/lib/utilunix__mc_pstream_get_string.c         while ((line = mc_pstream_get_string (&pip->out)) != NULL)