Home | History | Annotate | Download | only in http

Lines Matching refs:out_buf

341 static int GenerateType1Msg(void** out_buf, uint32* out_len) {
346 *out_buf = malloc(*out_len);
347 if (!*out_buf)
353 void* cursor = *out_buf;
461 void** out_buf,
546 // Now that we have generated all of the strings, we can allocate out_buf.
550 *out_buf = malloc(*out_len);
551 if (!*out_buf)
593 void* cursor = *out_buf;
605 memcpy(static_cast<uint8*>(*out_buf) + offset, lm_resp, LM_RESP_LEN);
610 memcpy(static_cast<uint8*>(*out_buf) + offset, ntlm_resp, NTLM_RESP_LEN);
615 memcpy(static_cast<uint8*>(*out_buf) + offset, domain_ptr, domain_len);
620 memcpy(static_cast<uint8*>(*out_buf) + offset, user_ptr, user_len);
625 memcpy(static_cast<uint8*>(*out_buf) + offset, host_ptr, host_len);