Searched refs:fd (Results 1 - 25 of 571) sorted by path

1234567891011>>

/haiku/headers/build/host/darwin/
H A Ddirent.h10 DIR* fdopendir(int fd);
H A Dfcntl.h37 int unlinkat(int fd, const char *path, int flag);
38 int futimesat(int fd, const char *path, const struct timeval times[2]);
H A Dstdio.h11 int symlinkat(const char *oldPath, int fd, const char *newPath);
H A Dunistd.h10 int faccessat(int fd, const char* path, int accessMode, int flag);
11 int fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag);
12 ssize_t readlinkat(int fd, const char *path, char *buffer, size_t bufferSize);
/haiku/headers/build/host/darwin/sys/
H A Dstat.h16 int futimens(int fd, const struct timespec times[2]);
17 int utimensat(int fd, const char* path, const struct timespec times[2],
32 int fchmodat(int fd, const char* path, mode_t mode, int flag);
33 int fstatat(int fd, const char *path, struct stat *st, int flag);
34 int mkdirat(int fd, const char *path, mode_t mode);
35 int mkfifoat(int fd, const char *path, mode_t mode);
36 int mknodat(int fd, const char *name, mode_t mode, dev_t dev);
/haiku/headers/build/host/freebsd/sys/
H A Dstat.h16 int futimens(int fd, const struct timespec times[2]);
17 int utimensat(int fd, const char* path, const struct timespec times[2],
/haiku/headers/build/os/kernel/
H A Dfs_attr.h24 extern ssize_t fs_read_attr(int fd, const char *attribute, uint32 type,
26 extern ssize_t fs_write_attr(int fd, const char *attribute, uint32 type,
28 extern int fs_remove_attr(int fd, const char *attribute);
29 extern int fs_stat_attr(int fd, const char *attribute,
34 extern int fs_fopen_attr(int fd, const char *attribute, uint32 type,
36 extern int fs_close_attr(int fd);
40 extern DIR *fs_fopen_attr_dir(int fd);
/haiku/headers/compatibility/bsd/
H A Dlibutil.h94 properties properties_read(int fd);
H A Dpty.h21 extern int login_tty(int fd);
/haiku/headers/compatibility/gnu/sys/
H A Dxattr.h29 ssize_t fgetxattr(int fd, const char* attribute, void* buffer, size_t size);
35 int fsetxattr(int fd, const char* attribute, const void* buffer,
40 int fremovexattr (int fd, const char* attribute);
44 ssize_t flistxattr(int fd, char* buffer, size_t size);
/haiku/headers/cpp/
H A DPlotFile.h58 PlotFile(int fd) : ofstream(fd) { } argument
H A DSFile.h42 SFile(int fd, int size);
H A Dfstream.h40 fstreambase(int fd);
41 fstreambase(int fd, char *p, int l); /* Deprecated */
52 void attach(int fd);
54 int filedesc() { return rdbuf()->fd(); }
62 ifstream(int fd) : fstreambase(fd) { } argument
63 ifstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/ argument
73 ofstream(int fd) : fstreambase(fd) { } argument
74 ofstream(int fd, char *p, int l) argument
84 fstream(int fd) argument
87 fstream(int fd, char *p, int l) argument
[all...]
H A Dstreambuf.h431 filebuf(int fd);
432 filebuf(int fd, char* p, int len);
437 filebuf* attach(int fd);
443 int fd() const { return is_open() ? _fileno : EOF; } function in class:filebuf
/haiku/headers/os/add-ons/graphics/
H A DAccelerant.h283 typedef status_t (*init_accelerant)(int fd);
/haiku/headers/os/bluetooth/HCI/
H A DbtHCI_transport.h95 int fd; member in struct:bluetooth_device
/haiku/headers/os/kernel/
H A Dfs_attr.h23 extern ssize_t fs_read_attr(int fd, const char *attribute, uint32 type,
25 extern ssize_t fs_write_attr(int fd, const char *attribute, uint32 type,
27 extern int fs_remove_attr(int fd, const char *attribute);
28 extern int fs_stat_attr(int fd, const char *attribute,
33 extern int fs_fopen_attr(int fd, const char *attribute, uint32 type,
35 extern int fs_close_attr(int fd);
39 extern DIR *fs_fopen_attr_dir(int fd);
/haiku/headers/os/net/
H A DSocket.h35 void _SetTo(int fd, const BNetworkAddress& local,
/haiku/headers/os/package/hpkg/
H A DDataReader.h42 BFDDataReader(int fd);
44 void SetFD(int fd);
56 BAttributeDataReader(int fd,
H A DPackageReader.h39 status_t Init(int fd, bool keepFD, uint32 flags = 0);
H A DPackageWriter.h81 status_t AddEntry(const char* fileName, int fd = -1);
/haiku/headers/os/package/hpkg/v1/
H A DPackageReader.h39 status_t Init(int fd, bool keepFD);
/haiku/headers/os/storage/
H A DNode.h96 status_t set_fd(int fd);
100 status_t _SetTo(int fd, const char* path, bool traverse);
/haiku/headers/posix/sys/
H A Dfile.h23 extern int flock(int fd, int op);
H A Dselect.h43 #define _FD_BITSINDEX(fd) ((fd) / NFDBITS)
44 #define _FD_BIT(fd) (1L << ((fd) % NFDBITS))
50 #define FD_SET(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] |= _FD_BIT(fd))
51 #define FD_CLR(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] &= ~_FD_BIT(fd))
[all...]

Completed in 224 milliseconds

1234567891011>>