HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 726 - 750 of 3032) sorted by null

<<21222324252627282930>>

  /external/iptables/extensions/
libip6t_SNAT.c 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
89 error = strchr(colon+1, ':');
90 if (error)
libipt_DNAT.c 70 char *arg, *colon, *dash, *error; local
93 error = strchr(colon+1, ':');
94 if (error)
libipt_SNAT.c 70 char *arg, *colon, *dash, *error; local
93 error = strchr(colon+1, ':');
94 if (error)
  /external/jdiff/src/jdiff/
CommentsHandler.java 66 System.out.println("Error: no identifier found in the comments XML file.");
93 System.out.println("Error: unknown element type: " + localName);
194 public void error(SAXParseException e) { method in class:CommentsHandler
195 System.out.println("Error (" + e.getLineNumber() + "): parsing XML comments file:" + e);
201 System.out.println("Fatal Error (" + e.getLineNumber() + "): parsing XML comments file:" + e);
  /external/jetty/src/java/org/eclipse/jetty/util/log/
JettyAwareLogger.java 34 private static final int ERROR = org.slf4j.spi.LocationAwareLogger.ERROR_INT;
499 * @see org.slf4j.Logger#error(java.lang.String)
501 public void error(String msg) method in class:JettyAwareLogger
503 log(null, ERROR, msg, null, null);
508 * @see org.slf4j.Logger#error(java.lang.String, java.lang.Object)
510 public void error(String format, Object arg) method in class:JettyAwareLogger
512 log(null, ERROR, format, new Object[]{arg}, null);
517 * @see org.slf4j.Logger#error(java.lang.String, java.lang.Object, java.lang.Object)
519 public void error(String format, Object arg1, Object arg2) method in class:JettyAwareLogger
521 log(null, ERROR, format, new Object[]{arg1,arg2}, null)
528 public void error(String format, Object[] argArray) method in class:JettyAwareLogger
537 public void error(String msg, Throwable t) method in class:JettyAwareLogger
555 public void error(Marker marker, String msg) method in class:JettyAwareLogger
564 public void error(Marker marker, String format, Object arg) method in class:JettyAwareLogger
573 public void error(Marker marker, String format, Object arg1, Object arg2) method in class:JettyAwareLogger
582 public void error(Marker marker, String format, Object[] argArray) method in class:JettyAwareLogger
591 public void error(Marker marker, String msg, Throwable t) method in class:JettyAwareLogger
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 30 * (a developer error), an error is emitted to the error console and the logs
101 // Log a severe error and print it to stderr along with a stack trace.
102 String error = HtmlParserFactory.class.getName() + local
104 logger.severe(error);
105 System.err.println(error);
247 * <p>In the very unexpected case of the parsing failing (developer error),
297 * static initialized, which can only happen due to an error during
  /external/kernel-headers/original/uapi/linux/
dm-log-userspace.h 25 * User-space begins by setting up the communication link (error checking
66 * dm_ulog_request to the kernel - setting the 'error' field, filling the
86 * dm_ulog_request to the kernel - setting the 'error' field and clearing
105 * dm_ulog_request to the kernel - setting the 'error' field and
124 * dm_ulog_request to the kernel - setting the 'error' field and
143 * dm_ulog_request to the kernel - setting the 'error' field and
162 * dm_ulog_request to the kernel - setting the 'error' field appropriately.
180 * 1 (clean), setting 'data_size' and 'error' appropriately.
218 * dm_ulog_request to the kernel - setting the 'error' field and clearing
237 * dm_ulog_request to the kernel - setting the 'error' field and clearin
421 int32_t error; \/* Used to report back processing errors *\/ member in struct:dm_ulog_request
    [all...]
nbd.h 71 * it has completed an I/O request (or an error occurs).
75 __be32 error; /* 0 = ok, else error */ member in struct:nbd_reply
  /external/kernel-headers/original/uapi/misc/
cxl.h 76 __u64 error; member in struct:cxl_event_afu_error
  /external/libnl/include/netlink/
netlink-kernel.h 155 * The message signals an error and the payload contains a nlmsgerr
179 * Netlink error message
184 /** Error code (errno number) */
185 int error; member in struct:nlmsgerr
187 /** Original netlink message causing the error */
  /external/libopus/celt/tests/
test_unit_mathops.c 157 float error = fabs((1.442695040888963387*log(x))-celt_log2(x)); local
158 if (error>0.0009)
160 fprintf (stderr, "celt_log2 failed: fabs((1.442695040888963387*log(x))-celt_log2(x))>0.001 (x = %f, error = %f)\n", x,error);
171 float error = fabs(x-(1.442695040888963387*log(celt_exp2(x)))); local
172 if (error>0.0002)
174 fprintf (stderr, "celt_exp2 failed: fabs(x-(1.442695040888963387*log(celt_exp2(x))))>0.0005 (x = %f, error = %f)\n", x,error);
185 float error = fabs(x-(celt_log2(celt_exp2(x)))); local
186 if (error>0.001
199 float error = fabs((1.442695040888963387*log(x\/16384.0))-celt_log2(x)\/1024.0); local
228 float error = fabs(x-0.25*celt_exp2(celt_log2(x)))\/16384; local
    [all...]
  /external/libpcap/tests/
filtertest.c 54 static void error(const char *, ...)
80 error("can't open %s: %s", fname, pcap_strerror(errno));
83 error("can't stat %s: %s", fname, pcap_strerror(errno));
87 error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1,
91 error("read %s: %s", fname, pcap_strerror(errno));
93 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
108 error(const char *fmt, ...) function
145 error("copy_argv: malloc");
209 error("invalid netmask %s", optarg);
220 error("invalid snaplen %s", optarg)
    [all...]
selpolltest.c 44 static void error(const char *, ...);
118 error("%s", ebuf);
123 error("%s", ebuf);
134 error("%s", pcap_geterr(pd));
137 error("%s", pcap_geterr(pd));
139 error("pcap_get_selectable_fd() fails");
142 error("pcap_setnonblock failed: %s", ebuf);
165 printf("Select returns error (%s)\n",
202 printf("Poll returns error (%s)\n",
257 * Error. Report it
284 error(const char *fmt, ...) function
    [all...]
valgrindtest.c 52 #error "Unknown platform or platform that doesn't support Valgrind"
85 static void error(const char *, ...)
113 error("can't open %s: %s", fname, pcap_strerror(errno));
116 error("can't stat %s: %s", fname, pcap_strerror(errno));
120 error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1,
124 error("read %s: %s", fname, pcap_strerror(errno));
126 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
141 error(const char *fmt, ...) function
195 error("copy_argv: malloc");
276 error("couldn't find interface to use: %s"
    [all...]
  /external/libvncserver/webclients/novnc/include/web-socket-js/
web_socket.js 11 if (!console || !console.log || !console.error) {
12 console = {log: function(){ }, error: function(){ }};
16 console.error("Flash Player >= 10.0.0 is required.");
20 console.error(
147 if (flashEvent.type == "open" || flashEvent.type == "error") {
217 console.error("[WebSocket] set WEB_SOCKET_SWF_LOCATION to location of WebSocketMain.swf");
253 console.error("[WebSocket] swfobject.embedSWF failed");
290 console.error(e);
303 console.error(decodeURIComponent(message));
  /external/libvpx/libvpx/test/
fdct8x8_test.cc 86 << "Error: 8x8 FDCT/FHT has a sign bias > "
115 << "Error: 4x4 FDCT/FHT has a sign bias > "
160 const int error = diff * diff; local
161 if (max_error < error)
162 max_error = error;
163 total_error += error;
168 << "Error: 8x8 FDCT/IDCT or FHT/IHT has an individual"
169 << " roundtrip error > 1";
172 << "Error: 8x8 FDCT/IDCT or FHT/IHT has average roundtrip "
173 << "error > 1/5 per block"
214 const int error = diff * diff; local
    [all...]
  /external/libxml2/include/libxml/
valid.h 33 * @ctx: usually an xmlValidCtxtPtr to a validity error context,
39 * Callback called when a validity error is found. This is a message
48 * @ctx: usually an xmlValidCtxtPtr to a validity error context,
78 * An xmlValidCtxt is used for error reporting when validating.
84 xmlValidityErrorFunc error; /* the callback in case of errors */ member in struct:_xmlValidCtxt
  /external/libxml2/python/
drv_libxml2.py 13 - Error callbacks are not exactly synchronous, they tend
76 "import error was: %s" % sys.exc_info()[1]) namespace
114 # error messages accumulator
131 # we consider that the last error reported
136 self._err_handler.error(exception)
183 break # fatal parse error
  /external/lldb/include/lldb/Interpreter/
Options.h 44 /// Error Args::ParseOptions (Options &);
67 /// virtual Error
70 /// Error error;
78 /// error.SetErrorStringWithFormat("unrecognized short option %c", option_val);
82 /// return error;
182 // Option::OptionParsingStarting() like they did before. This was error
187 Error
205 virtual Error
344 virtual Error
349 Error error; local
385 Error error; local
    [all...]
  /external/lldb/source/Commands/
CommandObjectArgs.cpp 54 Error
57 Error error; local
64 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
68 return error;
CommandObjectExpression.cpp 58 { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, or raises a signal. Note, unlike gdb hitting a breakpoint is controlled by another option (-i)."},
68 Error
73 Error error; local
82 // error.SetErrorStringWithFormat("invalid language option argument '%s'", option_arg);
92 error.SetErrorStringWithFormat("invalid all-threads value setting: \"%s\"", option_arg);
105 error.SetErrorStringWithFormat("could not convert \"%s\" to a boolean value.", option_arg);
116 error.SetErrorStringWithFormat ("invalid timeout setting \"%s\"", option_arg);
127 error.SetErrorStringWithFormat("could not convert \"%s\" to a boolean value.", option_arg);
131 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option)
    [all...]
CommandObjectLog.cpp 133 virtual Error
136 Error error; local
151 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
155 return error;
  /external/lldb/source/Core/
Communication.cpp 82 Communication::Connect (const char *url, Error *error_ptr)
97 Communication::Disconnect (Error *error_ptr)
136 Communication::Read (void *dst, size_t dst_len, uint32_t timeout_usec, ConnectionStatus &status, Error *error_ptr)
207 Communication::Write (const void *src, size_t src_len, ConnectionStatus &status, Error *error_ptr)
230 Communication::StartReadThread (Error *error_ptr)
253 Communication::StopReadThread (Error *error_ptr)
322 Error *error_ptr)
348 Error error; local
353 size_t bytes_read = comm->ReadFromConnection (buf, sizeof(buf), 5 * TimeValue::MicroSecPerSec, status, &error);
    [all...]
  /external/lldb/source/DataFormatters/
Cocoa.cpp 15 #include "lldb/Core/Error.h"
201 Error error; local
202 port_number = process_sp->ReadUnsignedIntegerFromMemory(offset+valobj_addr, 4, 0, error);
203 if (error.Success())
248 Error error; local
249 uint32_t mode = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr+ptr_size, 4, 0, error);
250 if (error.Fail())
264 count = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr+3*ptr_size, ptr_size, 0, error);
352 Error error; local
526 Error error; local
535 Error error; local
    [all...]
LibCxxMap.cpp 15 #include "lldb/Core/Error.h"
69 error () function in class:MapEntry
164 if (left.error())
188 if (right.error())
222 if (node.error())
277 Error error; local
278 deref = m_root_node->Dereference(error);
279 if (!deref || error.Fail())
327 Error error local
    [all...]

Completed in 201 milliseconds

<<21222324252627282930>>