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

/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp1096 LPWSABUF paMsg = (LPWSABUF)RTMemTmpAllocZ(pSgBuf->cSegs * sizeof(WSABUF)); local
1097 if (paMsg)
1101 paMsg[i].buf = (char *)pSgBuf->paSegs[i].pvSeg;
1102 paMsg[i].len = (u_long)pSgBuf->paSegs[i].cbSeg;
1106 int hrc = WSASend(pThis->hNative, paMsg, pSgBuf->cSegs, &dwSent,
1114 RTMemTmpFree(paMsg);
1122 struct iovec *paMsg = (struct iovec *)RTMemTmpAllocZ(pSgBuf->cSegs * sizeof(struct iovec)); local
1123 if (paMsg)
1127 paMsg[i].iov_base = pSgBuf->paSegs[i].pvSeg;
1128 paMsg[
1308 LPWSABUF paMsg = NULL; local
1327 struct iovec *paMsg = NULL; local
[all...]

Completed in 38 milliseconds