|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FUSEFileInfo | |
---|---|
org.catacombae.jfuse | |
org.catacombae.jfuse.examples | |
org.catacombae.jfuse.joapi | |
org.catacombae.jfuse.test |
Uses of FUSEFileInfo in org.catacombae.jfuse |
---|
Methods in org.catacombae.jfuse with parameters of type FUSEFileInfo | |
---|---|
int |
FUSE26Operations.create(ByteBuffer path,
short mode,
FUSEFileInfo fi)
Create and open a file. |
int |
FUSE26FileSystemAdapter.create(ByteBuffer path,
short mode,
FUSEFileInfo fi)
|
int |
FUSE26Operations.fgetattr(ByteBuffer path,
Stat stat,
FUSEFileInfo fi)
Get attributes from an open file. |
int |
FUSE26FileSystemAdapter.fgetattr(ByteBuffer path,
Stat stat,
FUSEFileInfo fi)
|
int |
FUSE26Operations.flush(ByteBuffer path,
FUSEFileInfo fi)
Possibly flush cached data. |
int |
FUSE26FileSystemAdapter.flush(ByteBuffer path,
FUSEFileInfo fi)
|
int |
MacFUSE20Operations.fsetattr_x(ByteBuffer path,
Setattr_x attr,
FUSEFileInfo fi)
Set many attributes in a single call. |
int |
MacFUSE20FileSystemAdapter.fsetattr_x(ByteBuffer path,
Setattr_x attr,
FUSEFileInfo fi)
|
int |
FUSE26Operations.fsync(ByteBuffer path,
boolean datasync,
FUSEFileInfo fi)
Synchronize file contents. |
int |
FUSE26FileSystemAdapter.fsync(ByteBuffer path,
boolean datasync,
FUSEFileInfo fi)
|
int |
FUSE26Operations.fsyncdir(ByteBuffer path,
boolean datasync,
FUSEFileInfo fi)
Synchronize directory contents. |
int |
FUSE26FileSystemAdapter.fsyncdir(ByteBuffer path,
boolean datasync,
FUSEFileInfo fi)
|
int |
FUSE26Operations.ftruncate(ByteBuffer path,
long length,
FUSEFileInfo fi)
Change the size of an open file. |
int |
FUSE26FileSystemAdapter.ftruncate(ByteBuffer path,
long length,
FUSEFileInfo fi)
|
int |
FUSE26Operations.lock(ByteBuffer path,
FUSEFileInfo fi,
int cmd,
Flock flock)
Perform POSIX file locking operation. |
int |
FUSE26FileSystemAdapter.lock(ByteBuffer path,
FUSEFileInfo fi,
int cmd,
Flock flock)
|
int |
FUSE26Operations.open(ByteBuffer path,
FUSEFileInfo fi)
File open operation. |
int |
FUSE26FileSystemAdapter.open(ByteBuffer path,
FUSEFileInfo fi)
|
int |
FUSE26Operations.opendir(ByteBuffer path,
FUSEFileInfo fi)
Open directory. |
int |
FUSE26FileSystemAdapter.opendir(ByteBuffer path,
FUSEFileInfo fi)
|
int |
FUSE26Operations.read(ByteBuffer path,
ByteBuffer dest,
long off,
FUSEFileInfo fi)
Read data from an open file. |
int |
FUSE26FileSystemAdapter.read(ByteBuffer path,
ByteBuffer dest,
long offset,
FUSEFileInfo fi)
|
int |
FUSE26Operations.readdir(ByteBuffer path,
FUSEFillDir filler,
long offset,
FUSEFileInfo fi)
Read directory. |
int |
FUSE26FileSystemAdapter.readdir(ByteBuffer path,
FUSEFillDir filler,
long offset,
FUSEFileInfo fi)
|
int |
FUSE26Operations.release(ByteBuffer path,
FUSEFileInfo fi)
Release an open file. |
int |
FUSE26FileSystemAdapter.release(ByteBuffer path,
FUSEFileInfo fi)
|
int |
FUSE26Operations.releasedir(ByteBuffer path,
FUSEFileInfo fi)
Release directory. |
int |
FUSE26FileSystemAdapter.releasedir(ByteBuffer path,
FUSEFileInfo fi)
|
int |
FUSE26Operations.write(ByteBuffer path,
ByteBuffer src,
long off,
FUSEFileInfo fi)
Write data to an open file. |
int |
FUSE26FileSystemAdapter.write(ByteBuffer path,
ByteBuffer src,
long off,
FUSEFileInfo fi)
|
Uses of FUSEFileInfo in org.catacombae.jfuse.examples |
---|
Methods in org.catacombae.jfuse.examples with parameters of type FUSEFileInfo | |
---|---|
int |
HelloFS.open(ByteBuffer path,
FUSEFileInfo fi)
|
int |
HelloFS.read(ByteBuffer path,
ByteBuffer buf,
long offset,
FUSEFileInfo fi)
|
int |
HelloFS.readdir(ByteBuffer path,
FUSEFillDir filler,
long offset,
FUSEFileInfo fi)
|
Uses of FUSEFileInfo in org.catacombae.jfuse.joapi |
---|
Methods in org.catacombae.jfuse.joapi with parameters of type FUSEFileInfo | |
---|---|
void |
JFUSEOperations.create(String path,
short mode,
FUSEFileInfo fi)
Create and open a file. |
void |
JFUSEOperations.fgetattr(String path,
Stat stat,
FUSEFileInfo fi)
Get attributes from an open file. |
void |
JFUSEOperations.flush(String path,
FUSEFileInfo fi)
Possibly flush cached data. |
void |
JFUSEOperations.fsync(String path,
boolean datasync,
FUSEFileInfo fi)
Synchronize file contents. |
void |
JFUSEOperations.fsyncdir(String path,
boolean datasync,
FUSEFileInfo fi)
Synchronize directory contents. |
void |
JFUSEOperations.ftruncate(String path,
long length,
FUSEFileInfo fi)
Change the size of an open file. |
void |
JFUSEOperations.lock(String path,
FUSEFileInfo fi,
int cmd,
Flock flock)
Perform POSIX file locking operation. |
void |
JFUSEOperations.open(String path,
FUSEFileInfo fi)
File open operation. |
void |
JFUSEOperations.opendir(String path,
FUSEFileInfo fi)
Open directory. |
int |
JFUSEOperations.read(String path,
ByteBuffer dest,
long off,
FUSEFileInfo fi)
Read data from an open file. |
void |
JFUSEOperations.readdir(String path,
FUSEFillDir filler,
long offset,
FUSEFileInfo fi)
Read directory. |
void |
JFUSEOperations.release(String path,
FUSEFileInfo fi)
Release an open file. |
void |
JFUSEOperations.releasedir(String path,
FUSEFileInfo fi)
Release directory. |
int |
JFUSEOperations.write(String path,
ByteBuffer src,
long off,
FUSEFileInfo fi)
Write data to an open file. |
Uses of FUSEFileInfo in org.catacombae.jfuse.test |
---|
Methods in org.catacombae.jfuse.test with parameters of type FUSEFileInfo | |
---|---|
int |
TestFS.create(ByteBuffer path,
short mode,
FUSEFileInfo fi)
|
int |
TestFS.open(ByteBuffer path,
FUSEFileInfo fi)
|
int |
TestFS.read(ByteBuffer path,
ByteBuffer buf,
long offset,
FUSEFileInfo fi)
|
int |
TestFS.readdir(ByteBuffer path,
FUSEFillDir filler,
long offset,
FUSEFileInfo fi)
|
int |
TestFS.write(ByteBuffer path,
ByteBuffer buf,
long offset,
FUSEFileInfo fi)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |