Home
last modified time | relevance | path

Searched refs:LZ4F_getErrorName (Results 1 – 7 of 7) sorted by relevance

/third_party/lz4/examples/
DfileCompress.c52 printf("LZ4F_writeOpen error: %s\n", LZ4F_getErrorName(ret)); in compress_file()
72 printf("LZ4F_write: %s\n", LZ4F_getErrorName(ret)); in compress_file()
80 printf("LZ4F_writeClose: %s\n", LZ4F_getErrorName(ret)); in compress_file()
100 printf("LZ4F_readOpen error: %s\n", LZ4F_getErrorName(ret)); in decompress_file()
108 printf("LZ4F_read error: %s\n", LZ4F_getErrorName(ret)); in decompress_file()
126 printf("LZ4F_readClose: %s\n", LZ4F_getErrorName(ret)); in decompress_file()
182 printf("compression error: %s\n", LZ4F_getErrorName(ret)); in main()
207 printf("compression error: %s\n", LZ4F_getErrorName(ret)); in main()
DframeCompress.c235 printf("Decompression error: %s\n", LZ4F_getErrorName(ret)); in decompress_file_internal()
292 printf("LZ4F_getFrameInfo error: %s\n", LZ4F_getErrorName(fires)); in decompress_file_allocDst()
326 printf("LZ4F_dctx creation error: %s\n", LZ4F_getErrorName(dctxStatus)); in decompress_file()
/third_party/lz4/tests/
DcheckFrame.c155 LZ4F_getErrorName(nextToLoad)); in frameCheck()
164 …LZ4F_isError(nextToLoad)) EXM_THROW(24, "Decompression error : %s", LZ4F_getErrorName(nextToLoad)); in frameCheck()
180 …LZ4F_isError(nextToLoad)) EXM_THROW(24, "Decompression error : %s", LZ4F_getErrorName(nextToLoad)); in frameCheck()
Dframetest.c217 #define CHECK_V(v,f) v = f; if (LZ4F_isError(v)) { fprintf(stderr, "%s \n", LZ4F_getErrorName(v)); …
360 LZ4F_getErrorName(fiError)); in basicTests()
363 DISPLAYLEVEL(3, " correctly failed : %s \n", LZ4F_getErrorName(fiError)); in basicTests()
370 …LAYLEVEL(3, "incorrect error : %s != ERROR_frameHeader_incomplete \n", LZ4F_getErrorName(fiError)); in basicTests()
373 DISPLAYLEVEL(3, " correctly failed : %s \n", LZ4F_getErrorName(fiError)); in basicTests()
394 DISPLAYLEVEL(3, "error detected : %s \n", LZ4F_getErrorName(decompressError)); in basicTests()
557 DISPLAYLEVEL(3, "Error correctly detected : %s \n", LZ4F_getErrorName(cErr)); in basicTests()
1058 …isError(cSize), "LZ4F_compressFrame failed : error %i (%s)", (int)cSize, LZ4F_getErrorName(cSize)); in fuzzerTests()
1092 (int)flushedSize, LZ4F_getErrorName(flushedSize)); in fuzzerTests()
1101 (int)flushedSize, LZ4F_getErrorName(flushedSize)); in fuzzerTests()
[all …]
/third_party/lz4/programs/
Dlz4io.c630 …END_PROCESS(30, "Allocation error : can't create LZ4F context : %s", LZ4F_getErrorName(errorCode)); in LZ4IO_createCResources()
653 …)) END_PROCESS(35, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode));… in LZ4IO_freeCResources()
709 END_PROCESS(41, "Compression failed : %s", LZ4F_getErrorName(cSize)); in LZ4IO_compressFilename_extRess()
725 …(headerSize)) END_PROCESS(43, "File header generation failed : %s", LZ4F_getErrorName(headerSize)); in LZ4IO_compressFilename_extRess()
734 END_PROCESS(45, "Compression failed : %s", LZ4F_getErrorName(outSize)); in LZ4IO_compressFilename_extRess()
752 END_PROCESS(48, "End of frame error : %s", LZ4F_getErrorName(endSize)); in LZ4IO_compressFilename_extRess()
1042 …sError(errorCode)) END_PROCESS(60, "Can't create LZ4F context : %s", LZ4F_getErrorName(errorCode)); in LZ4IO_createDResources()
1060 …e)) END_PROCESS(69, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode)); in LZ4IO_freeDResources()
1090 END_PROCESS(62, "Header error : %s", LZ4F_getErrorName(nextToLoad)); in LZ4IO_decompressLZ4F()
1114 END_PROCESS(66, "Decompression error : %s", LZ4F_getErrorName(nextToLoad)); in LZ4IO_decompressLZ4F()
/third_party/lz4/lib/
Dlz4frame.h106 LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; …
Dlz4frame.c295 const char* LZ4F_getErrorName(LZ4F_errorCode_t code) in LZ4F_getErrorName() function