• Home
  • Raw
  • Download

Lines Matching refs:Int

55 Int VG_(safe_fd)(Int oldfd)  in VG_()
57 Int newfd; in VG_()
79 Bool VG_(resolve_filename) ( Int fd, const HChar** result ) in VG_()
139 SysRes VG_(mknod) ( const HChar* pathname, Int mode, UWord dev ) in VG_()
157 SysRes VG_(open) ( const HChar* pathname, Int flags, Int mode ) in VG_()
178 Int VG_(fd_open) (const HChar* pathname, Int flags, Int mode) in VG_()
188 void VG_(close) ( Int fd ) in VG_()
200 Int VG_(read) ( Int fd, void* buf, Int count) in VG_()
202 Int ret; in VG_()
211 ret = - (Int)(Word)sr_Err(res); in VG_()
214 ret = (Int)(Word)sr_Res(res); in VG_()
220 Int VG_(write) ( Int fd, const void* buf, Int count) in VG_()
222 Int ret; in VG_()
231 ret = - (Int)(Word)sr_Err(res); in VG_()
234 ret = (Int)(Word)sr_Res(res); in VG_()
241 Int VG_(pipe) ( Int fd[2] ) in VG_()
247 fd[0] = (Int)sr_Res(res); in VG_()
248 fd[1] = (Int)sr_ResEx(res); in VG_()
263 fd[0] = (Int)sr_Res(res); in VG_()
264 fd[1] = (Int)sr_ResHI(res); in VG_()
274 fd[0] = (Int)sr_Res(res); in VG_()
275 fd[1] = (Int)sr_ResHI(res); in VG_()
284 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence ) in VG_()
395 Int VG_(fstat) ( Int fd, struct vg_stat* vgbuf ) in VG_()
443 Long VG_(fsize) ( Int fd ) in VG_()
446 Int res = VG_(fstat)( fd, &buf ); in VG_()
470 SysRes VG_(dup) ( Int oldfd ) in VG_()
481 SysRes VG_(dup2) ( Int oldfd, Int newfd ) in VG_()
493 Int VG_(fcntl) ( Int fd, Int cmd, Addr arg ) in VG_()
505 Int VG_(rename) ( const HChar* old_name, const HChar* new_name ) in VG_()
521 Int VG_(unlink) ( const HChar* file_name ) in VG_()
576 (Int)VG_(getppid)()); in VG_()
599 SysRes VG_(poll) (struct vki_pollfd *fds, Int nfds, Int timeout) in VG_()
660 Int VG_(getdents64) (Int fd, struct vki_dirent64 *dirp, UInt count) in VG_()
677 Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr, Bool ixusr ) in VG_()
731 Int VG_(check_executable)(/*OUT*/Bool* is_setuid, in VG_()
765 Int grpmatch = 0; in VG_()
771 Int ngrp; in VG_()
780 Int i; in VG_()
803 SysRes VG_(pread) ( Int fd, void* buf, Int count, OffT offset ) in VG_()
886 Int VG_(mkstemp) ( const HChar* part_of_name, /*OUT*/HChar* fullname ) in VG_()
888 Int n, tries; in VG_()
931 Int parse_inet_addr_and_port ( const HChar* str, UInt* ip_addr, UShort* port );
934 Int my_connect ( Int sockfd, struct vki_sockaddr_in* serv_addr, Int addrlen );
989 Int VG_(connect_via_socket)( const HChar* str ) in VG_()
992 Int sd, res; in VG_()
1035 static Int parse_inet_addr_and_port ( const HChar* str, UInt* ip_addr, UShort* port ) in parse_inet_addr_and_port()
1077 Int VG_(socket) ( Int domain, Int type, Int protocol ) in VG_()
1102 Int optval = 1; in VG_()
1132 Int my_connect ( Int sockfd, struct vki_sockaddr_in* serv_addr, Int addrlen ) in my_connect()
1169 Int VG_(write_socket)( Int sd, const void *msg, Int count ) in VG_()
1215 Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen) in VG_()
1254 Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen) in VG_()
1293 Int VG_(getsockopt) ( Int sd, Int level, Int optname, void *optval, in VG_()
1294 Int *optlen) in VG_()
1337 Int VG_(setsockopt) ( Int sd, Int level, Int optname, void *optval, in VG_()
1338 Int optlen) in VG_()