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

/vbox/src/VBox/HostServices/auth/directoryservice/
H A Ddirectoryservice.cpp218 tDataBufferPtr pAuthInBuf = dsDataBufferAllocate(pDirRef, sizeof(cLen) + cUserName + sizeof(cLen) + cPassword); local
219 if (pAuthInBuf)
222 pAuthInBuf->fBufferLength = 0;
225 memcpy(&pAuthInBuf->fBufferData[pAuthInBuf->fBufferLength], &cLen, sizeof(cLen));
226 pAuthInBuf->fBufferLength += sizeof(cLen);
228 memcpy(&pAuthInBuf->fBufferData[pAuthInBuf->fBufferLength], pszUsername, cUserName);
229 pAuthInBuf->fBufferLength += cUserName;
232 memcpy(&pAuthInBuf
[all...]

Completed in 42 milliseconds