Searched refs:LZ4F_getErrorName (Results 1 – 6 of 6) sorted by relevance
/third_party/lz4/tests/ |
D | checkFrame.c | 155 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()
|
D | frametest.c | 169 #define CHECK_V(v,f) v = f; if (LZ4F_isError(v)) { fprintf(stderr, "%s \n", LZ4F_getErrorName(v)); … 312 LZ4F_getErrorName(fiError)); in basicTests() 315 DISPLAYLEVEL(3, " correctly failed : %s \n", LZ4F_getErrorName(fiError)); in basicTests() 322 …LAYLEVEL(3, "incorrect error : %s != ERROR_frameHeader_incomplete \n", LZ4F_getErrorName(fiError)); in basicTests() 325 DISPLAYLEVEL(3, " correctly failed : %s \n", LZ4F_getErrorName(fiError)); in basicTests() 346 DISPLAYLEVEL(3, "error detected : %s \n", LZ4F_getErrorName(decompressError)); in basicTests() 509 DISPLAYLEVEL(3, "Error correctly detected : %s \n", LZ4F_getErrorName(cErr)); in basicTests() 996 …isError(cSize), "LZ4F_compressFrame failed : error %i (%s)", (int)cSize, LZ4F_getErrorName(cSize)); in fuzzerTests() 1023 (int)flushedSize, LZ4F_getErrorName(flushedSize)); in fuzzerTests() 1064 (int)flushedSize, LZ4F_getErrorName(flushedSize)); in fuzzerTests() [all …]
|
/third_party/lz4/examples/ |
D | frameCompress.c | 205 printf("Decompression error: %s\n", LZ4F_getErrorName(ret)); in decompress_file_internal() 262 printf("LZ4F_getFrameInfo error: %s\n", LZ4F_getErrorName(fires)); in decompress_file_allocDst() 296 printf("LZ4F_dctx creation error: %s\n", LZ4F_getErrorName(dctxStatus)); in decompress_file()
|
/third_party/lz4/programs/ |
D | lz4io.c | 618 …) EXM_THROW(30, "Allocation error : can't create LZ4F context : %s", LZ4F_getErrorName(errorCode)); in LZ4IO_createCResources() 641 …de)) EXM_THROW(38, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode));… in LZ4IO_freeCResources() 697 EXM_THROW(31, "Compression failed : %s", LZ4F_getErrorName(cSize)); in LZ4IO_compressFilename_extRess() 713 …or(headerSize)) EXM_THROW(33, "File header generation failed : %s", LZ4F_getErrorName(headerSize)); in LZ4IO_compressFilename_extRess() 722 EXM_THROW(35, "Compression failed : %s", LZ4F_getErrorName(outSize)); in LZ4IO_compressFilename_extRess() 740 EXM_THROW(38, "End of frame error : %s", LZ4F_getErrorName(endSize)); in LZ4IO_compressFilename_extRess() 1026 …if (LZ4F_isError(errorCode)) EXM_THROW(60, "Can't create LZ4F context : %s", LZ4F_getErrorName(err… in LZ4IO_createDResources() 1044 …ode)) EXM_THROW(69, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode)); in LZ4IO_freeDResources() 1065 … if (LZ4F_isError(nextToLoad)) EXM_THROW(62, "Header error : %s", LZ4F_getErrorName(nextToLoad)); in LZ4IO_decompressLZ4F() 1084 …LZ4F_isError(nextToLoad)) EXM_THROW(66, "Decompression error : %s", LZ4F_getErrorName(nextToLoad)); in LZ4IO_decompressLZ4F()
|
/third_party/lz4/lib/ |
D | lz4frame.h | 106 LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; …
|
D | lz4frame.c | 254 const char* LZ4F_getErrorName(LZ4F_errorCode_t code) in LZ4F_getErrorName() function
|