| /src/external/bsd/zstd/dist/lib/deprecated/ |
| zbuff_common.c | 23 unsigned ZBUFF_isError(size_t errorCode) { return ERR_isError(errorCode); } 26 const char* ZBUFF_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
|
| zbuff.h | 163 ZBUFF_DEPRECATED("use ZSTD_isError") unsigned ZBUFF_isError(size_t errorCode); 164 ZBUFF_DEPRECATED("use ZSTD_getErrorName") const char* ZBUFF_getErrorName(size_t errorCode);
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/tests/ |
| change-text-record.c | 53 test_change_text_record_callback(DNSServiceRef sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 60 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 63 if (errorCode != kDNSServiceErr_NoError) { 65 TEST_FAIL_STATUS(state, "text record update failed: srp_client_register callback returned %d", errorCode); 67 TEST_FAIL_STATUS(state, "initial registration failed: srp_client_register callback returned %d", errorCode);
|
| lease-expiry.c | 57 test_lease_expiry_callback(DNSServiceRef sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 63 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 66 if (errorCode != kDNSServiceErr_NoError) { 67 TEST_FAIL_STATUS(state, "registration failed: srp_client_register callback returned %d", errorCode);
|
| lease-renewal.c | 56 test_lease_renewal_callback(DNSServiceRef sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 62 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 65 if (errorCode != kDNSServiceErr_NoError) { 66 TEST_FAIL_STATUS(state, "registration failed: srp_client_register callback returned %d", errorCode);
|
| listen-longevity.c | 72 test_listen_longevity_callback(DNSServiceRef sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 79 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 82 if (errorCode != kDNSServiceErr_NoError) { 84 TEST_FAIL_STATUS(state, "text record update failed: srp_client_register callback returned %d", errorCode); 86 TEST_FAIL_STATUS(state, "initial registration failed: srp_client_register callback returned %d", errorCode);
|
| srpl-update-after-remove.c | 184 test_srpl_update_after_remove_callback(DNSServiceRef UNUSED sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 191 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 194 if (errorCode != kDNSServiceErr_NoError) { 195 if (remove_host && errorCode == kDNSServiceErr_NoSuchRecord) { 198 TEST_FAIL_STATUS(state, "registration failed: srp_client_register callback returned %d", errorCode);
|
| srpl-lease-time.c | 159 test_srpl_lease_time_callback(DNSServiceRef sdref, DNSServiceFlags UNUSED flags, DNSServiceErrorType errorCode, 166 INFO("Register Reply for %s . %s: %d", name, regtype, errorCode); 169 if (errorCode != kDNSServiceErr_NoError) { 170 TEST_FAIL_STATUS(state, "registration failed: srp_client_register callback returned %d", errorCode);
|
| /src/external/bsd/zstd/dist/lib/legacy/ |
| zstd_v04.h | 33 or an errorCode if it fails (which can be tested using ZSTDv01_isError()) 122 unsigned ZBUFFv04_isError(size_t errorCode); 123 const char* ZBUFFv04_getErrorName(size_t errorCode);
|
| zstd_v01.c | 604 * If srcSize is too small, the function will return an errorCode; 789 size_t errorCode; 792 errorCode = FSE_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ 793 if (FSE_isError(errorCode)) return errorCode; 867 size_t errorCode; 872 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); 873 if (FSE_isError(errorCode)) return errorCode; 874 if (errorCode >= cSrcSize) return (size_t)-FSE_ERROR_srcSize_wrong; /* too small input size * [all...] |
| zstd_v05.h | 32 or an errorCode if it fails (which can be tested using ZSTDv05_isError()) */ 63 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx); /*!< @return : errorCode */ 140 unsigned ZBUFFv05_isError(size_t errorCode); 141 const char* ZBUFFv05_getErrorName(size_t errorCode);
|
| zstd_v07.h | 48 or an errorCode if it fails (which can be tested using ZSTDv07_isError()) */ 76 ZSTDLIBv07_API size_t ZSTDv07_freeDCtx(ZSTDv07_DCtx* dctx); /*!< @return : errorCode */ 168 ZSTDLIBv07_API unsigned ZBUFFv07_isError(size_t errorCode); 169 ZSTDLIBv07_API const char* ZBUFFv07_getErrorName(size_t errorCode);
|
| zstd_v05.c | 292 errorCode, which can be tested using ZSTDv05_isError() 584 or an errorCode, which can be tested using FSEv05_isError() 599 or an errorCode, which can be tested using FSEv05_isError() */ 607 or an errorCode, which can be tested using FSEv05_isError() */ 732 * @result : size of stream (== srcSize) or an errorCode if a problem is detected 1385 size_t errorCode; 1388 errorCode = BITv05_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ 1389 if (FSEv05_isError(errorCode)) return errorCode; 1462 size_t errorCode; [all...] |
| zstd_v03.c | 323 * @result : size of stream (== srcSize) or an errorCode if a problem is detected 1289 size_t errorCode; 1292 errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ 1293 if (FSE_isError(errorCode)) return errorCode; 1367 size_t errorCode; 1372 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); 1373 if (FSE_isError(errorCode)) return errorCode; 1374 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size * [all...] |
| zstd_v06.h | 41 or an errorCode if it fails (which can be tested using ZSTDv06_isError()) */ 74 ZSTDLIBv06_API size_t ZSTDv06_freeDCtx(ZSTDv06_DCtx* dctx); /*!< @return : errorCode */ 152 ZSTDLIBv06_API unsigned ZBUFFv06_isError(size_t errorCode); 153 ZSTDLIBv06_API const char* ZBUFFv06_getErrorName(size_t errorCode);
|
| zstd_v06.c | 304 errorCode, which can be tested using ZSTDv06_isError() 652 or an errorCode, which can be tested using FSEv06_isError(). 664 return : 0, or an errorCode, which can be tested using FSEv06_isError() */ 671 or an errorCode, which can be tested using FSEv06_isError() */ 831 * @return : size of stream (== srcSize) or an errorCode if a problem is detected 1526 { size_t const errorCode = BITv06_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ 1527 if (FSEv06_isError(errorCode)) return errorCode; } 1612 { size_t const errorCode = FSEv06_buildDTable (dt, counting, maxSymbolValue, tableLog); 1613 if (FSEv06_isError(errorCode)) return errorCode; [all...] |
| zstd_v02.c | 321 * @result : size of stream (== srcSize) or an errorCode if a problem is detected 1289 size_t errorCode; 1292 errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ 1293 if (FSE_isError(errorCode)) return errorCode; 1367 size_t errorCode; 1372 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); 1373 if (FSE_isError(errorCode)) return errorCode; 1374 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size * [all...] |
| /src/external/mit/expat/dist/tests/ |
| common.h | 104 extern void _expect_failure(const char *text, enum XML_Error errorCode, 108 # define expect_failure(text, errorCode, errorMessage) \ 109 _expect_failure((text), (errorCode), (errorMessage), __FILE__, __LINE__)
|
| /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/ |
| DotZLib.cs | 92 /// <param name="errorCode">The zlib error code that caused the exception</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| DotZLib.cs | 92 /// <param name="errorCode">The zlib error code that caused the exception</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
|
| /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/ |
| DotZLib.cs | 92 /// <param name="errorCode">The zlib error code that caused the exception</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
|
| /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| DotZLib.cs | 92 /// <param name="errorCode">The zlib error code that caused the exception</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
|
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| DotZLib.cs | 92 /// <param name="errorCode">The zlib error code that caused the exception</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
|
| /src/external/mit/expat/dist/examples/ |
| element_declarations.c | 222 enum XML_Error errorCode = XML_GetErrorCode(parser); 223 if (errorCode == XML_ERROR_ABORTED) { 224 errorCode = XML_ERROR_NO_MEMORY; 228 XML_GetCurrentLineNumber(parser), XML_ErrorString(errorCode));
|
| /src/external/apache2/mDNSResponder/dist/Clients/ |
| dns-sd.c | 642 DNSServiceErrorType errorCode, const char *replyDomain, void *context) 652 EXIT_IF_LIBDISPATCH_FATAL_ERROR(errorCode); 657 if (errorCode) 658 printf("Error code %d\n", errorCode); 722 static void DNSSD_API zonedata_resolve(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, 739 if (errorCode) { printf("Error code %d\n", errorCode); return; } 786 static void DNSSD_API zonedata_browse(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, 793 EXIT_IF_LIBDISPATCH_FATAL_ERROR(errorCode); 796 if (errorCode) { printf("Error code %d\n", errorCode); return; [all...] |