mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
70 lines
9.6 KiB
HTML
70 lines
9.6 KiB
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<title>vclass</title>
|
|
<meta name='robots' content='noindex,nofollow' />
|
|
<meta name='generator' content='GLOBAL-6.6.11' />
|
|
<meta http-equiv='Content-Style-Type' content='text/css' />
|
|
<link rel='stylesheet' type='text/css' href='../style.css' />
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
<span class='curline'><a href='../S/lib--event-types.h.html#L28'>vclass</a> 28 lib/event-types.h struct vfs_class *vclass;</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L930'>vclass</a> 930 lib/utilunix.c vfs_class *vclass;</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L938'>vclass</a> 938 lib/utilunix.c vclass = vfs_prefix_to_class (vfs_prefix);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L941'>vclass</a> 941 lib/utilunix.c if (vclass != NULL && (vclass->flags & VFSF_REMOTE) != 0)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1499'>vclass</a> 1499 lib/vfs/direntry.c vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags, const char *prefix)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1501'>vclass</a> 1501 lib/vfs/direntry.c memset (vclass, 0, sizeof (struct vfs_class));</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1503'>vclass</a> 1503 lib/vfs/direntry.c vclass->name = name;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1504'>vclass</a> 1504 lib/vfs/direntry.c vclass->flags = flags;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1505'>vclass</a> 1505 lib/vfs/direntry.c vclass->prefix = prefix;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1507'>vclass</a> 1507 lib/vfs/direntry.c vclass->fill_names = vfs_s_fill_names;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1508'>vclass</a> 1508 lib/vfs/direntry.c vclass->open = vfs_s_open;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1509'>vclass</a> 1509 lib/vfs/direntry.c vclass->close = vfs_s_close;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1510'>vclass</a> 1510 lib/vfs/direntry.c vclass->read = vfs_s_read;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1511'>vclass</a> 1511 lib/vfs/direntry.c if ((vclass->flags & VFSF_READONLY) == 0)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1512'>vclass</a> 1512 lib/vfs/direntry.c vclass->write = vfs_s_write;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1513'>vclass</a> 1513 lib/vfs/direntry.c vclass->opendir = vfs_s_opendir;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1514'>vclass</a> 1514 lib/vfs/direntry.c vclass->readdir = vfs_s_readdir;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1515'>vclass</a> 1515 lib/vfs/direntry.c vclass->closedir = vfs_s_closedir;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1516'>vclass</a> 1516 lib/vfs/direntry.c vclass->stat = vfs_s_stat;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1517'>vclass</a> 1517 lib/vfs/direntry.c vclass->lstat = vfs_s_lstat;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1518'>vclass</a> 1518 lib/vfs/direntry.c vclass->fstat = vfs_s_fstat;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1519'>vclass</a> 1519 lib/vfs/direntry.c vclass->readlink = vfs_s_readlink;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1520'>vclass</a> 1520 lib/vfs/direntry.c vclass->chdir = vfs_s_chdir;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1521'>vclass</a> 1521 lib/vfs/direntry.c vclass->ferrno = vfs_s_ferrno;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1522'>vclass</a> 1522 lib/vfs/direntry.c vclass->lseek = vfs_s_lseek;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1523'>vclass</a> 1523 lib/vfs/direntry.c vclass->getid = vfs_s_getid;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1524'>vclass</a> 1524 lib/vfs/direntry.c vclass->nothingisopen = vfs_s_nothingisopen;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1525'>vclass</a> 1525 lib/vfs/direntry.c vclass->free = vfs_s_free;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1526'>vclass</a> 1526 lib/vfs/direntry.c vclass->setctl = vfs_s_setctl;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1527'>vclass</a> 1527 lib/vfs/direntry.c if ((vclass->flags & VFSF_USETMP) != 0)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1529'>vclass</a> 1529 lib/vfs/direntry.c vclass->getlocalcopy = vfs_s_getlocalcopy;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1530'>vclass</a> 1530 lib/vfs/direntry.c vclass->ungetlocalcopy = vfs_s_ungetlocalcopy;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1540'>vclass</a> 1540 lib/vfs/direntry.c struct vfs_class *vclass = VFS_CLASS (sub);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1544'>vclass</a> 1544 lib/vfs/direntry.c vfs_init_class (vclass, name, flags, prefix);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1550'>vclass</a> 1550 lib/vfs/direntry.c if ((vclass->flags & VFSF_USETMP) != 0)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1552'>vclass</a> 1552 lib/vfs/direntry.c else if ((vclass->flags & VFSF_REMOTE) != 0)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L201'>vclass</a> 201 lib/vfs/gc.c vfs_stamp_create (struct vfs_class *vclass, vfsid id)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L205'>vclass</a> 205 lib/vfs/gc.c ev_vfs_stamp_create_t event_data = { vclass, id, FALSE };</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L223'>vclass</a> 223 lib/vfs/gc.c if (!(id == NULL || (me == vclass && nvfsid == id)))</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L227'>vclass</a> 227 lib/vfs/gc.c if (!event_data.ret && vclass != NULL && vclass->nothingisopen != NULL</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L228'>vclass</a> 228 lib/vfs/gc.c && vclass->nothingisopen (id))</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.c.html#L229'>vclass</a> 229 lib/vfs/gc.c vfs_addstamp (vclass, id);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.h.html#L21'>vclass</a> 21 lib/vfs/gc.h gboolean vfs_stamp (struct vfs_class *vclass, vfsid id);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.h.html#L22'>vclass</a> 22 lib/vfs/gc.h void vfs_rmstamp (struct vfs_class *vclass, vfsid id);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--gc.h.html#L23'>vclass</a> 23 lib/vfs/gc.h void vfs_stamp_create (struct vfs_class *vclass, vfsid id);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.c.html#L91'>vclass</a> 91 lib/vfs/vfs.c vfs_class *vclass;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.c.html#L248'>vclass</a> 248 lib/vfs/vfs.c return h->vclass;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.c.html#L258'>vclass</a> 258 lib/vfs/vfs.c vfs_new_handle (struct vfs_class *vclass, void *fsinfo)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.c.html#L264'>vclass</a> 264 lib/vfs/vfs.c h->vclass = vclass;</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L236'>vclass</a> 236 lib/vfs/vfs.h void vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags,</span>
|
|
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L294'>vclass</a> 294 lib/vfs/vfs.h int vfs_new_handle (struct vfs_class *vclass, void *fsinfo);</span>
|
|
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L450'>vclass</a> 450 src/filemanager/filemanager.c check_panel_timestamp (const WPanel *panel, panel_view_mode_t mode, const struct vfs_class *vclass,</span>
|
|
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L454'>vclass</a> 454 src/filemanager/filemanager.c || (vfs_path_get_last_path_vfs (panel->cwd_vpath) == vclass</span>
|
|
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L471'>vclass</a> 471 src/filemanager/filemanager.c event_data->ret = check_panel_timestamp (current_panel, get_current_type (), event_data->vclass,</span>
|
|
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L490'>vclass</a> 490 src/filemanager/filemanager.c check_panel_timestamp (other_panel, get_other_type (), event_data->vclass, event_data->id);</span>
|
|
</pre>
|
|
</body>
|
|
</html>
|