Home
last modified time | relevance | path

Searched refs:osfd (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/npapi/npspy/extern/nspr/private/
Dpprio.h64 NSPR_API(PRFileDesc*) PR_AllocFileDesc(PRInt32 osfd,
70 NSPR_API(PRFileDesc*) PR_ImportFile(PRInt32 osfd);
71 NSPR_API(PRFileDesc*) PR_ImportPipe(PRInt32 osfd);
72 NSPR_API(PRFileDesc*) PR_ImportTCPSocket(PRInt32 osfd);
73 NSPR_API(PRFileDesc*) PR_ImportUDPSocket(PRInt32 osfd);
94 NSPR_API(PRFileDesc*) PR_CreateSocketPollFd(PRInt32 osfd);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
D_macos.h120 PRInt32 osfd; member
406 extern PRStatus _MD_LockFile(PRInt32 osfd);
408 extern PRStatus _MD_TLockFile(PRInt32 osfd);
410 extern PRStatus _MD_UnlockFile(PRInt32 osfd);
499 #define _MD_SEND(fd,buf,amount,flags,timeout) macsock_send(fd->secret->md.osfd,buf,amount,flags)
500 #define _MD_SENDTO(fd,buf,amount,flags,addr,addrlen,timeout) macsock_sendto(fd->secret->md.osfd,buf…
501 #define _MD_RECV(fd,buf,amount,flags,timeout) macsock_recv(fd->secret->md.osfd,buf,amount,flags)
502 #define _MD_RECVFROM(fd,buf,amount,flags,addr,addrlen,timeout) macsock_recvfrom(fd->secret->md.osfd
506 #define _MD_ACCEPT(fd,addr,addrlen,timeout) macsock_accept(fd->secret->md.osfd,(struct sockaddr *)a…
507 #define _MD_CONNECT(fd,name,namelen,timeout) macsock_connect(fd->secret->md.osfd,(struct sockaddr *…
[all …]
D_unixos.h113 PRInt32 osfd; member
147 int osfd; member
328 extern PRInt32 _MD_AvailableSocket(PRInt32 osfd);
355 extern PRStatus _MD_LockFile(PRInt32 osfd);
356 extern PRStatus _MD_TLockFile(PRInt32 osfd);
357 extern PRStatus _MD_UnlockFile(PRInt32 osfd);
429 extern PRInt32 _MD_close(PRInt32 osfd);
438 extern PRInt32 _MD_socketpair(int af, int type, int flags, PRInt32 *osfd);
476 extern int _MD_unix_get_nonblocking_connect_error(int osfd);
606 typedef PRIntn (*_MD_Fstat64)(PRIntn osfd, _MDStat64 *buf);
[all …]
D_beos.h155 PRInt32 osfd; member
523 NSPR_API(PRInt32) _MD_close_file(PRInt32 osfd);
543 NSPR_API(PRInt32) _MD_close_socket(PRInt32 osfd);
561 NSPR_API(PRInt32) _MD_socketpair(int af, int type, int flags, PRInt32 *osfd);
605 NSPR_API(PRStatus) _MD_lockfile(PRInt32 osfd);
606 NSPR_API(PRStatus) _MD_tlockfile(PRInt32 osfd);
607 NSPR_API(PRStatus) _MD_unlockfile(PRInt32 osfd);
D_os2.h201 PRInt32 osfd; /* The osfd can come from one of three spaces: member
226 extern PRInt32 _MD_CloseFile(PRInt32 osfd);
285 extern PRInt32 _MD_CloseSocket(PRInt32 osfd);
583 extern int _MD_os2_get_nonblocking_connect_error(int osfd);
D_win95.h192 PRInt32 osfd; /* The osfd can come from one of three spaces: member
232 extern PRInt32 _MD_CloseFile(PRInt32 osfd);
289 extern PRInt32 _MD_CloseSocket(PRInt32 osfd);
D_win16.h82 PRInt32 osfd; member
100 NSPR_API(PRInt32) _PR_WaitForFD(PRInt32 osfd, PRUintn how,
171 PRInt32 osfd; member
D_winnt.h215 PRInt32 osfd; /* The osfd can come from one of three spaces: member
265 extern PRInt32 _PR_MD_CLOSE(PRInt32 osfd, PRBool socket);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
Dprobslet.h154 NSPR_API(void) PR_FD_NSET(PRInt32 osfd, PR_fd_set *set);
155 NSPR_API(void) PR_FD_NCLR(PRInt32 osfd, PR_fd_set *set);
156 NSPR_API(PRInt32) PR_FD_NISSET(PRInt32 osfd, PR_fd_set *set);
/external/chromium_org/net/third_party/nss/ssl/
Dsslsock.c525 PRFileDesc * osfd = ss->fd->lower; in ssl_EnableNagleDelay() local
532 if (osfd->methods->setsocketoption) { in ssl_EnableNagleDelay()
533 rv = (SECStatus) osfd->methods->setsocketoption(osfd, &opt); in ssl_EnableNagleDelay()
2099 PRFileDesc *osfd; in ssl_Accept() local
2116 osfd = ss->fd->lower; in ssl_Accept()
2119 newfd = osfd->methods->accept(osfd, sockaddr, timeout); in ssl_Accept()
2384 PRFileDesc * osfd; in ssl_GetPeerInfo() local
2388 osfd = ss->fd->lower; in ssl_GetPeerInfo()
2391 rv = osfd->methods->getpeername(osfd, &sin); in ssl_GetPeerInfo()
Dsslsecur.c1070 PRFileDesc *osfd = ss->fd->lower; in ssl_SecureConnect() local
1082 rv = osfd->methods->connect(osfd, sa, ss->cTimeout); in ssl_SecureConnect()
1150 PRFileDesc *osfd = ss->fd->lower; in ssl_SecureShutdown() local
1169 rv = osfd->methods->shutdown(osfd, nsprHow); in ssl_SecureShutdown()