Lines Matching refs:err

34 void nss_MD_win32_map_default_error(PRInt32 err);
36 void nss_MD_win32_map_opendir_error(PRInt32 err)
38 nss_MD_win32_map_default_error(err);
41 void nss_MD_win32_map_closedir_error(PRInt32 err)
43 nss_MD_win32_map_default_error(err);
46 void nss_MD_win32_map_readdir_error(PRInt32 err)
48 nss_MD_win32_map_default_error(err);
51 void nss_MD_win32_map_delete_error(PRInt32 err)
53 nss_MD_win32_map_default_error(err);
57 void nss_MD_win32_map_stat_error(PRInt32 err)
59 nss_MD_win32_map_default_error(err);
62 void nss_MD_win32_map_fstat_error(PRInt32 err)
64 nss_MD_win32_map_default_error(err);
67 void nss_MD_win32_map_rename_error(PRInt32 err)
69 nss_MD_win32_map_default_error(err);
73 void nss_MD_win32_map_access_error(PRInt32 err)
75 nss_MD_win32_map_default_error(err);
78 void nss_MD_win32_map_mkdir_error(PRInt32 err)
80 nss_MD_win32_map_default_error(err);
83 void nss_MD_win32_map_rmdir_error(PRInt32 err)
85 nss_MD_win32_map_default_error(err);
88 void nss_MD_win32_map_read_error(PRInt32 err)
90 nss_MD_win32_map_default_error(err);
93 void nss_MD_win32_map_transmitfile_error(PRInt32 err)
95 nss_MD_win32_map_default_error(err);
98 void nss_MD_win32_map_write_error(PRInt32 err)
100 nss_MD_win32_map_default_error(err);
103 void nss_MD_win32_map_lseek_error(PRInt32 err)
105 nss_MD_win32_map_default_error(err);
108 void nss_MD_win32_map_fsync_error(PRInt32 err)
110 nss_MD_win32_map_default_error(err);
116 void nss_MD_win32_map_close_error(PRInt32 err)
118 nss_MD_win32_map_default_error(err);
121 void nss_MD_win32_map_socket_error(PRInt32 err)
123 PR_ASSERT(err != WSANOTINITIALISED);
124 nss_MD_win32_map_default_error(err);
127 void nss_MD_win32_map_recv_error(PRInt32 err)
129 nss_MD_win32_map_default_error(err);
132 void nss_MD_win32_map_recvfrom_error(PRInt32 err)
134 nss_MD_win32_map_default_error(err);
137 void nss_MD_win32_map_send_error(PRInt32 err)
140 switch (err) {
142 default: nss_MD_win32_map_default_error(err); return;
144 PR_SetError(prError, err);
147 void nss_MD_win32_map_sendto_error(PRInt32 err)
150 switch (err) {
152 default: nss_MD_win32_map_default_error(err); return;
154 PR_SetError(prError, err);
157 void nss_MD_win32_map_accept_error(PRInt32 err)
160 switch (err) {
163 default: nss_MD_win32_map_default_error(err); return;
165 PR_SetError(prError, err);
168 void nss_MD_win32_map_acceptex_error(PRInt32 err)
170 nss_MD_win32_map_default_error(err);
173 void nss_MD_win32_map_connect_error(PRInt32 err)
176 switch (err) {
180 default: nss_MD_win32_map_default_error(err); return;
182 PR_SetError(prError, err);
185 void nss_MD_win32_map_bind_error(PRInt32 err)
188 switch (err) {
190 default: nss_MD_win32_map_default_error(err); return;
192 PR_SetError(prError, err);
195 void nss_MD_win32_map_listen_error(PRInt32 err)
198 switch (err) {
201 default: nss_MD_win32_map_default_error(err); return;
203 PR_SetError(prError, err);
206 void nss_MD_win32_map_shutdown_error(PRInt32 err)
208 nss_MD_win32_map_default_error(err);
211 void nss_MD_win32_map_getsockname_error(PRInt32 err)
214 switch (err) {
216 default: nss_MD_win32_map_default_error(err); return;
218 PR_SetError(prError, err);
221 void nss_MD_win32_map_getpeername_error(PRInt32 err)
223 nss_MD_win32_map_default_error(err);
226 void nss_MD_win32_map_getsockopt_error(PRInt32 err)
228 nss_MD_win32_map_default_error(err);
231 void nss_MD_win32_map_setsockopt_error(PRInt32 err)
233 nss_MD_win32_map_default_error(err);
236 void nss_MD_win32_map_open_error(PRInt32 err)
238 nss_MD_win32_map_default_error(err);
241 void nss_MD_win32_map_gethostname_error(PRInt32 err)
243 nss_MD_win32_map_default_error(err);
249 void nss_MD_win32_map_select_error(PRInt32 err)
252 switch (err) {
254 default: nss_MD_win32_map_default_error(err); return;
256 PR_SetError(prError, err);
259 void nss_MD_win32_map_lockf_error(PRInt32 err)
261 nss_MD_win32_map_default_error(err);
266 void nss_MD_win32_map_default_error(PRInt32 err)
270 switch (err) {
341 PR_SetError(prError, err);