/src/lib/librefuse/refuse/ |
v11.h | 45 /* Function to add an entry in a getdir() operation in FUSE < 2.2. It 53 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v11); member in struct:fuse_operations_v11
|
v21.h | 49 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v11); member in struct:fuse_operations_v21
|
v22.h | 45 /* Function to add an entry in a getdir() operation in FUSE >= 2.2 < 53 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v22
|
v23.h | 53 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v23
|
v25.h | 49 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v25
|
v28.h | 49 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v28
|
v29.h | 49 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v29
|
v26.h | 49 int (*getdir) (const char *, fuse_dirh_t, fuse_dirfil_t_v22); member in struct:fuse_operations_v26
|
fs.c | 853 /* FUSE < 2.2 had getdir() that used fuse_dirfil_t_v11. */ 856 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getdir) \ 857 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getdir(path, &v23_shim, fuse_dirfil_v11_to_fill_dir_v23); \ 864 /* FUSE 2.2 had getdir() that used fuse_dirfil_t_v22 but 867 if (((const struct fuse_operations_v22*)fs->op)->getdir) 868 return ((const struct fuse_operations_v22*)fs->op)->getdir(path, &v23_shim, fuse_dirfil_v22_to_fill_dir_v23); 872 /* FUSE 2.3 introduced readdir() but still had getdir() as 874 * finally removed getdir() and also changed the prototype of 880 else if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getdir) \ 881 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getdir(path, &v23_shim, fuse_dirfil_v22_to_fill_dir_v23); [all...] |
/src/games/hack/ |
hack.search.c | 181 if (!getdir(1))
|
hack.apply.c | 142 if (!getdir(1)) { /* ask: in what direction? */ 468 if (!getdir(0)) /* no txt */
|
hack.cmd.c | 303 getdir(boolean s) function in typeref:typename:int
|
extern.h | 73 int getdir(boolean);
|
hack.do.c | 339 if (!obj || !getdir(1)) /* ask "in what direction?" */
|
hack.zap.c | 215 if (!(objects[obj->otyp].bits & NODIR) && !getdir(1))
|