Home
last modified time | relevance | path

Searched refs:FileCookie (Results 1 – 6 of 6) sorted by relevance

/haiku/src/tests/system/kernel/file_corruption/fs/
H A Dchecksumfs.cpp47 struct FileCookie { struct
57 FileCookie(int openMode) in FileCookie() argument
69 ~FileCookie() in ~FileCookie() argument
316 FileCookie* fileCookie;
520 bool commitTransaction, FileCookie*& _cookie) in open_file()
567 FileCookie* cookie = new(std::nothrow) FileCookie(openMode); in open_file()
570 ObjectDeleter<FileCookie> cookieDeleter(cookie); in open_file()
598 bool commitTransaction, FileCookie*& _cookie, Node*& _node, bool& _created) in create_file()
673 FileCookie* cookie; in create_file()
678 ObjectDeleter<FileCookie> cookieDeleter(cookie); in create_file()
[all …]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp176 struct FUSEVolume::FileCookie : fuse_file_info, RWLockable { struct in FUSEVolume
177 FileCookie(int openMode) in FileCookie() argument
864 FileCookie cookie(O_RDONLY); in Sync()
1023 FileCookie* cookie = (FileCookie*)_cookie; in DoIO()
1040 FileCookie alternativeCookie(requestInfo.isWrite ? O_WRONLY : O_RDONLY); in DoIO()
1103 FileCookie* cookie = (FileCookie*)_cookie; in SetFlags()
1159 FileCookie cookie(O_RDONLY); in FSync()
1646 FileCookie* cookie = new(std::nothrow) FileCookie(openMode); in Create()
1649 ObjectDeleter<FileCookie> cookieDeleter(cookie); in Create()
1735 FileCookie* cookie = new(std::nothrow) FileCookie(openMode); in Open()
[all …]
H A DFUSEVolume.h130 struct FileCookie;
215 status_t _InternalIO(FUSENode* node, FileCookie* cookie, const char* path,
/haiku/src/add-ons/kernel/file_systems/packagefs/
H A Dkernel_interface.cpp393 struct FileCookie { struct
396 FileCookie(int openMode) in FileCookie() argument
431 FileCookie* cookie = new(std::nothrow) FileCookie(openMode); in packagefs_open()
453 FileCookie* cookie = (FileCookie*)_cookie; in packagefs_free_cookie()
472 FileCookie* cookie = (FileCookie*)_cookie; in packagefs_read()
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A Dkernel_interface.cpp761 class FileCookie { class
763 FileCookie(int openMode) : fOpenMode(openMode), fLastNotificationTime(0) {} in FileCookie() function in FileCookie
815 FileCookie *cookie = NULL; in ramfs_create()
817 cookie = new(nothrow) FileCookie(openMode); in ramfs_create()
907 FileCookie *cookie = NULL; in ramfs_open()
909 cookie = new(nothrow) FileCookie(openMode); in ramfs_open()
952 FileCookie *cookie = (FileCookie*)_cookie; in ramfs_free_cookie()
965 FileCookie *cookie = (FileCookie*)_cookie; in ramfs_read()
1007 FileCookie *cookie = (FileCookie*)_cookie; in ramfs_write()
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dkernel_interface.cpp155 typedef struct FileCookie { struct
161 } FileCookie; typedef
1978 FileCookie* cookie = new(std::nothrow) FileCookie; in dosfs_create()
1981 ObjectDeleter<FileCookie> cookieDeleter(cookie); in dosfs_create()
2185 FileCookie* cookie = new(std::nothrow) FileCookie; in dosfs_open()
2188 ObjectDeleter<FileCookie> cookieDeleter(cookie); in dosfs_open()
2256 FileCookie* fatCookie = reinterpret_cast<FileCookie*>(cookie); in dosfs_free_cookie()
2283 FileCookie* fatCookie = reinterpret_cast<FileCookie*>(cookie); in dosfs_read()
2323 FileCookie* fatCookie = reinterpret_cast<FileCookie*>(cookie); in dosfs_write()