Home
last modified time | relevance | path

Searched +full:libfuse +full:- +full:dev (Results 1 – 8 of 8) sorted by relevance

/third_party/libfuse/
DChangeLog.rst1 libfuse 3.16.1 (2023-08-08)
4 * Readdir kernel cache can be enabled from high-level API.
6 libfuse 3.15.1 (2023-07-05)
9 Future libfuse releases will be signed with `signify`_ rather than PGP (rationale_). This
13 .. _signify: https://www.openbsd.org/papers/bsdcan-signify.html
14 .. _rationale: https://latacora.micro.blog/2019/07/16/the-pgp-problem.html
17 libfuse 3.15.0 (2023-06-09)
27 libfuse 3.14.1 (2023-03-26)
39 libfuse 3.14.0 (2023-02-17)
49 libfuse 3.13.1 (2023-02-03)
[all …]
/third_party/libfuse/doc/
Dmount.fuse3.83 fuse \- configuration and mount options for FUSE file systems
9 The in-kernel filesystem that forwards requests to a user-space
13 The user-space process that responds to requests received from the
16 \fBlibfuse\fP
17 The shared library that most (user-space) filesystems use to
18 communicate with FUSE (the kernel filesystem). libfuse also provides
20 libfuse) helper to allow non-privileged users to mount filesystems.
25 by the filesystem itself on start-up. When using libfuse, this is done
34 Set the maximum number of FUSE mounts allowed to non-root users. The default is 1000.
37 Allow non-root users to specify the \fBallow_other\fP or
[all …]
/third_party/littlefs/.github/workflows/
Dtest.yml5 CFLAGS: -Werror
6 MAKEFLAGS: -j
11 runs-on: ubuntu-18.04
13 fail-fast: false
18 - uses: actions/checkout@v2
19 - name: install
22 sudo apt-get update -qq
23 sudo apt-get install -qq python3 python3-pip lcov
25 gcc --version
27 # setup a ram-backed disk to speed up reentrant tests
[all …]
/third_party/ntfs-3g/
DREADME.md5 The NTFS-3G driver is an open source, freely available read/write NTFS driver
18 Besides the common file system features, NTFS-3G has support for file
21 .NTFS-3G may be required to enable them). The new compressed file formats
27 https://github.com/tuxera/ntfs-3g/wiki
38 utilities and the shared library libntfs-3g are distributed under the terms
43 The fuse-lite library is distributed under the terms of the GNU LGPLv2.
50 Most distributions have an up-to-date NTFS-3G package ready for use, and
62 Please note that NTFS-3G doesn't require the FUSE user space package any
68 ./configure --help
71 --disable-ntfsprogs : do not build the ntfsprogs tools,
[all …]
Dconfigure.ac2 # configure.ac - Source file to generate "./configure" to prepare package for
5 # Copyright (c) 2000-2013 Anton Altaparmakov
7 # Copyright (c) 2005-2009 Szabolcs Szakacsits
8 # Copyright (C) 2007-2008 Alon Bar-Lev
21 # along with this program (in the main directory of the NTFS-3G
23 # Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 AC_INIT([ntfs-3g],[2022.10.3],[ntfs-3g-devel@lists.sf.net])
29 AC_CONFIG_SRCDIR([src/ntfs-3g.c])
44 [AS_HELP_STRING([--enable-debug],[enable debugging code and output])],
51 [AS_HELP_STRING([--enable-warnings],[enable lots of compiler warnings])],
[all …]
/third_party/libfuse/test/
Dtest_examples.py46 '-f', mnt_dir, '-o', ','.join(options) ]
48 # supports single-threading only
49 cmdline.append('-s')
55 name, mnt_dir, '-o', ','.join(options) ]
105 open(filename + 'does-not-exist', 'r+')
120 # Avoid false positives from libfuse debug messages
122 output_checker.register_output(r'^ unique: [0-9]+, error: -[0-9]+ .+$',
135 '--plus', '-f', mnt_dir ]
139 '-f', mnt_dir ]
141 cmdline.append('-d')
[all …]
/third_party/libfuse/lib/
Dhelper.c3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
33 FUSE_HELPER_OPT("-h", show_help),
34 FUSE_HELPER_OPT("--help", show_help),
35 FUSE_HELPER_OPT("-V", show_version),
36 FUSE_HELPER_OPT("--version", show_version),
37 FUSE_HELPER_OPT("-d", debug),
39 FUSE_HELPER_OPT("-d", foreground),
41 FUSE_OPT_KEY("-d", FUSE_OPT_KEY_KEEP),
43 FUSE_HELPER_OPT("-f", foreground),
44 FUSE_HELPER_OPT("-s", singlethread),
[all …]
Dfuse_lowlevel.c3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
5 Implementation of (most of) the low-level FUSE API. The session loop
43 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
44 (type *)( (char *)__mptr - offsetof(type,member) );})
60 attr->ino = stbuf->st_ino; in convert_stat()
61 attr->mode = stbuf->st_mode; in convert_stat()
62 attr->nlink = stbuf->st_nlink; in convert_stat()
63 attr->uid = stbuf->st_uid; in convert_stat()
64 attr->gid = stbuf->st_gid; in convert_stat()
65 attr->rdev = stbuf->st_rdev; in convert_stat()
[all …]