Lines Matching refs:output_buffer

87     unsigned char *output_buffer;  member
250 unsigned char *out = data->output_buffer; in pl_base64_decode_buffer()
281 PR_ASSERT((PRUint32)(out - data->output_buffer + 3) <= data->output_buflen); in pl_base64_decode_buffer()
337 data->output_length = (PRUint32)(out - data->output_buffer); in pl_base64_decode_buffer()
370 data->output_buffer + data->output_length); in pl_base64_decode_flush()
384 data->output_buffer, in pl_base64_decode_flush()
467 unsigned char *output_buffer = data->output_buffer; in PL_UpdateBase64Decoder() local
469 if (output_buffer != NULL) in PL_UpdateBase64Decoder()
470 output_buffer = (unsigned char *)PR_Realloc(output_buffer, in PL_UpdateBase64Decoder()
473 output_buffer = (unsigned char *)PR_Malloc(need_length); in PL_UpdateBase64Decoder()
475 if (output_buffer == NULL) in PL_UpdateBase64Decoder()
478 data->output_buffer = output_buffer; in PL_UpdateBase64Decoder()
495 data->output_buffer, in PL_UpdateBase64Decoder()
525 if (data->output_buffer != NULL) in PL_DestroyBase64Decoder()
526 PR_Free(data->output_buffer); in PL_DestroyBase64Decoder()
549 unsigned char *output_buffer = NULL; in PL_Base64DecodeBuffer() local
574 output_buffer = dest; in PL_Base64DecodeBuffer()
576 output_buffer = (unsigned char *)PR_Malloc(need_length); in PL_Base64DecodeBuffer()
577 if (output_buffer == NULL) in PL_Base64DecodeBuffer()
587 data->output_buffer = output_buffer; in PL_Base64DecodeBuffer()
600 data->output_buffer = NULL; in PL_Base64DecodeBuffer()
608 return output_buffer; in PL_Base64DecodeBuffer()
612 if (dest == NULL && output_buffer != NULL) in PL_Base64DecodeBuffer()
613 PR_Free(output_buffer); in PL_Base64DecodeBuffer()