/vbox/src/VBox/Devices/Network/slirp/bsd/kern/ |
H A D | uipc_mbuf2.c | 484 m_tag_copy(struct m_tag *t, int how) argument 488 MBUF_CHECKSLEEP(how); 490 p = m_tag_alloc(t->m_tag_cookie, t->m_tag_id, t->m_tag_len, how); 500 if (mac_init_mbuf_tag(p, how) != 0) { 518 m_tag_copy_chain(struct mbuf *to, struct mbuf *from, int how) argument 522 MBUF_CHECKSLEEP(how); 527 t = m_tag_copy(p, how);
|
H A D | kern_mbuf.c | 460 mb_ctor_mbuf(void *mem, int size, void *arg, int how) argument 462 mb_ctor_mbuf(PNATState pData, void *mem, int size, void *arg, int how) 477 trash_ctor(mem, size, arg, how); 480 NOREF(how); 511 error = mac_init_mbuf(m, how); 601 mb_ctor_clust(void *mem, int size, void *arg, int how) argument 603 mb_ctor_clust(PNATState pData, void *mem, int size, void *arg, int how) 611 NOREF(how); 615 trash_ctor(mem, size, arg, how); 617 NOREF(how); 693 mb_zinit_pack(void *mem, int size, int how) argument 743 mb_ctor_pack(void *mem, int size, void *arg, int how) argument [all...] |
H A D | uipc_mbuf.c | 107 m_getm2(struct mbuf *m, int len, int how, short type, int flags) argument 109 m_getm2(PNATState pData, struct mbuf *m, int len, int how, short type, int flags) 127 mb = m_getjcl(how, type, (flags & M_PKTHDR), 130 mb = m_getcl(how, type, (flags & M_PKTHDR)); 132 mb = m_gethdr(how, type); 134 mb = m_get(how, type); 144 mb = m_getjcl(pData, how, type, (flags & M_PKTHDR), 147 mb = m_getcl(pData, how, type, (flags & M_PKTHDR)); 149 mb = m_gethdr(pData, how, type); 151 mb = m_get(pData, how, typ 514 m_dup_pkthdr(struct mbuf *to, struct mbuf *from, int how) argument 549 m_prepend(struct mbuf *m, int len, int how) argument 685 m_copymdata(struct mbuf *m, struct mbuf *n, int off, int len, int prep, int how) argument 845 m_copypacket(struct mbuf *m, int how) argument 935 m_dup(struct mbuf *m, int how) argument 1680 m_defrag(struct mbuf *m0, int how) argument 1795 m_collapse(struct mbuf *m0, int how, int maxfrags) argument 1905 m_fragment(struct mbuf *m0, int how, int length) argument 1974 m_uiotombuf(struct uio *uio, int how, int len, int align, int flags) argument 2056 m_unshare(struct mbuf *m0, int how) argument [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcnetdb.cpp | 65 PRNetAddrValue how; local 68 case RCNetAddr::any: how = PR_IpAddrAny; break; 69 case RCNetAddr::loopback: how = PR_IpAddrLoopback; break; 72 (void)PR_InitializeNetAddr(how, port, &address);
|
H A D | rcfileio.cpp | 76 PRInt64 RCFileIO::Seek(PRInt64 offset, RCIO::Whence how) argument 79 switch (how)
|
H A D | rcnetio.cpp | 156 PRStatus RCNetStreamIO::Shutdown(RCIO::ShutdownHow how) argument 157 { return (fd->methods->shutdown)(fd, (PRIntn)how); }
|
/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | api_lib.c | 668 * @param how fully close or only shutdown one side? 672 netconn_close_shutdown(struct netconn *conn, u8_t how) argument 682 msg.msg.msg.sd.shut = how;
|
H A D | sockets.c | 141 /** counter of how many threads are waiting for this socket using select */ 1439 lwip_shutdown(int s, int how) argument 1445 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_shutdown(%d, how=%d)\n", s, how)); 1462 if (how == SHUT_RD) { 1464 } else if (how == SHUT_WR) { 1466 } else if(how == SHUT_RDWR) {
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2sock.c | 251 * If select timed out, we know how much time 626 _PR_MD_SHUTDOWN(PRFileDesc *fd, PRIntn how) argument 630 rv = shutdown(fd->secret->md.osfd, how);
|
H A D | os2io.c | 598 * immensely useful because I did not have a clue how to 663 _PR_MD_ACCESS(const char *name, PRAccessHow how) argument 666 switch (how) { 689 /* XXXMB - how to translate the "mode"??? */
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w95sock.c | 387 _PR_MD_SHUTDOWN(PRFileDesc *fd, PRIntn how) argument 391 rv = shutdown(fd->secret->md.osfd, how);
|
H A D | w16io.c | 576 _PR_MD_ACCESS(const char *name, PRIntn how) argument 581 if ( how & PR_ACCESS_WRITE_OK ) 583 if ( how & PR_ACCESS_READ_OK )
|
H A D | w16sock.c | 498 _PR_MD_SHUTDOWN(PRFileDesc *fd, PRIntn how) argument 502 rv = shutdown(fd->secret->md.osfd, how); 576 _PR_WaitForFD(PRInt32 osfd, PRUintn how, PRIntervalTime timeout) argument 591 pd->in_flags = how; 611 if (how == PR_POLL_READ) { 614 } else if (how == PR_POLL_WRITE) { 653 if (how == PR_POLL_READ) { 657 } else if (how == PR_POLL_WRITE) {
|
H A D | w95io.c | 976 _PR_MD_ACCESS(const char *name, PRAccessHow how) argument 979 switch (how) { 1001 /* XXXMB - how to translate the "mode"??? */
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | gzguts.h | 142 /* values for gz_state how */ 164 int how; /* 0: get header, 1: copy, 2: decompress */ member in struct:__anon17372
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
H A D | SysCalls.c | 469 to the argument offset according to the directive how. The argument 473 If how is SEEK_SET, the offset is set to offset bytes. 475 If how is SEEK_CUR, the offset is set to its current location 478 If how is SEEK_END, the offset is set to the size of the file 495 lseek (int fd, __off_t offset, int how) argument 503 if( how == SEEK_SET || how == SEEK_CUR || how == SEEK_END) { 507 CurPos = filp->f_ops->fo_lseek( filp, offset, how); 517 errno = EINVAL; // Invalid how argumen [all...] |
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | misc.c | 376 void *uma_zalloc_arg(uma_zone_t zone, void *args, int how) argument 380 NOREF(how); 383 LogFlowFunc(("ENTER: zone:%R[mzone], args:%p, how:%RX32\n", zone, args, how));
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/ |
H A D | bnet.c | 182 * If _MD_SELECT timed out, we know how much time 708 _MD_shutdown (PRFileDesc *fd, PRIntn how) argument 713 if (how == PR_SHUTDOWN_SEND) 715 else if (how == PR_SHUTDOWN_RCV) 717 else if (how == PR_SHUTDOWN_BOTH) { 723 rv = shutdown(fd->secret->md.osfd, how);
|
H A D | bfile.c | 482 _MD_access (const char *name, PRIntn how) argument 487 switch (how) {
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | lltest.c | 125 SetFailed( char *what, char *how ) 129 PR_fprintf(output, "%s: failed: %s\n", what, how ); 134 ResultFailed( char *what, char *how, PRInt64 expected, PRInt64 got) argument 138 SetFailed( what, how );
|
/vbox/src/libs/zlib-1.2.6/contrib/blast/ |
H A D | blast.c | 408 /* Example of how to use blast() */ 414 local unsigned inf(void *how, unsigned char **buf) argument 419 return fread(hold, 1, CHUNK, (FILE *)how); 422 local int outf(void *how, unsigned char *buf, unsigned len) argument 424 return fwrite(buf, 1, len, (FILE *)how) != len;
|
/vbox/src/VBox/Devices/Network/lwip/src/api/ |
H A D | sockets.c | 900 int lwip_shutdown(int s, int how) argument 902 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_shutdown(%d, how=%d)\n", s, how));
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prlayer.c | 146 PRFileDesc *fd, PRInt32 offset, PRSeekWhence how) 151 return (fd->lower->methods->seek)(fd->lower, offset, how); 155 PRFileDesc *fd, PRInt64 offset, PRSeekWhence how) 160 return (fd->lower->methods->seek64)(fd->lower, offset, how); 264 static PRStatus PR_CALLBACK pl_DefShutdown (PRFileDesc *fd, PRIntn how) argument 269 return (fd->lower->methods->shutdown)(fd->lower, how); 145 pl_DefSeek( PRFileDesc *fd, PRInt32 offset, PRSeekWhence how) argument 154 pl_DefSeek64( PRFileDesc *fd, PRInt64 offset, PRSeekWhence how) argument
|
H A D | prsocket.c | 568 static PRStatus PR_CALLBACK SocketShutdown(PRFileDesc *fd, PRIntn how) argument 572 result = _PR_MD_SHUTDOWN(fd, how); 1767 ** Find out how many fds are represented in the three lists. 1777 /* try to get an initial guesss at how much space we need */
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | macio.c | 466 PROffset32 _MD_LSeek(PRFileDesc *fd, PROffset32 offset, PRSeekWhence how) argument 473 switch (how) { 1468 // Hey! Before you delete this "hack" you should look at how it's being
|