Searched refs:outbuf (Results 1 – 6 of 6) sorted by relevance
/xen/xen/common/ |
A D | decompress.c | 11 int __init decompress(void *inbuf, unsigned int len, void *outbuf) in decompress() argument 16 return gunzip(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress() 20 return bunzip2(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress() 23 return unxz(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress() 26 return unlzma(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress() 29 return unlzo(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress() 32 return unlz4(inbuf, len, NULL, NULL, outbuf, NULL, error); in decompress()
|
A D | bunzip2.c | 512 static int INIT read_bunzip(struct bunzip_data *bd, unsigned char *outbuf, int len) in read_bunzip() argument 544 outbuf[gotcount++] = xcurrent; in read_bunzip() 671 unsigned char *outbuf, in bunzip2() argument 680 outbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2() 682 if (!outbuf) { in bunzip2() 698 i = read_bunzip(bd, outbuf, BZIP2_IOBUF_SIZE); in bunzip2() 702 outbuf += i; in bunzip2() 704 if (i != flush(outbuf, i)) { in bunzip2() 731 free(outbuf); in bunzip2()
|
/xen/tools/libvchan/ |
A D | node-select.c | 51 char outbuf[BUFSIZE]; variable 77 ret = write(1, outbuf, outsiz); in stdout_wr() 82 memmove(outbuf, outbuf + ret, outsiz); in stdout_wr() 170 ret = libxenvchan_read(ctrl, outbuf + outsiz, BUFSIZE - outsiz); in main()
|
A D | vchan-socket-proxy.c | 87 char outbuf[BUFSIZE]; variable 121 ret = write(output_fd, outbuf, outsiz); in socket_wr() 126 memmove(outbuf, outbuf + ret, outsiz); in socket_wr() 365 ret = libxenvchan_read(state->ctrl, outbuf + outsiz, in data_loop() 370 fprintf(stderr, "from-vchan: %.*s\n", ret, outbuf + outsiz); in data_loop()
|
/xen/xen/include/xen/ |
A D | decompress.h | 7 unsigned char *outbuf, unsigned int *posp, 36 int decompress(void *inbuf, unsigned int len, void *outbuf);
|
/xen/tools/libxc/ |
A D | xc_dom_decompress_unsafe.h | 6 unsigned char *outbuf, unsigned int *posp,
|
Completed in 8 milliseconds