op                 88 lib/vfs/path.c _vfs_split_with_semi_skip_count (char *path, const char **inpath, const char **op,
op                106 lib/vfs/path.c     if (op != NULL)
op                107 lib/vfs/path.c         *op = NULL;
op                118 lib/vfs/path.c         if (op != NULL)
op                119 lib/vfs/path.c             *op = semi + 1;
op                129 lib/vfs/path.c     ret = _vfs_split_with_semi_skip_count (path, inpath, op, skip_count + 1);
op                381 lib/vfs/path.c     const char *local, *op;
op                385 lib/vfs/path.c     while ((class = _vfs_split_with_semi_skip_count (path, &local, &op, 0)) != NULL)
op                400 lib/vfs/path.c         url_params = strchr (op, ':');  /* skip VFS prefix */
op                408 lib/vfs/path.c         if (*op != '\0')
op                409 lib/vfs/path.c             element->vfs_prefix = g_strdup (op);
op                696 src/diffviewer/ydiff.c     DIFFCMD op;
op                749 src/diffviewer/ydiff.c     op.a[0][0] = f1;
op                750 src/diffviewer/ydiff.c     op.a[0][1] = f2;
op                751 src/diffviewer/ydiff.c     op.cmd = cmd;
op                752 src/diffviewer/ydiff.c     op.a[1][0] = t1;
op                753 src/diffviewer/ydiff.c     op.a[1][1] = t2;
op                754 src/diffviewer/ydiff.c     g_array_append_val (ops, op);
op                901 src/diffviewer/ydiff.c     const DIFFCMD *op;
op                931 src/diffviewer/ydiff.c         op = &g_array_index (ops, DIFFCMD, i);
op                933 src/diffviewer/ydiff.c         n = op->F1;
op                934 src/diffviewer/ydiff.c         if (op->cmd != add_cmd)
op                943 src/diffviewer/ydiff.c         if (op->cmd == add_cmd)
op                944 src/diffviewer/ydiff.c             for (n = op->T2 - op->T1 + 1; n != 0; n--)
op                947 src/diffviewer/ydiff.c         if (op->cmd == del_cmd)
op                949 src/diffviewer/ydiff.c             for (n = op->F2 - op->F1 + 1;
op                957 src/diffviewer/ydiff.c         if (op->cmd == 'c')
op                959 src/diffviewer/ydiff.c             for (n = op->F2 - op->F1 + 1;
op                966 src/diffviewer/ydiff.c             for (n = op->T2 - op->T1 - (op->F2 - op->F1); n > 0; n--)
op                870 src/filemanager/boxes.c sort_box (dir_sort_options_t * op, const panel_field_t * sort_field)
op                893 src/filemanager/boxes.c                 QUICK_CHECKBOX (N_("Executable &first"), &op->exec_first, NULL),
op                894 src/filemanager/boxes.c                 QUICK_CHECKBOX (N_("Cas&e sensitive"), &op->case_sensitive, NULL),
op                895 src/filemanager/boxes.c                 QUICK_CHECKBOX (N_("&Reverse"), &op->reverse, NULL),
op                 26 src/filemanager/boxes.h const panel_field_t *sort_box (dir_sort_options_t * op, const panel_field_t * sort_field);
op                 55 src/filemanager/file.h gboolean panel_operate (void *source_panel, FileOperation op, gboolean force_single);
op                 69 src/filemanager/fileopctx.c file_op_context_new (FileOperation op)
op                 74 src/filemanager/fileopctx.c     ctx->operation = op;
op                185 src/filemanager/fileopctx.h file_op_context_t *file_op_context_new (FileOperation op);
op                617 src/vfs/ftpfs/ftpfs.c     char *op;
op                625 src/vfs/ftpfs/ftpfs.c         op = g_strdup (super->path_element->password);
op                627 src/vfs/ftpfs/ftpfs.c         op = g_strdup (netrcpass);
op                633 src/vfs/ftpfs/ftpfs.c         op = g_strdup (ftpfs_anonymous_passwd);
op                641 src/vfs/ftpfs/ftpfs.c         op = vfs_get_password (p);
op                643 src/vfs/ftpfs/ftpfs.c         if (op == NULL)
op                645 src/vfs/ftpfs/ftpfs.c         super->path_element->password = g_strdup (op);
op                649 src/vfs/ftpfs/ftpfs.c         pass = op;
op                652 src/vfs/ftpfs/ftpfs.c         pass = g_strconcat ("-", op, (char *) NULL);
op                653 src/vfs/ftpfs/ftpfs.c         wipe_password (op);
op                696 src/vfs/ftpfs/ftpfs.c                 op = input_dialog (p, _("Account:"), MC_HISTORY_FTPFS_ACCOUNT, "",
op                699 src/vfs/ftpfs/ftpfs.c                 if (op == NULL)
op                702 src/vfs/ftpfs/ftpfs.c                 code = ftpfs_command (me, super, WAIT_REPLY, "ACCT %s", op);
op                703 src/vfs/ftpfs/ftpfs.c                 g_free (op);
op                586 src/vfs/shell/shell.c             char *p, *op;
op                590 src/vfs/shell/shell.c             op = vfs_get_password (p);
op                592 src/vfs/shell/shell.c             if (op == NULL)
op                594 src/vfs/shell/shell.c             super->path_element->password = op;
op                169 tests/lib/vfs/vfs_split.c     const char *local = NULL, *op = NULL;
op                176 tests/lib/vfs/vfs_split.c     actual_result = _vfs_split_with_semi_skip_count (path, &local, &op, 0);
op                182 tests/lib/vfs/vfs_split.c     mctest_assert_str_eq (op, data->expected_op);