Home | History | Annotate | Download | only in lib

Lines Matching defs:br

577   BrotliDecoderState *br;    /* State structure for brotli. */
629 bp->br = BrotliDecoderCreateInstance(NULL, NULL, NULL);
630 return bp->br? CURLE_OK: CURLE_OUT_OF_MEMORY;
645 if(!bp->br)
656 r = BrotliDecoderDecompressStream(bp->br,
667 BrotliDecoderDestroyInstance(bp->br);
668 bp->br = NULL;
673 result = brotli_map_error(BrotliDecoderGetErrorCode(bp->br));
688 if(bp->br) {
689 BrotliDecoderDestroyInstance(bp->br);
690 bp->br = NULL;
695 "br",