• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/apr-32/apr/apr/network_io/os2/

Lines Matching refs:rc

52         ULONG rc;
55 rc = DosLoadModule(errorstr, sizeof(errorstr), "SO32DLL", &hSO32DLL);
57 if (rc)
58 return APR_OS2_STATUS(rc);
60 rc = DosQueryProcAddr(hSO32DLL, 0, "SOCKET", &apr_os2_socket);
62 if (!rc)
63 rc = DosQueryProcAddr(hSO32DLL, 0, "SELECT", &apr_os2_select);
65 if (!rc)
66 rc = DosQueryProcAddr(hSO32DLL, 0, "SOCK_ERRNO", &apr_os2_sock_errno);
68 if (!rc)
69 rc = DosQueryProcAddr(hSO32DLL, 0, "ACCEPT", &apr_os2_accept);
71 if (!rc)
72 rc = DosQueryProcAddr(hSO32DLL, 0, "BIND", &apr_os2_bind);
74 if (!rc)
75 rc = DosQueryProcAddr(hSO32DLL, 0, "CONNECT", &apr_os2_connect);
77 if (!rc)
78 rc = DosQueryProcAddr(hSO32DLL, 0, "GETPEERNAME", &apr_os2_getpeername);
80 if (!rc)
81 rc = DosQueryProcAddr(hSO32DLL, 0, "GETSOCKNAME", &apr_os2_getsockname);
83 if (!rc)
84 rc = DosQueryProcAddr(hSO32DLL, 0, "GETSOCKOPT", &apr_os2_getsockopt);
86 if (!rc)
87 rc = DosQueryProcAddr(hSO32DLL, 0, "IOCTL", &apr_os2_ioctl);
89 if (!rc)
90 rc = DosQueryProcAddr(hSO32DLL, 0, "LISTEN", &apr_os2_listen);
92 if (!rc)
93 rc = DosQueryProcAddr(hSO32DLL, 0, "RECV", &apr_os2_recv);
95 if (!rc)
96 rc = DosQueryProcAddr(hSO32DLL, 0, "SEND", &apr_os2_send);
98 if (!rc)
99 rc = DosQueryProcAddr(hSO32DLL, 0, "SETSOCKOPT", &apr_os2_setsockopt);
101 if (!rc)
102 rc = DosQueryProcAddr(hSO32DLL, 0, "SHUTDOWN", &apr_os2_shutdown);
104 if (!rc)
105 rc = DosQueryProcAddr(hSO32DLL, 0, "SOCLOSE", &apr_os2_soclose);
107 if (!rc)
108 rc = DosQueryProcAddr(hSO32DLL, 0, "WRITEV", &apr_os2_writev);
110 if (!rc)
111 rc = DosQueryProcAddr(hSO32DLL, 0, "SENDTO", &apr_os2_sendto);
113 if (!rc)
114 rc = DosQueryProcAddr(hSO32DLL, 0, "RECVFROM", &apr_os2_recvfrom);
116 if (rc)
117 return APR_OS2_STATUS(rc);
128 int rc = os2_fn_link();
129 if (rc == APR_SUCCESS)
131 return rc;