Files
source/Y/mode.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

203 lines
32 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>mode</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--tty--tty-ncurses.c.html#L267'>mode</a> 267 lib/tty/tty-ncurses.c struct termios mode;</span>
<span class='curline'><a href='../S/lib--tty--tty-ncurses.c.html#L290'>mode</a> 290 lib/tty/tty-ncurses.c tcgetattr (STDIN_FILENO, &amp;mode);</span>
<span class='curline'><a href='../S/lib--tty--tty-ncurses.c.html#L292'>mode</a> 292 lib/tty/tty-ncurses.c mode.c_cc[VINTR] = CTRL ('g'); // ^g</span>
<span class='curline'><a href='../S/lib--tty--tty-ncurses.c.html#L294'>mode</a> 294 lib/tty/tty-ncurses.c mode.c_cc[VQUIT] = NULL_VALUE;</span>
<span class='curline'><a href='../S/lib--tty--tty-ncurses.c.html#L295'>mode</a> 295 lib/tty/tty-ncurses.c tcsetattr (STDIN_FILENO, TCSANOW, &amp;mode);</span>
<span class='curline'><a href='../S/lib--util.c.html#L522'>mode</a> 522 lib/util.c static char mode[11];</span>
<span class='curline'><a href='../S/lib--util.c.html#L524'>mode</a> 524 lib/util.c strcpy (mode, "----------");</span>
<span class='curline'><a href='../S/lib--util.c.html#L526'>mode</a> 526 lib/util.c mode[0] = 'd';</span>
<span class='curline'><a href='../S/lib--util.c.html#L528'>mode</a> 528 lib/util.c mode[0] = 'c';</span>
<span class='curline'><a href='../S/lib--util.c.html#L530'>mode</a> 530 lib/util.c mode[0] = 'b';</span>
<span class='curline'><a href='../S/lib--util.c.html#L532'>mode</a> 532 lib/util.c mode[0] = 'l';</span>
<span class='curline'><a href='../S/lib--util.c.html#L534'>mode</a> 534 lib/util.c mode[0] = 'p';</span>
<span class='curline'><a href='../S/lib--util.c.html#L536'>mode</a> 536 lib/util.c mode[0] = 'n';</span>
<span class='curline'><a href='../S/lib--util.c.html#L538'>mode</a> 538 lib/util.c mode[0] = 's';</span>
<span class='curline'><a href='../S/lib--util.c.html#L540'>mode</a> 540 lib/util.c mode[0] = 'D';</span>
<span class='curline'><a href='../S/lib--util.c.html#L542'>mode</a> 542 lib/util.c mode[9] = 'x';</span>
<span class='curline'><a href='../S/lib--util.c.html#L544'>mode</a> 544 lib/util.c mode[8] = 'w';</span>
<span class='curline'><a href='../S/lib--util.c.html#L546'>mode</a> 546 lib/util.c mode[7] = 'r';</span>
<span class='curline'><a href='../S/lib--util.c.html#L548'>mode</a> 548 lib/util.c mode[6] = 'x';</span>
<span class='curline'><a href='../S/lib--util.c.html#L550'>mode</a> 550 lib/util.c mode[5] = 'w';</span>
<span class='curline'><a href='../S/lib--util.c.html#L552'>mode</a> 552 lib/util.c mode[4] = 'r';</span>
<span class='curline'><a href='../S/lib--util.c.html#L554'>mode</a> 554 lib/util.c mode[3] = 'x';</span>
<span class='curline'><a href='../S/lib--util.c.html#L556'>mode</a> 556 lib/util.c mode[2] = 'w';</span>
<span class='curline'><a href='../S/lib--util.c.html#L558'>mode</a> 558 lib/util.c mode[1] = 'r';</span>
<span class='curline'><a href='../S/lib--util.c.html#L561'>mode</a> 561 lib/util.c mode[3] = (mode[3] == 'x') ? 's' : 'S';</span>
<span class='curline'><a href='../S/lib--util.c.html#L565'>mode</a> 565 lib/util.c mode[6] = (mode[6] == 'x') ? 's' : 'S';</span>
<span class='curline'><a href='../S/lib--util.c.html#L569'>mode</a> 569 lib/util.c mode[9] = (mode[9] == 'x') ? 't' : 'T';</span>
<span class='curline'><a href='../S/lib--util.c.html#L571'>mode</a> 571 lib/util.c return mode;</span>
<span class='curline'><a href='../S/lib--util.h.html#L298'>mode</a> 298 lib/util.h is_exe (mode_t mode)</span>
<span class='curline'><a href='../S/lib--util.h.html#L300'>mode</a> 300 lib/util.h return ((mode &amp; (S_IXUSR | S_IXGRP | S_IXOTH)) != 0);</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1001'>mode</a> 1001 lib/vfs/direntry.c vfs_s_default_stat (struct vfs_class *me, mode_t mode)</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1010'>mode</a> 1010 lib/vfs/direntry.c mode &amp;= ~myumask;</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1012'>mode</a> 1012 lib/vfs/direntry.c st.st_mode = mode;</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1070'>mode</a> 1070 lib/vfs/direntry.c mode_t mode)</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1075'>mode</a> 1075 lib/vfs/direntry.c st = vfs_s_default_stat (me, mode);</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1285'>mode</a> 1285 lib/vfs/direntry.c vfs_s_open (const vfs_path_t *vpath, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1368'>mode</a> 1368 lib/vfs/direntry.c if (s-&gt;fh_open != NULL &amp;&amp; s-&gt;fh_open (me, fh, flags, mode) != 0)</span>
<span class='curline'><a href='../S/lib--vfs--direntry.c.html#L1377'>mode</a> 1377 lib/vfs/direntry.c fh-&gt;handle = open (fh-&gt;ino-&gt;localname, NO_LINEAR (flags), mode);</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L194'>mode</a> 194 lib/vfs/interface.c mode_t mode = 0;</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L209'>mode</a> 209 lib/vfs/interface.c mode = va_arg (ap, PROMOTED_MODE_T);</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L219'>mode</a> 219 lib/vfs/interface.c info = me-&gt;open (vpath, flags, mode);</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L252'>mode</a> 252 lib/vfs/interface.c MC_NAMEOP (chmod, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L259'>mode</a> 259 lib/vfs/interface.c MC_NAMEOP (mkdir, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))</span>
<span class='curline'><a href='../S/lib--vfs--interface.c.html#L261'>mode</a> 261 lib/vfs/interface.c MC_NAMEOP (mknod, (const vfs_path_t *vpath, mode_t mode, dev_t dev), (vpath, mode, dev))</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L162'>mode</a> 162 lib/vfs/vfs.h void *(*open) (const vfs_path_t *vpath, int flags, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L175'>mode</a> 175 lib/vfs/vfs.h int (*chmod) (const vfs_path_t *vpath, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L191'>mode</a> 191 lib/vfs/vfs.h int (*mknod) (const vfs_path_t *vpath, mode_t mode, dev_t dev);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L202'>mode</a> 202 lib/vfs/vfs.h int (*mkdir) (const vfs_path_t *vpath, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L239'>mode</a> 239 lib/vfs/vfs.h void *vfs_s_open (const vfs_path_t *vpath, int flags, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L320'>mode</a> 320 lib/vfs/vfs.h int mc_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L322'>mode</a> 322 lib/vfs/vfs.h int mc_mkdir (const vfs_path_t *vpath, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--vfs.h.html#L328'>mode</a> 328 lib/vfs/vfs.h int mc_chmod (const vfs_path_t *vpath, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--xdirentry.h.html#L141'>mode</a> 141 lib/vfs/xdirentry.h int (*fh_open) (struct vfs_class *me, vfs_file_handler_t *fh, int flags, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--xdirentry.h.html#L170'>mode</a> 170 lib/vfs/xdirentry.h struct stat *vfs_s_default_stat (struct vfs_class *me, mode_t mode);</span>
<span class='curline'><a href='../S/lib--vfs--xdirentry.h.html#L173'>mode</a> 173 lib/vfs/xdirentry.h struct vfs_s_inode *parent, mode_t mode);</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L71'>mode</a> 71 src/filemanager/chmod.c mode_t mode;</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L254'>mode</a> 254 src/filemanager/chmod.c ch_mode ^= check_perm[i].mode;</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L335'>mode</a> 335 src/filemanager/chmod.c check_new (PY + i + 1, PX + 2, (ch_mode &amp; check_perm[i].mode) != 0, check_perm[i].text);</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L567'>mode</a> 567 src/filemanager/chmod.c or_mask |= check_perm[i].mode;</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L569'>mode</a> 569 src/filemanager/chmod.c and_mask &amp;= ~check_perm[i].mode;</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L583'>mode</a> 583 src/filemanager/chmod.c or_mask |= check_perm[i].mode;</span>
<span class='curline'><a href='../S/src--filemanager--chmod.c.html#L596'>mode</a> 596 src/filemanager/chmod.c and_mask &amp;= ~check_perm[i].mode;</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L212'>mode</a> 212 src/filemanager/cmd.c compare_dir (WPanel *panel, const WPanel *other, enum CompareMode mode)</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L259'>mode</a> 259 src/filemanager/cmd.c if (mode != compare_size_only)</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L271'>mode</a> 271 src/filemanager/cmd.c if (mode == compare_size_only)</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L274'>mode</a> 274 src/filemanager/cmd.c if (mode == compare_quick)</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L838'>mode</a> 838 src/filemanager/file.c real_warn_same_file (file_op_context_t *ctx, enum OperationMode mode, const char *fmt,</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L848'>mode</a> 848 src/filemanager/file.c head_msg = mode == Foreground ? MSG_ERROR : _ ("Background process error");</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L930'>mode</a> 930 src/filemanager/file.c real_do_file_error (file_op_context_t *ctx, enum OperationMode mode, gboolean allow_retry,</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L940'>mode</a> 940 src/filemanager/file.c msg = mode == Foreground ? MSG_ERROR : _ ("Background process error");</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L979'>mode</a> 979 src/filemanager/file.c real_query_recursive (file_op_context_t *ctx, enum OperationMode mode, const char *s)</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L988'>mode</a> 988 src/filemanager/file.c msg = mode == Foreground</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L2208'>mode</a> 2208 src/filemanager/file.c end_bg_process (file_op_context_t *ctx, enum OperationMode mode)</span>
<span class='curline'><a href='../S/src--filemanager--file.c.html#L2212'>mode</a> 2212 src/filemanager/file.c (void) mode;</span>
<span class='curline'><a href='../S/src--filemanager--filegui.c.html#L422'>mode</a> 422 src/filemanager/filegui.c overwrite_query_dialog (file_op_context_t *ctx, enum OperationMode mode)</span>
<span class='curline'><a href='../S/src--filemanager--filegui.c.html#L522'>mode</a> 522 src/filemanager/filegui.c if (mode == Foreground)</span>
<span class='curline'><a href='../S/src--filemanager--filegui.c.html#L1236'>mode</a> 1236 src/filemanager/filegui.c file_progress_real_query_replace (file_op_context_t *ctx, enum OperationMode mode, const char *src,</span>
<span class='curline'><a href='../S/src--filemanager--filegui.c.html#L1254'>mode</a> 1254 src/filemanager/filegui.c ui-&gt;replace_result = overwrite_query_dialog (ctx, mode);</span>
<span class='curline'><a href='../S/src--filemanager--filegui.h.html#L187'>mode</a> 187 src/filemanager/filegui.h enum OperationMode mode, const char *src,</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L450'>mode</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#L453'>mode</a> 453 src/filemanager/filemanager.c return (mode != view_listing</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L63'>mode</a> 63 src/filemanager/filenot.c my_mkdir_rec (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L68'>mode</a> 68 src/filemanager/filenot.c if (mc_mkdir (vpath, mode) == 0)</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L84'>mode</a> 84 src/filemanager/filenot.c result = my_mkdir_rec (q, mode);</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L88'>mode</a> 88 src/filemanager/filenot.c result = mc_mkdir (vpath, mode);</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L98'>mode</a> 98 src/filemanager/filenot.c my_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--filemanager--filenot.c.html#L102'>mode</a> 102 src/filemanager/filenot.c result = my_mkdir_rec (vpath, mode);</span>
<span class='curline'><a href='../S/src--filemanager--filenot.h.html#L21'>mode</a> 21 src/filemanager/filenot.h int my_mkdir (const vfs_path_t *vpath, mode_t mode);</span>
<span class='curline'><a href='../S/src--filemanager--mountlist.c.html#L145'>mode</a> 145 src/filemanager/mountlist.c #define setmntent(fp, mode) fopen (fp, mode)</span>
<span class='curline'><a href='../S/src--setup.c.html#L567'>mode</a> 567 src/setup.c panel_view_mode_t mode = view_listing;</span>
<span class='curline'><a href='../S/src--setup.c.html#L575'>mode</a> 575 src/setup.c mode = panel_types[i].opt_type;</span>
<span class='curline'><a href='../S/src--setup.c.html#L581'>mode</a> 581 src/setup.c return mode;</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L232'>mode</a> 232 src/vfs/cpio/cpio.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L270'>mode</a> 270 src/vfs/cpio/cpio.c mode = arch-&gt;st.st_mode &amp; 07777;</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L271'>mode</a> 271 src/vfs/cpio/cpio.c mode |= (mode &amp; 0444) &gt;&gt; 2; // set eXec where Read is</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L272'>mode</a> 272 src/vfs/cpio/cpio.c mode |= S_IFDIR;</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L275'>mode</a> 275 src/vfs/cpio/cpio.c root-&gt;st.st_mode = mode;</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L868'>mode</a> 868 src/vfs/cpio/cpio.c cpio_fh_open (struct vfs_class *me, vfs_file_handler_t *fh, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--cpio--cpio.c.html#L871'>mode</a> 871 src/vfs/cpio/cpio.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L200'>mode</a> 200 src/vfs/extfs/extfs.c mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L213'>mode</a> 213 src/vfs/extfs/extfs.c st.st_mode = mode &amp; ~myumask;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L522'>mode</a> 522 src/vfs/extfs/extfs.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L578'>mode</a> 578 src/vfs/extfs/extfs.c mode = mystat.st_mode &amp; 07777;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L579'>mode</a> 579 src/vfs/extfs/extfs.c if (mode &amp; 0400)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L580'>mode</a> 580 src/vfs/extfs/extfs.c mode |= 0100;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L581'>mode</a> 581 src/vfs/extfs/extfs.c if (mode &amp; 0040)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L582'>mode</a> 582 src/vfs/extfs/extfs.c mode |= 0010;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L583'>mode</a> 583 src/vfs/extfs/extfs.c if (mode &amp; 0004)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L584'>mode</a> 584 src/vfs/extfs/extfs.c mode |= 0001;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L585'>mode</a> 585 src/vfs/extfs/extfs.c mode |= S_IFDIR;</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L587'>mode</a> 587 src/vfs/extfs/extfs.c root_entry = extfs_generate_entry (current_archive, PATH_SEP_STR, NULL, mode);</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L1047'>mode</a> 1047 src/vfs/extfs/extfs.c extfs_open (const vfs_path_t *vpath, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L1100'>mode</a> 1100 src/vfs/extfs/extfs.c local_handle = open (entry-&gt;ino-&gt;localname, NO_LINEAR (flags), mode);</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L1106'>mode</a> 1106 src/vfs/extfs/extfs.c local_handle = open (entry-&gt;ino-&gt;localname, flags, mode);</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L1392'>mode</a> 1392 src/vfs/extfs/extfs.c extfs_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--extfs--extfs.c.html#L1400'>mode</a> 1400 src/vfs/extfs/extfs.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2185'>mode</a> 2185 src/vfs/ftpfs/ftpfs.c ftpfs_chmod (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2190'>mode</a> 2190 src/vfs/ftpfs/ftpfs.c g_snprintf (buf, sizeof (buf), "SITE CHMOD %4.4o /%%s", (unsigned int) (mode &amp; 07777));</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2276'>mode</a> 2276 src/vfs/ftpfs/ftpfs.c ftpfs_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2278'>mode</a> 2278 src/vfs/ftpfs/ftpfs.c (void) mode; // FIXME: should be used</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2308'>mode</a> 2308 src/vfs/ftpfs/ftpfs.c ftpfs_fh_open (struct vfs_class *me, vfs_file_handler_t *fh, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L2312'>mode</a> 2312 src/vfs/ftpfs/ftpfs.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L283'>mode</a> 283 src/vfs/ftpfs/ftpfs_parse_ls.c mode_t type, mode = 0;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L298'>mode</a> 298 src/vfs/ftpfs/ftpfs_parse_ls.c if (vfs_parse_fileperms (t + 1, NULL, &amp;mode))</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L299'>mode</a> 299 src/vfs/ftpfs/ftpfs_parse_ls.c mode |= type;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L301'>mode</a> 301 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_mode = mode;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L996'>mode</a> 996 src/vfs/ftpfs/ftpfs_parse_ls.c mode_t type, mode;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1010'>mode</a> 1010 src/vfs/ftpfs/ftpfs_parse_ls.c if (!vfs_parse_fileperms (t + 1, NULL, &amp;mode))</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L64'>mode</a> 64 src/vfs/local/local.c local_open (const vfs_path_t *vpath, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L71'>mode</a> 71 src/vfs/local/local.c fd = open (path, NO_LINEAR (flags), mode);</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L187'>mode</a> 187 src/vfs/local/local.c local_chmod (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L192'>mode</a> 192 src/vfs/local/local.c return chmod (path, mode);</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L329'>mode</a> 329 src/vfs/local/local.c local_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev)</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L334'>mode</a> 334 src/vfs/local/local.c return mknod (path, mode, dev);</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L352'>mode</a> 352 src/vfs/local/local.c local_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--local--local.c.html#L357'>mode</a> 357 src/vfs/local/local.c return mkdir (path, mode);</span>
<span class='curline'><a href='../S/src--vfs--sfs--sfs.c.html#L296'>mode</a> 296 src/vfs/sfs/sfs.c mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--sfs--sfs.c.html#L301'>mode</a> 301 src/vfs/sfs/sfs.c fd = open (sfs_redirect (vpath), NO_LINEAR (flags), mode);</span>
<span class='curline'><a href='../S/src--vfs--sfs--sfs.c.html#L334'>mode</a> 334 src/vfs/sfs/sfs.c sfs_chmod (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--sfs--sfs.c.html#L336'>mode</a> 336 src/vfs/sfs/sfs.c return chmod (sfs_redirect (vpath), mode);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--dir.c.html#L166'>mode</a> 166 src/vfs/sftpfs/dir.c sftpfs_mkdir (const vfs_path_t *vpath, mode_t mode, GError **mcerror)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--dir.c.html#L181'>mode</a> 181 src/vfs/sftpfs/dir.c libssh2_sftp_mkdir_ex (sftpfs_super-&gt;sftp_session, fixfname-&gt;str, fixfname-&gt;len, mode);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L53'>mode</a> 53 src/vfs/sftpfs/file.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L74'>mode</a> 74 src/vfs/sftpfs/file.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L79'>mode</a> 79 src/vfs/sftpfs/file.c mode = file-&gt;mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L82'>mode</a> 82 src/vfs/sftpfs/file.c sftpfs_open_file (fh, flags, mode, mcerror);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L129'>mode</a> 129 src/vfs/sftpfs/file.c sftpfs_open_file (vfs_file_handler_t *fh, int flags, mode_t mode, GError **mcerror)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L139'>mode</a> 139 src/vfs/sftpfs/file.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--file.c.html#L187'>mode</a> 187 src/vfs/sftpfs/file.c file-&gt;mode = mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--internal.c.html#L487'>mode</a> 487 src/vfs/sftpfs/internal.c sftpfs_chmod (const vfs_path_t *vpath, mode_t mode, GError **mcerror)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--internal.c.html#L500'>mode</a> 500 src/vfs/sftpfs/internal.c attrs.permissions = mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--internal.h.html#L87'>mode</a> 87 src/vfs/sftpfs/internal.h int sftpfs_chmod (const vfs_path_t *vpath, mode_t mode, GError **mcerror);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--internal.h.html#L101'>mode</a> 101 src/vfs/sftpfs/internal.h int sftpfs_mkdir (const vfs_path_t *vpath, mode_t mode, GError **mcerror);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--internal.h.html#L104'>mode</a> 104 src/vfs/sftpfs/internal.h gboolean sftpfs_open_file (vfs_file_handler_t *fh, int flags, mode_t mode, GError **mcerror);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L107'>mode</a> 107 src/vfs/sftpfs/sftpfs.c sftpfs_cb_open (const vfs_path_t *vpath, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L158'>mode</a> 158 src/vfs/sftpfs/sftpfs.c if (!sftpfs_open_file (fh, flags, mode, &amp;mcerror))</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L379'>mode</a> 379 src/vfs/sftpfs/sftpfs.c sftpfs_cb_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L382'>mode</a> 382 src/vfs/sftpfs/sftpfs.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L517'>mode</a> 517 src/vfs/sftpfs/sftpfs.c sftpfs_cb_chmod (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L522'>mode</a> 522 src/vfs/sftpfs/sftpfs.c rc = sftpfs_chmod (vpath, mode, &amp;mcerror);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L537'>mode</a> 537 src/vfs/sftpfs/sftpfs.c sftpfs_cb_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L542'>mode</a> 542 src/vfs/sftpfs/sftpfs.c rc = sftpfs_mkdir (vpath, mode, &amp;mcerror);</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1354'>mode</a> 1354 src/vfs/shell/shell.c shell_chmod (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1372'>mode</a> 1372 src/vfs/shell/shell.c (unsigned int) (mode &amp; 07777));</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1532'>mode</a> 1532 src/vfs/shell/shell.c shell_mkdir (const vfs_path_t *vpath, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1540'>mode</a> 1540 src/vfs/shell/shell.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1608'>mode</a> 1608 src/vfs/shell/shell.c shell_fh_open (struct vfs_class *me, vfs_file_handler_t *fh, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1612'>mode</a> 1612 src/vfs/shell/shell.c (void) mode;</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1687'>mode</a> 1687 src/vfs/shell/shell.c shell_open (const vfs_path_t *vpath, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1694'>mode</a> 1694 src/vfs/shell/shell.c return vfs_s_open (vpath, flags, mode);</span>
<span class='curline'><a href='../S/src--vfs--tar--tar-internal.h.html#L76'>mode</a> 76 src/vfs/tar/tar-internal.h char mode[8]; // 100</span>
<span class='curline'><a href='../S/src--vfs--tar--tar-internal.h.html#L140'>mode</a> 140 src/vfs/tar/tar-internal.h char mode[8]; // 100</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L206'>mode</a> 206 src/vfs/tar/tar.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L211'>mode</a> 211 src/vfs/tar/tar.c mode =</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L220'>mode</a> 220 src/vfs/tar/tar.c return mode;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L369'>mode</a> 369 src/vfs/tar/tar.c current_stat_info.stat.st_mode = MODE_FROM_HEADER (header-&gt;header.mode, &amp;hbits);</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L890'>mode</a> 890 src/vfs/tar/tar.c mode_t mode;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L928'>mode</a> 928 src/vfs/tar/tar.c mode = arch-&gt;st.st_mode &amp; 07777;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L929'>mode</a> 929 src/vfs/tar/tar.c if (mode &amp; 0400)</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L930'>mode</a> 930 src/vfs/tar/tar.c mode |= 0100;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L931'>mode</a> 931 src/vfs/tar/tar.c if (mode &amp; 0040)</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L932'>mode</a> 932 src/vfs/tar/tar.c mode |= 0010;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L933'>mode</a> 933 src/vfs/tar/tar.c if (mode &amp; 0004)</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L934'>mode</a> 934 src/vfs/tar/tar.c mode |= 0001;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L935'>mode</a> 935 src/vfs/tar/tar.c mode |= S_IFDIR;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L938'>mode</a> 938 src/vfs/tar/tar.c root-&gt;st.st_mode = mode;</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L1249'>mode</a> 1249 src/vfs/tar/tar.c tar_fh_open (struct vfs_class *me, vfs_file_handler_t *fh, int flags, mode_t mode)</span>
<span class='curline'><a href='../S/src--vfs--tar--tar.c.html#L1252'>mode</a> 1252 src/vfs/tar/tar.c (void) mode;</span>
</pre>
</body>
</html>