Lines Matching refs:br
609 BrotliDecoderState *br; /* State structure for brotli. */ member
656 bp->br = BrotliDecoderCreateInstance(NULL, NULL, NULL); in brotli_do_init()
657 return bp->br ? CURLE_OK : CURLE_OUT_OF_MEMORY; in brotli_do_init()
675 if(!bp->br) in brotli_do_write()
686 r = BrotliDecoderDecompressStream(bp->br, in brotli_do_write()
697 BrotliDecoderDestroyInstance(bp->br); in brotli_do_write()
698 bp->br = NULL; in brotli_do_write()
703 result = brotli_map_error(BrotliDecoderGetErrorCode(bp->br)); in brotli_do_write()
718 if(bp->br) { in brotli_do_close()
719 BrotliDecoderDestroyInstance(bp->br); in brotli_do_close()
720 bp->br = NULL; in brotli_do_close()