Searched refs:errc (Results 1 - 4 of 4) sorted by relevance

/fuchsia/zircon/system/ulib/blobfs/
H A Dlz4.cpp35 LZ4F_errorCode_t errc = LZ4F_createCompressionContext(&ctx_, LZ4F_VERSION); local
36 if (LZ4F_isError(errc)) {
84 LZ4F_errorCode_t errc = LZ4F_createDecompressionContext(&ctx, LZ4F_VERSION); local
85 if (LZ4F_isError(errc)) {
/fuchsia/zircon/system/host/fvm/container/
H A Dsparse.cpp18 LZ4F_errorCode_t errc = LZ4F_createCompressionContext(&cctx_, LZ4F_VERSION); local
19 if (LZ4F_isError(errc)) {
20 fprintf(stderr, "Could not create compression context: %s\n", LZ4F_getErrorName(errc));
55 LZ4F_errorCode_t errc = LZ4F_freeCompressionContext(cctx_); local
56 if (LZ4F_isError(errc)) {
57 fprintf(stderr, "Could not free compression context: %s\n", LZ4F_getErrorName(errc));
/fuchsia/zircon/system/uapp/lz4/
H A Dmain.c47 LZ4F_errorCode_t errc = LZ4F_createDecompressionContext(&dctx, LZ4F_VERSION); local
48 if (LZ4F_isError(errc)) {
49 fprintf(stderr, "could not initialize decompression: %s\n", LZ4F_getErrorName(errc));
/fuchsia/zircon/system/ulib/fvm/
H A Dfvm-lz4.cpp67 LZ4F_errorCode_t errc = LZ4F_createDecompressionContext(&dctx_, LZ4F_VERSION); local
68 if (LZ4F_isError(errc)) {
70 LZ4F_getErrorName(errc));

Completed in 94 milliseconds