Searched refs:LZ4F_errorCode_t (Results 1 - 8 of 8) sorted by relevance
/third_party/lz4/lib/ |
H A D | lz4file.h | 52 LZ4FLIB_STATIC_API LZ4F_errorCode_t LZ4F_readOpen(LZ4_readFile_t** lz4fRead, FILE* fp); 66 LZ4FLIB_STATIC_API LZ4F_errorCode_t LZ4F_readClose(LZ4_readFile_t* lz4fRead); 73 LZ4FLIB_STATIC_API LZ4F_errorCode_t LZ4F_writeOpen(LZ4_writeFile_t** lz4fWrite, FILE* fp, const LZ4F_preferences_t* prefsPtr); 87 LZ4FLIB_STATIC_API LZ4F_errorCode_t LZ4F_writeClose(LZ4_writeFile_t* lz4fWrite);
|
H A D | lz4frame.h | 103 typedef size_t LZ4F_errorCode_t; typedef 105 LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code); /**< tells when a function result is an error code */ 106 LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; for debugging */ 260 LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version); 261 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx); 379 LZ4FLIB_API LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** dctxPtr, unsigned version); 380 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
|
H A D | lz4file.c | 54 LZ4F_errorCode_t errCode; 57 LZ4F_errorCode_t LZ4F_readOpen(LZ4_readFile_t** lz4fRead, FILE* fp) in LZ4F_readOpen() 61 LZ4F_errorCode_t ret; in LZ4F_readOpen() 171 LZ4F_errorCode_t LZ4F_readClose(LZ4_readFile_t* lz4fRead) in LZ4F_readClose() 181 LZ4F_errorCode_t LZ4F_writeOpen(LZ4_writeFile_t** lz4fWrite, FILE* fp, const LZ4F_preferences_t* prefsPtr) in LZ4F_writeOpen() 286 LZ4F_errorCode_t LZ4F_writeClose(LZ4_writeFile_t* lz4fWrite) in LZ4F_writeClose() 288 LZ4F_errorCode_t ret = LZ4F_OK_NoError; in LZ4F_writeClose()
|
H A D | lz4frame.c | 290 unsigned LZ4F_isError(LZ4F_errorCode_t code) in LZ4F_isError() 292 return (code > (LZ4F_errorCode_t)(-LZ4F_ERROR_maxCode)); in LZ4F_isError() 295 const char* LZ4F_getErrorName(LZ4F_errorCode_t code) in LZ4F_getErrorName() 308 static LZ4F_errorCode_t LZ4F_returnErrorCode(LZ4F_errorCodes code) in LZ4F_returnErrorCode() 312 return (LZ4F_errorCode_t)-(ptrdiff_t)code; in LZ4F_returnErrorCode() 604 * If the result LZ4F_errorCode_t is not OK_NoError, there was an error during context creation. 607 LZ4F_errorCode_t 620 LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctxPtr) in LZ4F_freeCompressionContext() 1246 LZ4F_errorCode_t 1259 LZ4F_errorCode_t LZ4F_freeDecompressionContex [all...] |
/third_party/lz4/examples/ |
H A D | fileCompress.c | 38 LZ4F_errorCode_t ret = LZ4F_OK_NoError; in compress_file() 91 LZ4F_errorCode_t ret = LZ4F_OK_NoError; in decompress_file() 177 LZ4F_errorCode_t ret = compress_file(inpFp, outFp); in main() 201 LZ4F_errorCode_t ret = decompress_file(inpFp, outFp); in main()
|
/third_party/lz4/tests/ |
H A D | checkFrame.c | 130 LZ4F_errorCode_t nextToLoad = 0; in frameCheck()
|
H A D | frametest.c | 218 #define CHECK(f) { LZ4F_errorCode_t const CHECK_V(err_ , f); }
|
/third_party/lz4/programs/ |
H A D | lz4io.c | 629 LZ4F_errorCode_t const errorCode = LZ4F_createCompressionContext(&(ress.ctx), LZ4F_VERSION); in LZ4IO_createCResources() 652 { LZ4F_errorCode_t const errorCode = LZ4F_freeCompressionContext(ress.ctx); in LZ4IO_freeCResources() 1041 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&ress.dCtx, LZ4F_VERSION); in LZ4IO_createDResources() 1059 LZ4F_errorCode_t errorCode = LZ4F_freeDecompressionContext(ress.dCtx); in LZ4IO_freeDResources() 1073 LZ4F_errorCode_t nextToLoad; in LZ4IO_decompressLZ4F()
|
Completed in 12 milliseconds