Searched defs:bufp (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/util/
H A Ddevnull.c43 crDevnullSend( CRConnection *conn, void **bufp, argument
47 if (bufp)
55 crDevnullFree( conn, *bufp );
58 (void) bufp;
H A Dfilenet.c140 crFileSend( CRConnection *conn, void **bufp, const void *start, unsigned int len ) argument
145 if ( bufp == NULL )
159 file_buffer = (CRFileBuffer *)(*bufp) - 1;
166 * the length field, even when start == *bufp. */
181 *bufp = NULL;
H A Dudptcpip.c240 static void crUDPTCPIPSend( CRConnection *conn, void **bufp, argument
261 if ( bufp == NULL )
273 udptcpip_buffer = (CRTCPIPBuffer *)(*bufp) - 1;
280 * the length field, even when start == *bufp. */
303 * use it any more. Setting bufp to NULL will make sure the caller
306 *bufp = NULL;
313 static void crUDPTCPIPBarf( CRConnection *conn, void **bufp, argument
328 if (!bufp) {
330 crUDPTCPIPSend( conn, bufp, start, len);
335 crUDPTCPIPSend( conn, bufp, star
[all...]
H A Dnet.c772 * \param bufp if non-null the buffer was provided by the network layer
779 crNetSend(CRConnection *conn, void **bufp, const void *start, unsigned int len) argument
785 if ( bufp ) {
787 * buffer pointed to by *bufp.
789 CRASSERT( start >= *bufp );
791 (unsigned char *) *bufp + conn->buffer_size );
805 conn->Send( conn, bufp, start, len );
814 void crNetBarf( CRConnection *conn, void **bufp, argument
821 if ( bufp ) {
822 CRASSERT( start >= *bufp );
[all...]
H A Dtcpip.c631 crTCPIPSend( CRConnection *conn, void **bufp, argument
637 if (!bufp) {
655 tcpip_buffer = (CRTCPIPBuffer *)(*bufp) - 1;
662 * the length field, even when start == *bufp.
678 * use it any more. Setting bufp to NULL will make sure the caller
681 *bufp = NULL;
H A Dvboxhgsmi.c916 static void crVBoxHGSMISend(CRConnection *conn, void **bufp, argument
924 if (!bufp) /* We're sending a user-allocated buffer. */
945 pBuf = _crVBoxHGSMIBufFromMemPtr(*bufp);
961 _crVBoxHGSMIWriteExact(conn, pClient, pBuf, CRVBOXHGSMI_BUF_OFFSET(start, *bufp) + CRVBOXHGSMI_BUF_HDR_SIZE(), len);
966 _crVBoxHGSMIWriteReadExact(conn, pClient, pBuf, CRVBOXHGSMI_BUF_OFFSET(start, *bufp) + CRVBOXHGSMI_BUF_HDR_SIZE(), len, true);
972 * use it any more. Setting bufp to NULL will make sure the caller
975 *bufp = NULL;
H A Dvboxhgcm.c976 static void crVBoxHGCMSend(CRConnection *conn, void **bufp, argument
986 if (!bufp) /* We're sending a user-allocated buffer. */
1009 hgcm_buffer = (CRVBOXHGCMBUFFER *)(*bufp) - 1;
1034 * use it any more. Setting bufp to NULL will make sure the caller
1037 *bufp = NULL;
2090 static void crVBoxHGSMISend(CRConnection *conn, void **bufp, argument
2103 if (!bufp) /* We're sending a user-allocated buffer. */
2125 crVBoxHGCMSend(conn, bufp, start, len);
2133 hgcm_buffer = (CRVBOXHGCMBUFFER *) *bufp - 1;
2144 crVBoxHGCMSend(conn, bufp, star
[all...]
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsStringObsolete.cpp817 char *bufp = buf; local
845 *bufp++ = '-';
849 while ((*bufp++ = *nump++) != 0) {} /* nothing to execute */
854 *bufp++ = *nump++;
856 *bufp++ = '.';
860 *bufp++ = *nump++;
862 *bufp++ = 'e';
863 PR_snprintf(bufp, bufsz - (bufp - buf), "%+d", decpt-1);
867 *bufp
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprnetdb.c461 static char *Alloc(PRIntn amount, char **bufp, PRIntn *buflenp, PRIntn align) argument
463 char *buf = *bufp;
477 *bufp = buf + amount;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTextFormatter.cpp471 char * bufp = buf; local
521 *bufp++ = '-';
523 *bufp++ = '+';
527 while ((*bufp++ = *nump++)) { }
535 *bufp++ = *nump++;
537 *bufp++ = '.';
539 *bufp++ = *nump++;
543 *bufp++ = '0';
546 *bufp++ = exp;
547 PR_snprintf(bufp, bufs
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Ddtrace.c11738 void **bufp; local
11766 bufp = (void **)((uintptr_t)dp + difo[i].bufoffs);
11769 if (*bufp != NULL) {
11786 *bufp = kmem_alloc(subsec->dofs_size, KM_SLEEP);
11788 *bufp, subsec->dofs_size);

Completed in 130 milliseconds