• BlackBerry Dynamics
  • Runtime library for iOS applications
  • 12.0.1.79
GD_C_unistd.h File Reference
#include <unistd.h>
#include <sys/mount.h>
#include <sys/uio.h>

Functions

int GD_UNISTD_open (const char *path, int flags,...)
 C API. More...
 
int GD_UNISTD_close (int fd)
 C API. More...
 
ssize_t GD_UNISTD_read (int fd, void *buffer, size_t nbytes)
 C API. More...
 
ssize_t GD_UNISTD_write (int fd, const void *buffer, size_t nbytes)
 C API. More...
 
off_t GD_UNISTD_lseek (int fd, off_t offset, int whence)
 C API. More...
 
int GD_UNISTD_ftruncate (int fd, off_t length)
 C API. More...
 
int GD_UNISTD_truncate (const char *path, off_t length)
 C API. More...
 
int GD_UNISTD_fdatasync (int fd)
 C API. More...
 
int GD_UNISTD_fsync (int fd)
 C API. More...
 
int GD_UNISTD_fchown (int fd, uid_t owner, gid_t group)
 C API. More...
 
int GD_UNISTD_chown (const char *path, uid_t owner, gid_t group)
 C API. More...
 
int GD_UNISTD_lchown (const char *path, uid_t owner, gid_t group)
 C API. More...
 
int GD_UNISTD_chroot (const char *path)
 C API. More...
 
int GD_UNISTD_fchdir (int fd)
 C API. More...
 
int GD_UNISTD_chdir (const char *path)
 C API. More...
 
char * GD_UNISTD_getcwd (char *buf, size_t size)
 C API. More...
 
int GD_UNISTD_rmdir (const char *path)
 C API. More...
 
int GD_UNISTD_access (const char *path, int mode)
 C API. More...
 
long int GD_UNISTD_fpathconf (int fd, int name)
 C API. More...
 
long int GD_UNISTD_pathconf (const char *path, int name)
 C API. More...
 
int GD_UNISTD_lockf (int fd, int function, off_t size)
 C API. More...
 
char * GD_UNISTD_ttyname (int fd)
 C API. More...
 
int GD_UNISTD_ttyname_r (int fd, char *name, size_t namesize)
 C API. More...
 
int GD_UNISTD_pipe (int fds[2])
 C API. More...
 
ssize_t GD_UNISTD_pread (int fd, void *buffer, size_t nbyte, off_t offset)
 C API. More...
 
ssize_t GD_UNISTD_pwrite (int fd, const void *buffer, size_t nbyte, off_t offset)
 C API. More...
 
ssize_t GD_UNISTD_writev (int fd, const struct iovec *iov, int iovcnt)
 C API. More...
 
ssize_t GD_UNISTD_readv (int fd, const struct iovec *iov, int iovcnt)
 C API. More...
 
int GD_UNISTD_dup (int oldd)
 C API. More...
 
int GD_UNISTD_dup2 (int oldd, int newd)
 C API. More...
 
int GD_UNISTD_symlink (const char *file_path, const char *symlink_path)
 C API. More...
 
int GD_UNISTD_readlink (const char *path, char *buffer, size_t nbyte)
 C API. More...
 
int GD_UNISTD_link (const char *file_path, const char *link_path)
 C API. More...
 
int GD_UNISTD_unlink (const char *path)
 C API. More...
 
void * GD_UNISTD_mmap (void *addr, size_t length, int prot, int flags, int fd, off_t offset)
 C API. More...
 
int GD_UNISTD_munmap (void *addr, size_t length)
 C API. More...
 
int GD_UNISTD_msync (void *addr, size_t length, int flags)
 C API. More...
 
int GD_UNISTD_fchmod (int fildes, mode_t mode)
 C API. More...
 
int GD_UNISTD_fstatfs (int fd, struct statfs *buf)
 C API. More...
 
int GD_UNISTD_utimes (int fd, const struct utimbuf *times)