HomeSort by: relevance | last modified time | path
    Searched defs:ERROR (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/lib/libc/arch/sparc/
SYS.h 58 * ERROR branches to cerror.
73 #define ERROR() CALL(CERROR)
86 ERROR(); \
104 ERROR()
  /src/lib/libc/arch/sparc64/
SYS.h 51 * ERROR branches to cerror. This is done with a macro so that I can
69 #define ERROR() JUMP(__cerror)
76 ENTRY(x); mov _CAT(SYS_,y),%g1; t ST_SYSCALL; bcc 1f; nop; ERROR(); 1:
88 t ST_SYSCALL; ERROR()
95 t ST_SYSCALL; ERROR()
  /src/tools/m4/bootstrap/
parser.h 2 #define ERROR 258
parser.c 52 #define ERROR 258
254 0,0,0,0,0,0,0,0,0,0,0,0,0,"NUMBER","ERROR","LOR","LAND","EQ","NE","LE","GE",
417 yyerror("syntax error");
432 printf("%sdebug: state %d, error recovery shifting\
447 printf("%sdebug: error recovery discarding state %d\n",
465 printf("%sdebug: state %d, error recovery discards token %d (%s)\n",
  /src/external/gpl2/groff/dist/src/libs/libgroff/
error.cpp 1 /* $NetBSD: error.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */
27 #include "error.h"
31 enum error_type { WARNING, ERROR, FATAL };
58 fputs("fatal error:", stderr);
61 case ERROR:
89 void error(const char *format, function
94 do_error(ERROR, format, arg1, arg2, arg3);
121 ERROR, format, arg1, arg2, arg3);
  /src/external/gpl3/gdb.old/dist/sim/igen/
misc.h 51 /* Error appends a new line, warning and notify do not */
55 extern error_func error ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN;
60 #define ERROR(EXPRESSION, args...) \
65 error (&line, EXPRESSION "\n", ## args); \
74 error (&line, "assertion failed - %s\n", #EXPRESSION); \
  /src/external/gpl3/gdb/dist/sim/igen/
misc.h 51 /* Error appends a new line, warning and notify do not */
55 extern error_func error ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN;
60 #define ERROR(EXPRESSION, args...) \
65 error (&line, EXPRESSION "\n", ## args); \
74 error (&line, "assertion failed - %s\n", #EXPRESSION); \
  /src/external/bsd/zstd/dist/lib/common/
error_private.h 52 * Error codes handling
54 #undef ERROR /* already defined on Visual Studio */
55 #define ERROR(name) ZSTD_ERROR(name)
58 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); }
62 /* check and forward error code */
73 * Error Strings
113 * Return the specified error if the condition evaluates to true.
122 RAWLOG(3, "%s:%d: ERROR!: check %s failed, returning %s", \
123 __FILE__, __LINE__, ERR_QUOTE(cond), ERR_QUOTE(ERROR(err))); \
127 return ERROR(err);
    [all...]
threading.h 42 #undef ERROR /* reported already defined on VS 2015 (Rich Geldreich) */
44 #undef ERROR
45 #define ERROR(name) ZSTD_ERROR(name)
  /src/sys/lib/libsa/
tftp.h 73 #define ERROR 05 /* error code */
79 short tu_code; /* error code */
82 char th_data[1]; /* data or error string */
91 * Error codes.
  /src/external/bsd/libbind/dist/tests/
res.h 54 * ERROR - one of the following types of errors:
63 #ifdef ERROR
64 #undef ERROR
70 #define ERROR -3
  /src/external/gpl2/dtc/dist/tests/
tests.h 39 #define ERROR(fmt, args...) fprintf(stderr, ERR fmt, ## args)
  /src/external/gpl2/groff/dist/src/preproc/html/
pushback.cpp 31 #include "error.h"
53 # define ERROR(X) (void)(fprintf(stderr, "%s:%d error %s\n", __FILE__, __LINE__, X) && \
98 * localexit - wraps exit with a return code to aid the ERROR macro.
145 ERROR("max push back stack exceeded, increase MAXPUSHBACKSTACK constant");
199 ERROR("assert failed");
209 ERROR("assert failed");
266 ERROR("assert failed");
  /src/include/arpa/
ftp.h 46 #define ERROR 5 /* permanent negative completion */
tftp.h 53 #define ERROR 05 /* error code */
60 short tu_code; /* error code */
63 char th_data[1]; /* data or error string */
72 * Error codes.
  /src/external/bsd/cron/dist/
env.c 131 ERROR /* Error */
160 while (state != ERROR && *c) {
177 state = ERROR;
203 state = ERROR;
  /src/external/bsd/elftosb/dist/common/
Logging.h 51 ERROR, //!< For fatal error messages.
  /src/sys/kern/
subr_tftproot.c 80 #define ERROR 05 /* error code */
86 short tu_code; /* error code */
89 char th_data[1]; /* data or error string */
128 int error = -1; local
168 if ((error = nfs_boot_init(nd, l)) != 0) {
170 __func__, __LINE__, error));
190 if ((error = tftproot_getfile(&trh, l)) != 0) {
192 __func__, __LINE__, error));
196 error = 0
214 int error = -1; local
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-log.h 51 # define ERROR(fmt, ...)
60 # define ERROR(fmt, ...) srp_log_error(fmt, ##__VA_ARGS__)
76 # define ERROR(fmt, ...) do { SRP_LOG_TIME; fprintf(stderr, "%s %s: " fmt "\n", srp_log_time_buf, __FUNCTION__, ##__VA_ARGS__); } while (0)
115 # define ERROR(format, ...) SRP_OS_LOG(global_os_log, LOG_TYPE_ERROR, format, ##__VA_ARGS__)
139 # define ERROR(fmt, ...) syslog(LOG_ERR, "%s: " fmt, __FUNCTION__, ##__VA_ARGS__)
171 * #define ERROR(format, ...) log_with_component_and_type(OS_LOG_DEFAULT, LOG_TYPE_ERROR, format, ##__VA_ARGS__)
178 * ERROR level log will be mapped to LOG_TYPE_ERROR in os_log.
184 * ERROR level log will be mapped to LOG_ERR in syslog.
408 * The corresponding text description for the given DNS question class if it is valid. Otherwise, an error string will be returned.
421 * The corresponding text description for the given DNS record type if it is valid. Otherwise, an error string will be returned
    [all...]
adv-resolve.c 30 #undef ERROR
31 #define ERROR(fmt, ...) os_log_error(adv_log, "%{public}s: " # fmt, __FUNCTION__, ##__VA_ARGS__)
194 ERROR("no memory for service state %{public}s", regtype);
201 ERROR("no memory for service_type %{public}s", regtype);
211 ERROR("no memory for state %{private}s . %{public}s", name, regtype);
216 ERROR("no memory for name %{private}s . %{public}s", name, regtype);
221 ERROR("no memory for service type %{private}s . %{public}s", name, regtype);
227 ERROR("no memory for domain %{private}s . %{public}s", name, domain);
380 ERROR("no memory for %zu subscribers", new_max);
405 advertising_proxy_error_type error = kDNSSDAdvertisingProxyStatus_NoError local
461 DNSServiceErrorType error = DNSServiceBrowse(&service->null_browse_ref, 0, kDNSServiceInterfaceIndexAny, local
512 advertising_proxy_error_type error = kDNSSDAdvertisingProxyStatus_NoError; local
568 DNSServiceErrorType error = DNSServiceResolve(&local_instance->resolve_ref, 0, kDNSServiceInterfaceIndexAny, local
    [all...]
  /src/external/bsd/zstd/dist/contrib/seekable_format/
zstdseek_compress.c 26 #undef ERROR
27 #define ERROR(name) ((size_t)-ZSTD_error_##name)
72 if (fl->entries == NULL) return ERROR(memory_allocation);
149 return ERROR(frameParameter_unsupported);
173 return ERROR(frameIndex_tooLarge);
182 if (newEntries == NULL) return ERROR(memory_allocation);
349 if (fl->seekTablePos != seekTableLen) return ERROR(GENERIC);
  /src/external/gpl3/gdb.old/dist/libiberty/testsuite/
test-pexecute.c 87 error Exit error
96 static void error (int, const char *);
104 /* Print a fatal error and exit. LINE is the line number where we
105 detected the error, ERRMSG is the error message to print, and ERR
120 /* Print an error message and bump the error count. LINE is the line
121 number where we detected the error, ERRMSG is the error t
125 error (int line, const char *errmsg) function
    [all...]
  /src/external/lgpl3/gmp/dist/demos/expr/
expr.c 64 /* All the error strings are just for diagnostic traces. Only the error
66 #define ERROR(str,code) \
216 ERROR ("end of string expecting a variable",
220 ERROR ("bad variable name", MPEXPR_RESULT_BAD_VARIABLE);
257 ERROR ("NULL variable", MPEXPR_RESULT_BAD_VARIABLE);
266 ERROR ("no token matched", MPEXPR_RESULT_PARSE_ERROR);
332 ERROR ("operand doesn't fit ulong", MPEXPR_RESULT_NOT_UI); \
341 ERROR ("", MPEXPR_RESULT_PARSE_ERROR); \
416 ERROR ("expected a prefix operator", MPEXPR_RESULT_PARSE_ERROR)
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/testsuite/
test-pexecute.c 87 error Exit error
96 static void error (int, const char *);
104 /* Print a fatal error and exit. LINE is the line number where we
105 detected the error, ERRMSG is the error message to print, and ERR
120 /* Print an error message and bump the error count. LINE is the line
121 number where we detected the error, ERRMSG is the error t
125 error (int line, const char *errmsg) function
    [all...]
  /src/lib/libc/db/hash/
hash.c 86 #define ERROR (-1)
253 return (ERROR);
267 return (ERROR);
338 * the table and set errno, so we just pass the error information along.
340 * Returns 0 on No Error
437 return (ERROR);
446 * -1 ERROR
455 return (ERROR);
459 return (ERROR);
465 return (ERROR);
    [all...]

Completed in 25 milliseconds

1 2 3