Searched refs:fFd (Results 1 - 18 of 18) sorted by relevance

/haiku/src/kits/storage/
H A DFdIO.cpp17 fFd(-1),
26 fFd(fd),
43 fFd = fd;
51 if (fOwnsFd && fFd >= 0)
52 close(fFd);
54 fFd = -1;
62 ssize_t bytesRead = read(fFd, buffer, size);
70 ssize_t bytesWritten = write(fFd, buffer, size);
78 ssize_t bytesRead = pread(fFd, buffer, size, position);
86 ssize_t bytesWritten = pwrite(fFd, buffe
[all...]
H A DNode.cpp98 fFd(-1),
107 fFd(-1),
118 fFd(-1),
129 fFd(-1),
140 fFd(-1),
151 fFd(-1),
225 return _kern_lock_node(fFd);
235 return _kern_unlock_node(fFd);
242 return (fCStatus != B_OK) ? B_FILE_ERROR : _kern_fsync(fFd);
256 ssize_t result = fs_write_attr(fFd, att
[all...]
H A DSymLink.cpp172 This method should be used instead of accessing the private \c fFd member
180 return fFd;
H A DFile.cpp320 fFd = fd;
342 To be used instead of accessing the BNode's private \c fFd member directly.
349 return fFd;
/haiku/src/build/libbe/storage/
H A DNode.cpp88 fFd(-1),
97 fFd(-1),
108 fFd(-1),
119 fFd(-1),
130 fFd(-1),
141 fFd(-1),
215 return _kern_lock_node(fFd);
225 return _kern_unlock_node(fFd);
232 return (fCStatus != B_OK) ? B_FILE_ERROR : _kern_fsync(fFd);
246 ssize_t result = fs_write_attr(fFd, att
[all...]
H A DFile.cpp489 fFd = fd;
511 To be used instead of accessing the BNode's private \c fFd member directly.
517 return fFd;
/haiku/headers/os/device/
H A DA2D.h29 int fFd; member in class:BA2D
H A DD2A.h30 int fFd; member in class:BD2A
H A DDigitalPort.h37 int fFd; member in class:BDigitalPort
/haiku/src/apps/terminal/
H A DShell.cpp135 fFd(-1),
152 if (fFd >= 0)
159 fTermParse = new (std::nothrow) TermParse(fFd);
175 if (fFd >= 0) {
176 close(fFd);
181 fFd = -1;
189 return ttyname(fFd);
196 if (fFd < 0)
199 return read(fFd, buffer, numBytes);
206 if (fFd <
[all...]
H A DShell.h70 int fFd; member in class:Shell
H A DTermParse.h67 int fFd; member in class:TermParse
H A DTermParse.cpp80 fFd(fd),
254 ssize_t nread = read(fFd, buf, READ_BUF_SIZE - bufferSize);
961 write(fFd, "\033[?6c", 5);
1362 write(fFd, toWrite, strlen(toWrite));
1371 write(fFd, sbuf, len);
1399 write(fFd, parms, strlen(parms));
/haiku/headers/private/storage/
H A DFdIO.h40 int fFd; member in class:BFdIO
/haiku/headers/os/storage/
H A DNode.h111 int fFd; member in class:BNode
/haiku/headers/build/os/storage/
H A DNode.h116 int fFd; member in class:BNode
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp566 fFd(-1),
577 if (fFd >= 0)
578 close(fFd);
590 fFd = open(path, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR);
591 if (fFd < 0)
616 ssize_t written = pwrite(fFd, fBuffer, fBuffered, fOffset);
708 int fFd; member in struct:__anon2::BufferedFile
/haiku/src/kits/debugger/elf/
H A DElfFile.cpp115 fFd(fd),
146 ssize_t bytesRead = pread(fFd, buffer, toRead,
172 int fFd; member in struct:ElfFile::SymbolLookupSource

Completed in 87 milliseconds