亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? fuse_lowlevel.h

?? UNIX/LINUX下面的用戶文件系統
?? H
?? 第 1 頁 / 共 3 頁
字號:
/*    FUSE: Filesystem in Userspace    Copyright (C) 2001-2006  Miklos Szeredi <miklos@szeredi.hu>    This program can be distributed under the terms of the GNU LGPL.    See the file COPYING.LIB.*/#ifndef _FUSE_LOWLEVEL_H_#define _FUSE_LOWLEVEL_H_/* =========================================================== * * Low level API                                               * * =========================================================== *//* IMPORTANT: you should define FUSE_USE_VERSION before including this   header.  To use the newest API define it to 25 (recommended for any   new application), to use the old API define it to 24 (default) */#ifndef FUSE_USE_VERSION#define FUSE_USE_VERSION 24#endif#include "fuse_common.h"#include <utime.h>#include <sys/types.h>#include <sys/stat.h>#include <sys/statvfs.h>#include <sys/uio.h>#ifdef __cplusplusextern "C" {#endif/* ----------------------------------------------------------- * * Miscellaneous definitions                                   * * ----------------------------------------------------------- *//** The node ID of the root inode */#define FUSE_ROOT_ID 1/** Inode number type */typedef unsigned long fuse_ino_t;/** Request pointer type */typedef struct fuse_req *fuse_req_t;/** * Session * * This provides hooks for processing requests, and exiting */struct fuse_session;/** * Channel * * A communication channel, providing hooks for sending and receiving * messages */struct fuse_chan;/** Directory entry parameters supplied to fuse_reply_entry() */struct fuse_entry_param {    /** Unique inode number     *     * In lookup, zero means negative entry (from version 2.5)     * Returning ENOENT also means negative entry, but by setting zero     * ino the kernel may cache negative entries for entry_timeout     * seconds.     */    fuse_ino_t ino;    /** The ino/generation pair should be unique for the filesystem's        lifetime */    unsigned long generation;    /** Inode attributes */    struct stat attr;    /** Validity timeout (in seconds) for the attributes */    double attr_timeout;    /** Validity timeout (in seconds) for the name */    double entry_timeout;};/** Additional context associated with requests */struct fuse_ctx {    /** User ID of the calling process */    uid_t uid;    /** Group ID of the calling process */    gid_t gid;    /** Thread ID of the calling process */    pid_t pid;};/* 'to_set' flags in setattr */#define FUSE_SET_ATTR_MODE	(1 << 0)#define FUSE_SET_ATTR_UID	(1 << 1)#define FUSE_SET_ATTR_GID	(1 << 2)#define FUSE_SET_ATTR_SIZE	(1 << 3)#define FUSE_SET_ATTR_ATIME	(1 << 4)#define FUSE_SET_ATTR_MTIME	(1 << 5)/* ----------------------------------------------------------- * * Request methods and replies                                 * * ----------------------------------------------------------- *//** * Low level filesystem operations * * Most of the methods (with the exception of init and destroy) * receive a request handle (fuse_req_t) as their first argument. * This handle must be passed to one of the specified reply functions. * * This may be done inside the method invocation, or after the call * has returned.  The request handle is valid until one of the reply * functions is called. * * Other pointer arguments (name, fuse_file_info, etc) are not valid * after the call has returned, so if they are needed later, their * contents have to be copied. * * The filesystem sometimes needs to handle a return value of -ENOENT * from the reply function, which means, that the request was * interrupted, and the reply discarded.  For example if * fuse_reply_open() return -ENOENT means, that the release method for * this file will not be called. */struct fuse_lowlevel_ops {    /**     * Initialize filesystem     *     * Called before any other filesystem method     *     * There's no reply to this function     *     * @param userdata the user data passed to fuse_lowlevel_new()     */    void (*init) (void *userdata);    /**     * Clean up filesystem     *     * Called on filesystem exit     *     * There's no reply to this function     *     * @param userdata the user data passed to fuse_lowlevel_new()     */    void (*destroy) (void *userdata);    /**     * Look up a directory entry by name     *     * Valid replies:     *   fuse_reply_entry()     *   fuse_reply_err()     *     * @param req request handle     * @param parent inode number of the parent directory     * @param name the name to look up     */    void (*lookup) (fuse_req_t req, fuse_ino_t parent, const char *name);    /**     * Forget about an inode     *     * The nlookup parameter indicates the number of lookups     * previously performed on this inode.     *     * If the filesystem implements inode lifetimes, it is recommended     * that inodes acquire a single reference on each lookup, and lose     * nlookup references on each forget.     *     * The filesystem may ignore forget calls, if the inodes don't     * need to have a limited lifetime.     *     * On unmount it is not guaranteed, that all referenced inodes     * will receive a forget message.     *     * Valid replies:     *   fuse_reply_none()     *     * @param req request handle     * @param ino the inode number     * @param nlookup the number of lookups to forget     */    void (*forget) (fuse_req_t req, fuse_ino_t ino, unsigned long nlookup);    /**     * Get file attributes     *     * Valid replies:     *   fuse_reply_attr()     *   fuse_reply_err()     *     * @param req request handle     * @param ino the inode number     * @param fi for future use, currently always NULL     */    void (*getattr) (fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);    /**     * Set file attributes     *     * In the 'attr' argument only members indicated by the 'to_set'     * bitmask contain valid values.  Other members contain undefined     * values.     *     * If the setattr was invoked from the ftruncate() system call     * under Linux kernel versions 2.6.15 or later, the fi->fh will     * contain the value set by the open method or will be undefined     * if the open method didn't set any value.  Otherwise (not     * ftruncate call, or kernel version earlier than 2.6.15) the fi     * parameter will be NULL.     *     * Valid replies:     *   fuse_reply_attr()     *   fuse_reply_err()     *     * @param req request handle     * @param ino the inode number     * @param attr the attributes     * @param to_set bit mask of attributes which should be set     * @param fi file information, or NULL     *     * Changed in version 2.5:     *     file information filled in for ftruncate     */    void (*setattr) (fuse_req_t req, fuse_ino_t ino, struct stat *attr,                    int to_set, struct fuse_file_info *fi);    /**     * Read symbolic link     *     * Valid replies:     *   fuse_reply_readlink     *   fuse_reply_err     *     * @param req request handle     * @param ino the inode number     */    void (*readlink) (fuse_req_t req, fuse_ino_t ino);    /**     * Create file node     *     * Create a regular file, character device, block device, fifo or     * socket node.     *     * Valid replies:     *   fuse_reply_entry     *   fuse_reply_err     *     * @param req request handle     * @param parent inode number of the parent directory     * @param name to create     * @param mode file type and mode with which to create the new file     * @param rdev the device number (only valid if created file is a device)     */    void (*mknod) (fuse_req_t req, fuse_ino_t parent, const char *name,                   mode_t mode, dev_t rdev);    /**     * Create a directory     *     * Valid replies:     *   fuse_reply_entry     *   fuse_reply_err     *     * @param req request handle     * @param parent inode number of the parent directory     * @param name to create     * @param mode with which to create the new file     */    void (*mkdir) (fuse_req_t req, fuse_ino_t parent, const char *name,                   mode_t mode);    /**     * Remove a file     *     * Valid replies:     *   fuse_reply_err     *     * @param req request handle     * @param parent inode number of the parent directory     * @param name to remove     */    void (*unlink) (fuse_req_t req, fuse_ino_t parent, const char *name);    /**     * Remove a directory     *     * Valid replies:     *   fuse_reply_err     *     * @param req request handle     * @param parent inode number of the parent directory     * @param name to remove     */    void (*rmdir) (fuse_req_t req, fuse_ino_t parent, const char *name);    /**     * Create a symbolic link     *     * Valid replies:     *   fuse_reply_entry     *   fuse_reply_err     *     * @param req request handle     * @param link the contents of the symbolic link     * @param parent inode number of the parent directory     * @param name to create     */    void (*symlink) (fuse_req_t req, const char *link, fuse_ino_t parent,                     const char *name);    /** Rename a file     *     * Valid replies:     *   fuse_reply_err     *     * @param req request handle     * @param parent inode number of the old parent directory     * @param name old name     * @param newparent inode number of the new parent directory     * @param newname new name     */    void (*rename) (fuse_req_t req, fuse_ino_t parent, const char *name,                    fuse_ino_t newparent, const char *newname);    /**     * Create a hard link     *     * Valid replies:     *   fuse_reply_entry     *   fuse_reply_err     *     * @param req request handle     * @param ino the old inode number     * @param newparent inode number of the new parent directory     * @param newname new name to create     */    void (*link) (fuse_req_t req, fuse_ino_t ino, fuse_ino_t newparent,                  const char *newname);    /**     * Open a file     *     * Open flags (with the exception of O_CREAT, O_EXCL, O_NOCTTY and     * O_TRUNC) are available in fi->flags.     *     * Filesystem may store an arbitrary file handle (pointer, index,     * etc) in fi->fh, and use this in other all other file operations     * (read, write, flush, release, fsync).     *     * Filesystem may also implement stateless file I/O and not store     * anything in fi->fh.     *     * There are also some flags (direct_io, keep_cache) which the     * filesystem may set in fi, to change the way the file is opened.     * See fuse_file_info structure in <fuse_common.h> for more details.     *     * Valid replies:     *   fuse_reply_open     *   fuse_reply_err     *     * @param req request handle     * @param ino the inode number     * @param fi file information     */    void (*open) (fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);    /**     * Read data     *     * Read should send exactly the number of bytes requested except     * on EOF or error, otherwise the rest of the data will be     * substituted with zeroes.  An exception to this is when the file     * has been opened in 'direct_io' mode, in which case the return     * value of the read system call will reflect the return value of     * this operation.     *     * fi->fh will contain the value set by the open method, or will     * be undefined if the open method didn't set any value.     *     * Valid replies:     *   fuse_reply_buf     *   fuse_reply_err     *     * @param req request handle     * @param ino the inode number     * @param size number of bytes to read     * @param off offset to read from     * @param fi file information     */    void (*read) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,                  struct fuse_file_info *fi);    /**     * Write data     *     * Write should return exactly the number of bytes requested     * except on error.  An exception to this is when the file has     * been opened in 'direct_io' mode, in which case the return value     * of the write system call will reflect the return value of this     * operation.     *     * fi->fh will contain the value set by the open method, or will     * be undefined if the open method didn't set any value.     *     * Valid replies:     *   fuse_reply_write     *   fuse_reply_err     *     * @param req request handle     * @param ino the inode number

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91黄色激情网站| 2017欧美狠狠色| 91黄色免费看| 色菇凉天天综合网| 色综合天天视频在线观看| 成人av影院在线| 99精品视频免费在线观看| av一区二区三区| 91亚洲精华国产精华精华液| 91麻豆国产自产在线观看| 99久久99久久综合| 欧洲国内综合视频| 欧美日韩高清在线播放| 91精品一区二区三区在线观看| 5月丁香婷婷综合| 日韩一区二区高清| 26uuu亚洲综合色| 国产视频一区在线播放| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 国产精品人妖ts系列视频| 欧美国产精品一区| 亚洲少妇最新在线视频| 亚洲成人动漫精品| 加勒比av一区二区| 成人激情小说乱人伦| 91美女蜜桃在线| 欧美色爱综合网| 日韩欧美一二三区| 国产欧美一区二区三区沐欲 | 国产一区高清在线| 懂色av一区二区三区蜜臀| 91视频xxxx| 在线电影国产精品| 久久久精品2019中文字幕之3| 中文字幕日韩一区二区| 亚洲va国产天堂va久久en| 日本中文字幕一区| 国产一区美女在线| 在线观看网站黄不卡| 日韩欧美一卡二卡| 日韩美女视频一区二区| 日韩高清在线一区| 国产精品123区| 欧美日韩亚洲综合一区二区三区 | 午夜精品久久久| 狠狠v欧美v日韩v亚洲ⅴ| 91在线码无精品| 欧美一级片在线看| 亚洲欧洲av色图| 男人的天堂久久精品| 97久久超碰国产精品电影| 欧美一区二区视频网站| 国产精品污www在线观看| 午夜久久久影院| 粉嫩aⅴ一区二区三区四区 | 亚洲一级在线观看| 国产乱码精品一品二品| 欧美日韩午夜在线| 欧美韩国一区二区| 午夜欧美视频在线观看| 成人99免费视频| 日韩手机在线导航| 一区二区在线观看视频| 国产麻豆9l精品三级站| 欧美剧情片在线观看| 中文字幕一区二| 狠狠色丁香久久婷婷综| 欧美浪妇xxxx高跟鞋交| 亚洲同性同志一二三专区| 美女视频黄a大片欧美| 欧美午夜精品久久久| 国产精品日产欧美久久久久| 久久er99热精品一区二区| 欧美日韩久久久一区| 亚洲三级免费观看| 国产成人午夜高潮毛片| 欧美成人欧美edvon| 午夜在线电影亚洲一区| 91丨porny丨中文| 欧美国产精品一区二区三区| 理论片日本一区| 777奇米成人网| 亚洲国产日韩精品| 91啦中文在线观看| 欧美激情一区二区三区全黄| 国产一区二区在线电影| 91麻豆精品国产| 亚洲二区在线观看| 在线观看国产91| 国产精品久久久久久久久果冻传媒 | 丁香啪啪综合成人亚洲小说| 日韩精品一区二区三区中文精品 | 在线亚洲免费视频| 亚洲同性同志一二三专区| 成人av免费在线观看| 国产欧美日韩在线| 国产精品99久久久久久宅男| 久久综合九色综合欧美98 | 日韩视频免费观看高清完整版| 亚洲国产精品久久人人爱| 欧美在线免费观看亚洲| 亚洲精品国久久99热| 色综合网色综合| 一区二区三区 在线观看视频| 91国偷自产一区二区三区观看| 自拍偷拍亚洲欧美日韩| av网站一区二区三区| 成人欧美一区二区三区白人 | 国产精品久久久久久久久久免费看| 国产69精品久久久久毛片| 国产日韩欧美在线一区| 国产91精品一区二区麻豆网站| 欧美经典一区二区| 91麻豆123| 午夜精品久久久久影视| 日韩欧美一区中文| 国产一区欧美二区| 中文字幕一区二区5566日韩| 色婷婷综合久久久| 午夜精品在线看| 日韩欧美亚洲国产另类| 国内成+人亚洲+欧美+综合在线| 国产日韩精品一区| 色偷偷久久人人79超碰人人澡| 亚洲综合网站在线观看| 91精品一区二区三区久久久久久| 精品一区二区三区久久久| 国产欧美一区二区精品仙草咪 | 91精品国产综合久久久久久久久久| 日韩精品欧美精品| 精品国产乱码久久久久久图片| 国产精品一区二区x88av| 国产精品不卡一区| 欧美日韩国产综合视频在线观看| 奇米一区二区三区av| 久久久久久97三级| 91在线播放网址| 日本美女一区二区三区| 国产女人aaa级久久久级| 色婷婷综合中文久久一本| 日韩高清不卡一区二区| 久久奇米777| 色av综合在线| 久草中文综合在线| 亚洲欧洲综合另类在线| 日韩一区二区中文字幕| 97久久精品人人澡人人爽| 日韩电影免费在线观看网站| 国产欧美一区二区精品性色超碰| 色噜噜狠狠色综合中国| 免费观看成人鲁鲁鲁鲁鲁视频| 中文字幕不卡的av| 国产成人免费视频网站高清观看视频 | 精品久久久久久久一区二区蜜臀| 欧美日韩mp4| 欧美精品一二三| 久久女同互慰一区二区三区| 久久免费美女视频| 国产精品久久久久久久久免费樱桃| 久久久精品免费免费| 欧美成人精品1314www| 久久国产婷婷国产香蕉| 亚洲免费在线电影| 久久综合久久久久88| 波多野结衣欧美| 美腿丝袜亚洲三区| 亚洲一区二区三区小说| 欧美国产精品劲爆| 欧美成人精品3d动漫h| 欧美亚洲国产一区二区三区| 国产成人午夜精品5599| 日本不卡视频在线观看| 亚洲精品免费在线观看| 国产日产欧美一区二区三区| 91麻豆精品国产自产在线 | 国产成人在线色| 亚洲理论在线观看| 久久精品在线观看| 日韩视频在线观看一区二区| 欧美色视频在线| 94色蜜桃网一区二区三区| 国产精品亚洲视频| 蜜臀久久久久久久| 亚洲精品国产第一综合99久久 | 国产欧美日韩亚州综合| 欧美日韩亚洲国产综合| bt欧美亚洲午夜电影天堂| 国产精品白丝jk白祙喷水网站| 久久超碰97人人做人人爱| 日日摸夜夜添夜夜添亚洲女人| 亚洲精品欧美在线| 国产色爱av资源综合区| 亚洲精品在线电影| 日韩欧美电影一二三| 91精品国产福利| 欧美美女bb生活片| 欧美日本不卡视频| 成人看片黄a免费看在线| 国产精品一二三在| 国产一区免费电影|