HomeSort by relevance Sort by last modified time
    Searched full:estream (Results 1 - 1 of 1) sorted by null

  /bootable/recovery/applypatch/
bspatch.c 176 bz_stream estream; local
177 estream.next_in = patch->data + patch_offset + 32 + ctrl_len + data_len;
178 estream.avail_in = patch->size - (patch_offset + 32 + ctrl_len + data_len);
179 estream.bzalloc = NULL;
180 estream.bzfree = NULL;
181 estream.opaque = NULL;
182 if ((bzerr = BZ2_bzDecompressInit(&estream, 0, 0)) != BZ_OK) {
238 if (FillBuffer(*new_data + newpos, ctrl[1], &estream) != 0) {
250 BZ2_bzDecompressEnd(&estream);

Completed in 643 milliseconds