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