Home | History | Annotate | Download | only in bio

Lines Matching defs:ARG

547 int BIO_socket_ioctl(int fd, long type, void *arg)
552 i=ioctlsocket(fd,type,(char *)arg);
556 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
562 # define ARG arg_32p
569 arg_32 = *((unsigned long *) arg);
571 # define ARG arg
574 # define ARG arg
577 i=ioctlsocket(fd,type,ARG);