handle             20 lib/mcconfig.h     GKeyFile *handle;
handle             62 lib/mcconfig/common.c     data = g_key_file_to_data (mc_config->handle, &len, NULL);
handle            116 lib/mcconfig/common.c     mc_config->handle = g_key_file_new ();
handle            117 lib/mcconfig/common.c     if (mc_config->handle == NULL)
handle            139 lib/mcconfig/common.c             g_key_file_load_from_file (mc_config->handle, ini_path, flags, NULL);
handle            156 lib/mcconfig/common.c         g_key_file_free (mc_config->handle);
handle            171 lib/mcconfig/common.c     value = g_key_file_get_value (mc_config->handle, group, param, NULL);
handle            186 lib/mcconfig/common.c     return g_key_file_has_group (mc_config->handle, group);
handle            197 lib/mcconfig/common.c     return g_key_file_remove_key (mc_config->handle, group, param, NULL);
handle            208 lib/mcconfig/common.c     return g_key_file_remove_group (mc_config->handle, group, NULL);
handle            240 lib/mcconfig/common.c             value = g_key_file_get_value (tmp_config->handle, *curr_grp, *curr_key, NULL);
handle            244 lib/mcconfig/common.c                     g_key_file_remove_key (mc_config->handle, *curr_grp, *curr_key, NULL);
handle            246 lib/mcconfig/common.c                     g_key_file_set_value (mc_config->handle, *curr_grp, *curr_key, value);
handle            250 lib/mcconfig/common.c                 g_key_file_remove_key (mc_config->handle, *curr_grp, *curr_key, NULL);
handle             54 lib/mcconfig/get.c         ret = g_key_file_get_groups (mc_config->handle, len);
handle             74 lib/mcconfig/get.c         ret = g_key_file_get_keys (mc_config->handle, group, len, NULL);
handle            139 lib/mcconfig/get.c     ret = g_key_file_get_string (mc_config->handle, group, param, NULL);
handle            158 lib/mcconfig/get.c     return g_key_file_get_boolean (mc_config->handle, group, param, NULL);
handle            175 lib/mcconfig/get.c     return g_key_file_get_integer (mc_config->handle, group, param, NULL);
handle            187 lib/mcconfig/get.c     return g_key_file_get_string_list (mc_config->handle, group, param, length, NULL);
handle            199 lib/mcconfig/get.c     return g_key_file_get_boolean_list (mc_config->handle, group, param, length, NULL);
handle            211 lib/mcconfig/get.c     return g_key_file_get_integer_list (mc_config->handle, group, param, length, NULL);
handle             81 lib/mcconfig/set.c         g_key_file_set_string (mc_config->handle, group, param, value);
handle             91 lib/mcconfig/set.c         g_key_file_set_value (mc_config->handle, group, param, value);
handle            105 lib/mcconfig/set.c         g_key_file_set_string (mc_config->handle, group, param, buffer);
handle            117 lib/mcconfig/set.c         g_key_file_set_boolean (mc_config->handle, group, param, value);
handle            126 lib/mcconfig/set.c         g_key_file_set_integer (mc_config->handle, group, param, value);
handle            136 lib/mcconfig/set.c         g_key_file_set_string_list (mc_config->handle, group, param, value, length);
handle            146 lib/mcconfig/set.c         g_key_file_set_boolean_list (mc_config->handle, group, param, value, length);
handle            156 lib/mcconfig/set.c         g_key_file_set_integer_list (mc_config->handle, group, param, value, length);
handle            576 lib/vfs/direntry.c     if (file->handle != -1)
handle            580 lib/vfs/direntry.c         n = read (file->handle, buffer, count);
handle            601 lib/vfs/direntry.c     if (file->handle != -1)
handle            605 lib/vfs/direntry.c         n = write (file->handle, buffer, count);
handle            625 lib/vfs/direntry.c     if (file->handle != -1)
handle            629 lib/vfs/direntry.c         retval = lseek (file->handle, offset, whence);
handle            693 lib/vfs/direntry.c     if (file->handle != -1)
handle            695 lib/vfs/direntry.c         close (file->handle);
handle            696 lib/vfs/direntry.c         file->handle = -1;
handle           1287 lib/vfs/direntry.c     fh->handle = -1;
handle           1388 lib/vfs/direntry.c         fh->handle = open (fh->ino->localname, NO_LINEAR (flags), mode);
handle           1389 lib/vfs/direntry.c         if (fh->handle == -1)
handle           1437 lib/vfs/direntry.c     int handle;
handle           1447 lib/vfs/direntry.c     handle = vfs_mkstemps (&tmp_vpath, me->name, ino->ent->name);
handle           1449 lib/vfs/direntry.c     if (handle == -1)
handle           1477 lib/vfs/direntry.c         t = write (handle, buffer, n);
handle           1486 lib/vfs/direntry.c     close (handle);
handle           1496 lib/vfs/direntry.c     close (handle);
handle            300 lib/vfs/interface.c     if (handle == -1) \
handle            303 lib/vfs/interface.c     vfs = vfs_class_find_by_handle (handle, &fsinfo); \
handle            313 lib/vfs/interface.c MC_HANDLEOP (ssize_t, read, (int handle, void *buf, size_t count), (fsinfo, buf, count))
handle            314 lib/vfs/interface.c MC_HANDLEOP (ssize_t, write, (int handle, const void *buf, size_t count), (fsinfo, buf, count))
handle            315 lib/vfs/interface.c MC_HANDLEOP (int, fstat, (int handle, struct stat *buf), (fsinfo, buf))
handle            351 lib/vfs/interface.c mc_ctl (int handle, int ctlop, void *arg)
handle            356 lib/vfs/interface.c     vfs = vfs_class_find_by_handle (handle, &fsinfo);
handle            382 lib/vfs/interface.c mc_close (int handle)
handle            388 lib/vfs/interface.c     if (handle == -1)
handle            391 lib/vfs/interface.c     vfs = vfs_class_find_by_handle (handle, &fsinfo);
handle            395 lib/vfs/interface.c     if (handle < 3)
handle            396 lib/vfs/interface.c         return close (handle);
handle            401 lib/vfs/interface.c     vfs_free_handle (handle);
handle            413 lib/vfs/interface.c     int handle, *handlep;
handle            443 lib/vfs/interface.c     handle = vfs_new_handle (path_element->class, vfs_path_element_clone (path_element));
handle            446 lib/vfs/interface.c     *handlep = handle;
handle            455 lib/vfs/interface.c     int handle;
handle            467 lib/vfs/interface.c     handle = *(int *) dirp;
handle            469 lib/vfs/interface.c     vfs = vfs_class_find_by_handle (handle, &fsinfo);
handle            499 lib/vfs/interface.c     int handle;
handle            507 lib/vfs/interface.c     handle = *(int *) dirp;
handle            509 lib/vfs/interface.c     vfs = vfs_class_find_by_handle (handle, &fsinfo);
handle            523 lib/vfs/interface.c         vfs_free_handle (handle);
handle             93 lib/vfs/vfs.c      int handle;
handle            196 lib/vfs/vfs.c  vfs_get_openfile (int handle)
handle            200 lib/vfs/vfs.c      if (handle < VFS_FIRST_HANDLE || (guint) (handle - VFS_FIRST_HANDLE) >= vfs_openfiles->len)
handle            203 lib/vfs/vfs.c      h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, handle - VFS_FIRST_HANDLE);
handle            207 lib/vfs/vfs.c      g_assert (h->handle == handle);
handle            231 lib/vfs/vfs.c  vfs_free_handle (int handle)
handle            233 lib/vfs/vfs.c      const int idx = handle - VFS_FIRST_HANDLE;
handle            235 lib/vfs/vfs.c      if (handle >= VFS_FIRST_HANDLE && (guint) idx < vfs_openfiles->len)
handle            251 lib/vfs/vfs.c  vfs_class_find_by_handle (int handle, void **fsinfo)
handle            255 lib/vfs/vfs.c      h = vfs_get_openfile (handle);
handle            282 lib/vfs/vfs.c      h->handle = vfs_free_handle_list;
handle            283 lib/vfs/vfs.c      if (h->handle == -1)
handle            286 lib/vfs/vfs.c          h->handle = vfs_openfiles->len;
handle            292 lib/vfs/vfs.c          g_ptr_array_index (vfs_openfiles, h->handle) = h;
handle            295 lib/vfs/vfs.c      h->handle += VFS_FIRST_HANDLE;
handle            296 lib/vfs/vfs.c      return h->handle;
handle            291 lib/vfs/vfs.h  struct vfs_class *vfs_class_find_by_handle (int handle, void **fsinfo);
handle            293 lib/vfs/vfs.h  void vfs_free_handle (int handle);
handle            305 lib/vfs/vfs.h  ssize_t mc_read (int handle, void *buffer, size_t count);
handle            306 lib/vfs/vfs.h  ssize_t mc_write (int handle, const void *buffer, size_t count);
handle            309 lib/vfs/vfs.h  int mc_close (int handle);
handle            106 lib/vfs/xdirentry.h     int handle;                 /* This is for module's use, but if != -1, will be mc_close()d */
handle            137 src/diffviewer/internal.h         mc_search_t *handle;
handle            168 src/diffviewer/search.c         if (mc_search_run (dview->search.handle, p->p, 0, p->u.len, NULL))
handle            203 src/diffviewer/search.c         if (mc_search_run (dview->search.handle, p->p, 0, p->u.len, NULL))
handle            256 src/diffviewer/search.c     mc_search_free (dview->search.handle);
handle            258 src/diffviewer/search.c     dview->search.handle = mc_search_new (dview->search.last_string, cp_source);
handle            260 src/diffviewer/search.c     dview->search.handle = mc_search_new (dview->search.last_string, NULL);
handle            263 src/diffviewer/search.c     if (dview->search.handle == NULL)
handle            266 src/diffviewer/search.c     dview->search.handle->search_type = mcdiffview_search_options.type;
handle            268 src/diffviewer/search.c     dview->search.handle->is_all_charsets = mcdiffview_search_options.all_codepages;
handle            270 src/diffviewer/search.c     dview->search.handle->is_case_sensitive = mcdiffview_search_options.case_sens;
handle            271 src/diffviewer/search.c     dview->search.handle->whole_words = mcdiffview_search_options.whole_words;
handle            283 src/diffviewer/search.c     else if (dview->search.handle == NULL)
handle           1806 src/diffviewer/ydiff.c     mc_search_free (dview->search.handle);
handle           1807 src/diffviewer/ydiff.c     dview->search.handle = NULL;
handle           2433 src/diffviewer/ydiff.c     dview->search.handle = NULL;
handle           1099 src/vfs/extfs/extfs.c     extfs_info->handle = local_handle;
handle           1114 src/vfs/extfs/extfs.c     return read (file->handle, buffer, count);
handle           1125 src/vfs/extfs/extfs.c     close (file->handle);
handle           1126 src/vfs/extfs/extfs.c     file->handle = -1;
handle           1352 src/vfs/extfs/extfs.c     return write (file->handle, buf, nbyte);
handle           1495 src/vfs/extfs/extfs.c     return lseek (file->handle, offset, whence);
handle           2336 src/vfs/ftpfs/ftpfs.c                 int handle;
handle           2338 src/vfs/ftpfs/ftpfs.c                 handle = vfs_mkstemps (&vpath, me->name, fh->ino->ent->name);
handle           2339 src/vfs/ftpfs/ftpfs.c                 if (handle == -1)
handle           2342 src/vfs/ftpfs/ftpfs.c                 close (handle);
handle           2352 src/vfs/ftpfs/ftpfs.c         fh->handle =
handle           2358 src/vfs/ftpfs/ftpfs.c         if (fh->handle < 0)
handle           2365 src/vfs/ftpfs/ftpfs.c         setsockopt (fh->handle, SOL_SOCKET, SO_LINGER, &li, sizeof (li));
handle           2388 src/vfs/ftpfs/ftpfs.c     if (fh->handle != -1 && fh->ino->localname == NULL)
handle           2392 src/vfs/ftpfs/ftpfs.c         close (fh->handle);
handle           2393 src/vfs/ftpfs/ftpfs.c         fh->handle = -1;
handle            260 src/vfs/sfs/sfs.c     int handle;
handle            271 src/vfs/sfs/sfs.c     handle = vfs_mkstemps (&cache_vpath, "sfs", vfs_path_get_last_path_str (vpath));
handle            273 src/vfs/sfs/sfs.c     if (handle == -1)
handle            276 src/vfs/sfs/sfs.c     close (handle);
handle             45 src/vfs/sftpfs/dir.c     LIBSSH2_SFTP_HANDLE *handle;
handle             71 src/vfs/sftpfs/dir.c     LIBSSH2_SFTP_HANDLE *handle;
handle             83 src/vfs/sftpfs/dir.c         handle =
handle             86 src/vfs/sftpfs/dir.c         if (handle != NULL)
handle             95 src/vfs/sftpfs/dir.c     sftpfs_dir->handle = handle;
handle            122 src/vfs/sftpfs/dir.c         rc = libssh2_sftp_readdir (sftpfs_dir->handle, mem, sizeof (mem), &attrs);
handle            151 src/vfs/sftpfs/dir.c     rc = libssh2_sftp_closedir (sftpfs_dir->handle);
handle             51 src/vfs/sftpfs/file.c     LIBSSH2_SFTP_HANDLE *handle;
handle            169 src/vfs/sftpfs/file.c         file->handle =
handle            172 src/vfs/sftpfs/file.c         if (file->handle != NULL)
handle            207 src/vfs/sftpfs/file.c             libssh2_sftp_seek64 (file->handle, file_info.st_size);
handle            234 src/vfs/sftpfs/file.c     if (sftpfs_fh->handle == NULL)
handle            241 src/vfs/sftpfs/file.c         res = libssh2_sftp_fstat_ex (sftpfs_fh->handle, &attrs, 0);
handle            290 src/vfs/sftpfs/file.c         rc = libssh2_sftp_read (file->handle, buffer, count);
handle            300 src/vfs/sftpfs/file.c     fh->pos = (off_t) libssh2_sftp_tell64 (file->handle);
handle            327 src/vfs/sftpfs/file.c     fh->pos = (off_t) libssh2_sftp_tell64 (file->handle);
handle            333 src/vfs/sftpfs/file.c         rc = libssh2_sftp_write (file->handle, buffer, count);
handle            364 src/vfs/sftpfs/file.c     ret = libssh2_sftp_close (SFTP_FILE_HANDLER (fh)->handle);
handle            418 src/vfs/sftpfs/file.c     libssh2_sftp_seek64 (file->handle, fh->pos);
handle            419 src/vfs/sftpfs/file.c     fh->pos = (off_t) libssh2_sftp_tell64 (file->handle);
handle            504 src/vfs/sftpfs/sftpfs.c     if (fh->handle != -1)
handle            505 src/vfs/sftpfs/sftpfs.c         close (fh->handle);