Esempio n. 1
0
int truncateNoInt(const char* path, off_t len) {
  return int(wrapNoInt(truncate, path, len));
}
Esempio n. 2
0
int flockNoInt(int fd, int operation) {
  return int(wrapNoInt(flock, fd, operation));
}
Esempio n. 3
0
int dup2NoInt(int oldfd, int newfd) {
  return int(wrapNoInt(dup2, oldfd, newfd));
}
Esempio n. 4
0
int ftruncateNoInt(int fd, off_t len) {
  return int(wrapNoInt(ftruncate, fd, len));
}
Esempio n. 5
0
int fsyncNoInt(int fd) {
  return int(wrapNoInt(fsync, fd));
}
Esempio n. 6
0
int dupNoInt(int fd) {
  return int(wrapNoInt(dup, fd));
}
Esempio n. 7
0
ssize_t pwriteNoInt(int fd, const void* buf, size_t count, off_t offset) {
  return wrapNoInt(pwrite, fd, buf, count, offset);
}
Esempio n. 8
0
ssize_t writevNoInt(int fd, const iovec* iov, int count) {
  return wrapNoInt(writev, fd, iov, count);
}
Esempio n. 9
0
ssize_t writeNoInt(int fd, const void* buf, size_t count) {
  return wrapNoInt(write, fd, buf, count);
}
Esempio n. 10
0
ssize_t preadNoInt(int fd, void* buf, size_t count, off_t offset) {
  return wrapNoInt(pread, fd, buf, count, offset);
}
Esempio n. 11
0
ssize_t readNoInt(int fd, void* buf, size_t count) {
  return wrapNoInt(read, fd, buf, count);
}
Esempio n. 12
0
int shutdownNoInt(int fd, int how) {
  return int(wrapNoInt(portability::sockets::shutdown, fd, how));
}
Esempio n. 13
0
ssize_t readvNoInt(int fd, const iovec* iov, int count) {
  return wrapNoInt(readv, fd, iov, count);
}