Searched refs:fs (Results 1 - 25 of 110) sorted by relevance

12345

/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp16 fuse_fs_getattr(struct fuse_fs* fs, const char* path, struct stat* buf) argument
18 if (fs->ops.getattr == NULL)
20 return fs->ops.getattr(path, buf);
25 fuse_fs_fgetattr(struct fuse_fs* fs, const char* path, struct stat* buf, argument
28 if (fs->ops.fgetattr == NULL)
30 return fs->ops.fgetattr(path, buf, fi);
35 fuse_fs_rename(struct fuse_fs* fs, const char* oldpath, const char* newpath) argument
37 if (fs->ops.rename == NULL)
39 return fs->ops.rename(oldpath, newpath);
44 fuse_fs_unlink(struct fuse_fs* fs, cons argument
53 fuse_fs_rmdir(struct fuse_fs* fs, const char* path) argument
62 fuse_fs_symlink(struct fuse_fs* fs, const char* linkname, const char* path) argument
71 fuse_fs_link(struct fuse_fs* fs, const char* oldpath, const char* newpath) argument
80 fuse_fs_release(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi) argument
90 fuse_fs_open(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi) argument
99 fuse_fs_read(struct fuse_fs* fs, const char* path, char *buf, size_t size, off_t off, struct fuse_file_info* fi) argument
109 fuse_fs_write(struct fuse_fs* fs, const char* path, const char* buf, size_t size, off_t off, struct fuse_file_info* fi) argument
119 fuse_fs_fsync(struct fuse_fs* fs, const char* path, int datasync, struct fuse_file_info* fi) argument
129 fuse_fs_flush(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi) argument
138 fuse_fs_statfs(struct fuse_fs* fs, const char* path, struct statvfs* buf) argument
147 fuse_fs_opendir(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi) argument
156 fuse_fs_readdir(struct fuse_fs* fs, const char* path, void* buf, fuse_fill_dir_t filler, off_t off, struct fuse_file_info* fi) argument
166 fuse_fs_fsyncdir(struct fuse_fs* fs, const char* path, int datasync, struct fuse_file_info* fi) argument
176 fuse_fs_releasedir(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi) argument
186 fuse_fs_create(struct fuse_fs* fs, const char* path, mode_t mode, struct fuse_file_info* fi) argument
196 fuse_fs_lock(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi, int cmd, struct flock* lock) argument
206 fuse_fs_chmod(struct fuse_fs* fs, const char* path, mode_t mode) argument
215 fuse_fs_chown(struct fuse_fs* fs, const char* path, uid_t uid, gid_t gid) argument
224 fuse_fs_truncate(struct fuse_fs* fs, const char* path, off_t size) argument
233 fuse_fs_ftruncate(struct fuse_fs* fs, const char* path, off_t size, struct fuse_file_info* fi) argument
243 fuse_fs_utimens(struct fuse_fs* fs, const char* path, const struct timespec tv[2]) argument
262 fuse_fs_access(struct fuse_fs* fs, const char* path, int mask) argument
271 fuse_fs_readlink(struct fuse_fs* fs, const char* path, char* buf, size_t len) argument
280 fuse_fs_mknod(struct fuse_fs* fs, const char* path, mode_t mode, dev_t rdev) argument
289 fuse_fs_mkdir(struct fuse_fs* fs, const char* path, mode_t mode) argument
298 fuse_fs_setxattr(struct fuse_fs* fs, const char* path, const char* name, const char* value, size_t size, int flags) argument
308 fuse_fs_getxattr(struct fuse_fs* fs, const char* path, const char* name, char* value, size_t size) argument
318 fuse_fs_listxattr(struct fuse_fs* fs, const char* path, char* list, size_t size) argument
327 fuse_fs_removexattr(struct fuse_fs* fs, const char* path, const char* name) argument
336 fuse_fs_bmap(struct fuse_fs* fs, const char* path, size_t blocksize, uint64_t* idx) argument
346 fuse_fs_init(struct fuse_fs* fs, struct fuse_conn_info* conn) argument
355 fuse_fs_destroy(struct fuse_fs* fs) argument
372 fuse_fs* fs = new(std::nothrow) fuse_fs; local
[all...]
/haiku-fatelf/src/bin/writembr/
H A Dwritembr.cpp69 fstream fs; local
70 fs.open(device.Path(), fstream::in | fstream::out | fstream::binary);
71 if (!fs.is_open()) {
77 fs.read((char*)MBR, kMBRSize);
78 if (fs.fail() || fs.gcount() < kMBRSize ) {
81 fs.close();
98 fs.close();
104 fs.seekg(0, ios::beg);
105 fs
[all...]
/haiku-fatelf/headers/private/userlandfs/fuse/
H A Dfuse.h599 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf);
600 int fuse_fs_fgetattr(struct fuse_fs *fs, const char *path, struct stat *buf,
602 int fuse_fs_rename(struct fuse_fs *fs, const char *oldpath,
604 int fuse_fs_unlink(struct fuse_fs *fs, const char *path);
605 int fuse_fs_rmdir(struct fuse_fs *fs, const char *path);
606 int fuse_fs_symlink(struct fuse_fs *fs, const char *linkname,
608 int fuse_fs_link(struct fuse_fs *fs, const char *oldpath, const char *newpath);
609 int fuse_fs_release(struct fuse_fs *fs, const char *path,
611 int fuse_fs_open(struct fuse_fs *fs, const char *path,
613 int fuse_fs_read(struct fuse_fs *fs, cons
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddwarf2-frame.c194 struct dwarf2_frame_state *fs = p;
196 dwarf2_frame_state_free_regs (fs->initial.prev);
197 dwarf2_frame_state_free_regs (fs->regs.prev);
198 xfree (fs->initial.reg);
199 xfree (fs->regs.reg);
200 xfree (fs);
273 struct dwarf2_frame_state *fs)
278 while (insn_ptr < insn_end && fs->pc <= pc)
285 fs->pc += (insn & 0x3f) * fs
193 struct dwarf2_frame_state *fs = p; local
268 execute_cfa_program(unsigned char *insn_ptr, unsigned char *insn_end, struct frame_info *next_frame, struct dwarf2_frame_state *fs) argument
569 struct dwarf2_frame_state *fs; local
[all...]
H A Damd64-haiku-nat.c59 REG_OFFSET (fs),
H A Di386-haiku-nat.c50 REG_OFFSET (fs),
/haiku-fatelf/src/system/kernel/fs/
H A Drootfs.cpp147 rootfs_create_vnode(struct rootfs* fs, struct rootfs_vnode* parent, argument
166 vnode->id = fs->next_vnode_id++;
183 rootfs_delete_vnode(struct rootfs* fs, struct rootfs_vnode* v, bool force_delete) argument
191 hash_remove(fs->vnode_list_hash, v);
237 rootfs_insert_in_dir(struct rootfs* fs, struct rootfs_vnode* dir, argument
261 notify_stat_changed(fs->id, dir->id, B_STAT_MODIFICATION_TIME);
267 rootfs_remove_from_dir(struct rootfs* fs, struct rootfs_vnode* dir, argument
286 notify_stat_changed(fs->id, dir->id, B_STAT_MODIFICATION_TIME);
303 remove_node(struct rootfs* fs, struct rootfs_vnode* directory, argument
308 bool gotNode = (get_vnode(fs
327 rootfs_remove(struct rootfs* fs, struct rootfs_vnode* dir, const char* name, bool isDirectory) argument
361 struct rootfs* fs; local
416 struct rootfs* fs = (struct rootfs*)_volume->private_volume; local
454 struct rootfs* fs = (struct rootfs*)_volume->private_volume; local
498 struct rootfs* fs = (struct rootfs*)_volume->private_volume; local
540 struct rootfs* fs = (struct rootfs*)_volume->private_volume; local
628 struct rootfs* fs = (rootfs*)_volume->private_volume; local
659 struct rootfs* fs = (rootfs*)_volume->private_volume; local
672 struct rootfs* fs = (struct rootfs*)_volume->private_volume; local
707 struct rootfs* fs = (rootfs*)_volume->private_volume; local
730 struct rootfs* fs = (rootfs*)_volume->private_volume; local
795 struct rootfs* fs = (rootfs*)_volume->private_volume; local
862 struct rootfs* fs = (rootfs*)_volume->private_volume; local
900 struct rootfs* fs = (rootfs*)_volume->private_volume; local
913 struct rootfs* fs = (rootfs*)_volume->private_volume; local
993 struct rootfs* fs = (rootfs*)_volume->private_volume; local
1029 struct rootfs* fs = (rootfs*)_volume->private_volume; local
1068 struct rootfs* fs = (rootfs*)_volume->private_volume; local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DKernelDebug.cpp29 FileSystem* fs = fsInitializer->GetFileSystem(); local
30 kprintf("file system %p: %s\n", fs, (fs ? fs->GetName() : NULL));
31 if (fs) {
32 kprintf(" port pool %p\n", fs->GetPortPool());
33 int32 volumeCount = fs->fVolumes.Count();
35 Volume* volume = fs->fVolumes.ElementAt(i);
/haiku-fatelf/src/bin/
H A Dmount.c38 const char *fs = NULL; local
58 else if (!strcmp(arg, "t") && fs == NULL) {
61 fs = *++argv;
95 volume = fs_mount_volume(mountPoint, device, fs, flags, parameter);
/haiku-fatelf/src/tests/add-ons/kernel/kernelland_emu/
H A Ddevice_manager.cpp12 #include <fs/devfs.h>
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/kernel_add_on/
H A DKernelDebug.cpp25 FileSystem* fs = entry.value; local
26 kprintf("file system %p: %s\n", fs, fs->GetName());
27 kprintf(" port pool %p\n", fs->GetPortPool());
28 int32 volumeCount = fs->fVolumes.Count();
30 Volume* volume = fs->fVolumes.ElementAt(i);
/haiku-fatelf/src/add-ons/kernel/file_systems/reiserfs/
H A Dkernel_interface.cpp149 reiserfs_unmount(fs_volume* fs) argument
152 Volume *volume = (Volume*)fs->private_volume;
161 reiserfs_read_fs_info(fs_volume* fs, struct fs_info *info) argument
164 Volume *volume = (Volume*)fs->private_volume;
182 reiserfs_lookup(fs_volume* fs, fs_vnode* _dir, const char *entryName, argument
186 Volume *volume = (Volume*)fs->private_volume;
237 reiserfs_read_vnode(fs_volume *fs, ino_t vnid, fs_vnode *node, int *_type, argument
244 Volume *volume = (Volume*)fs->private_volume;
263 reiserfs_write_vnode(fs_volume *fs, fs_vnode *_node, bool reenter) argument
272 Volume *volume = (Volume*)fs
287 reiserfs_read_symlink(fs_volume *fs, fs_vnode *_node, char *buffer, size_t *bufferSize) argument
307 reiserfs_access(fs_volume *fs, fs_vnode *_node, int mode) argument
349 reiserfs_read_stat(fs_volume *fs, fs_vnode *_node, struct stat *st) argument
378 reiserfs_open(fs_volume *fs, fs_vnode *_node, int openMode, void **cookie) argument
409 reiserfs_close(fs_volume *fs, fs_vnode *_node, void *cookie) argument
422 reiserfs_free_cookie(fs_volume *fs, fs_vnode *_node, void *cookie) argument
437 reiserfs_read(fs_volume *fs, fs_vnode *_node, void *cookie, off_t pos, void *buffer, size_t *bufferSize) argument
514 reiserfs_open_dir(fs_volume *fs, fs_vnode *_node, void **cookie) argument
555 reiserfs_close_dir(fs_volume *fs, fs_vnode *_node, void *cookie) argument
568 reiserfs_free_dir_cookie(fs_volume *fs, fs_vnode *_node, void *cookie) argument
583 reiserfs_read_dir(fs_volume *fs, fs_vnode *_node, void *cookie, struct dirent *buffer, size_t bufferSize, uint32 *count) argument
677 reiserfs_rewind_dir(fs_volume *fs, fs_vnode *_node, void *cookie) argument
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/slides/browser/
H A Dslides.js108 var fs = fsc[0];
109 if (fs) {
110 if (fs.cols == "0,*") {
111 fs.cols = width + ",*";
114 fs.cols = "0,*";
/haiku-fatelf/src/system/kernel/device_manager/
H A Ddevfs.cpp10 #include <fs/devfs.h>
29 #include <fs/devfs.h>
30 #include <fs/KPath.h>
31 #include <fs/node_monitor.h>
141 static status_t get_node_for_path(struct devfs* fs, const char* path,
145 static status_t unpublish_node(struct devfs* fs, devfs_vnode* node,
147 static status_t publish_device(struct devfs* fs, const char* path,
248 devfs_create_vnode(struct devfs* fs, devfs_vnode* parent, const char* name) argument
257 vnode->id = fs->next_vnode_id++;
275 devfs_delete_vnode(struct devfs* fs, struc argument
418 add_partition(struct devfs* fs, struct devfs_vnode* device, const char* name, const partition_info& info) argument
508 get_node_for_path(struct devfs* fs, const char* path, struct devfs_vnode** _node) argument
517 unpublish_node(struct devfs* fs, devfs_vnode* node, mode_t type) argument
537 publish_node(devfs* fs, devfs_vnode* dirNode, struct devfs_vnode* node) argument
545 publish_directory(struct devfs* fs, const char* path) argument
610 new_node(struct devfs* fs, const char* path, struct devfs_vnode** _node, struct devfs_vnode** _dir) argument
696 publish_device(struct devfs* fs, const char* path, BaseDevice* device) argument
874 struct devfs* fs; local
941 struct devfs* fs = (struct devfs*)_volume->private_volume; local
979 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1029 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1066 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1089 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1317 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1341 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1374 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1392 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1459 struct devfs* fs = (struct devfs*)_volume->private_volume; local
1872 struct devfs* fs = (struct devfs*)_volume->private_volume; local
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dkernel.c107 fsystem *fs; member in struct:nspace
172 static int dec_file_system(fsystem *fs);
239 debugger("fs shell kernel panic!");
248 struct fsystem *fs; local
255 fs = (struct fsystem *)strtoul(argv[1], NULL, 0);
257 kprintf("fs @ 0x%x name %s rcnt %d ops @ 0x%x\n", fs, fs->name,
258 fs->rcnt, &fs
473 fsystem *fs; local
1614 fsystem *fs; local
1649 fsystem *fs = ns->fs; local
1682 add_nspace(nspace *ns, fsystem *fs, const char *fileSystem, dev_t dev, ino_t ino) argument
1917 fsystem *fs; local
2025 fsystem *fs; local
2091 fsystem *fs = NULL; local
2120 fsystem *fs = NULL; local
2151 fsystem *fs; local
2181 fsystem *fs; local
2212 fsystem *fs; local
3384 fsystem *fs; local
3419 fsystem *fs = inc_file_system(fsName); local
3443 unload_file_system(fsystem *fs) argument
3454 fsystem *fs; local
3476 dec_file_system(fsystem *fs) argument
[all...]
/haiku-fatelf/headers/private/kernel/arch/x86/32/
H A Diframe.h15 uint32 fs; member in struct:iframe
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dconf.cpp227 __pathconf_common(struct statvfs *fs, struct stat *st, argument
232 ret = fs_stat_dev(fs->f_fsid, &info);
250 return fs->f_namemax;
278 // XXX: add fs ? add to statvfs/fs_info ?
340 struct statvfs fs; local
350 ret = fstatvfs(fd, &fs);
353 return __pathconf_common(&fs, &st, name);
360 struct statvfs fs; local
370 ret = statvfs(path, &fs);
373 return __pathconf_common(&fs,
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dfield.c349 NODE *fs ATTRIBUTE_UNUSED,
424 NODE *fs,
444 if (fs->stlen == 0) {
457 * special case: fs is single space, strip leading whitespace
491 NODE *fs,
511 if (fs->stlen == 0) {
524 * special case: fs is single space, strip leading whitespace
555 NODE *fs ATTRIBUTE_UNUSED,
603 NODE *fs,
626 if (RS_is_null && fs
421 def_parse_field(long up_to, char **buf, int len, NODE *fs, Regexp *rp ATTRIBUTE_UNUSED, Setfunc set, NODE *n) argument
488 posix_def_parse_field(long up_to, char **buf, int len, NODE *fs, Regexp *rp ATTRIBUTE_UNUSED, Setfunc set, NODE *n) argument
600 sc_parse_field(long up_to, char **buf, int len, NODE *fs, Regexp *rp ATTRIBUTE_UNUSED, Setfunc set, NODE *n) argument
798 NODE *src, *arr, *sep, *fs, *src2, *fs2, *tmp; local
935 NODE *fs; local
[all...]
/haiku-fatelf/headers/private/firewire/
H A Diec68113.h81 uint8_t fs:1, /* 50/60 field system member in struct:ciphdr::__anon722::__anon723
88 fs:1; /* 50/60 field system
/haiku-fatelf/src/bin/coreutils/src/
H A DMakefile.am148 fs.h \
544 # Compare fs.h with the list of file system names/magic-numbers in the
547 .PHONY: fs-magic-compare
548 fs-magic-compare: fs-magic fs-kernel-magic fs-def
549 join -v1 -t@ fs-magic fs-def
550 join -v1 -t@ fs
[all...]
/haiku-fatelf/headers/os/drivers/
H A Dbios.h51 uint32 fs; member in struct:bios_regs
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/transport/
H A Dbeserved_transport.h45 fstream fs; member in class:BeServedTransport
/haiku-fatelf/src/bin/less/
H A Dch.c867 ch_dump(struct filestate *fs)
872 if (fs == NULL)
878 fs->file, fs->flags, fs->fpos,
879 fs->fsize, fs->block, fs->offset);
880 printf(" %d bufs:\n", fs->nbufs);
881 for (bp = fs
[all...]
/haiku-fatelf/headers/os/arch/x86/
H A Darch_debugger.h47 uint32 fs; member in struct:x86_debug_cpu_state
/haiku-fatelf/headers/os/arch/x86_64/
H A Darch_debugger.h43 uint64 fs; member in struct:x86_64_debug_cpu_state

Completed in 140 milliseconds

12345