Lines Matching refs:aBuf
675 gss_buffer_t aBuf;
683 aBuf = (gss_buffer_t)malloc(sizeof (gss_buffer_desc));
684 if (!aBuf)
692 if (!(aBuf->value = (void*)malloc(len))) {
693 free(aBuf);
698 (void) memcpy(aBuf->value, srcBuf->value, srcBuf->length);
699 aBuf->length = srcBuf->length;
700 *destBuf = aBuf;
704 ((char *)aBuf->value)[aBuf->length] = '\0';