Searched defs:error (Results 1 - 25 of 199) sorted by relevance

12345678

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Makefiles/
H A DNmakeSubdirs.bat24 if ERRORLEVEL 1 goto error
34 :error label
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_error.c63 "Syntax error in type name", /* ECTF_SYNTAX */
83 ctf_errmsg(int error) argument
87 if (error >= ECTF_BASE && (error - ECTF_BASE) < _ctf_nerr)
88 str = _ctf_errlist[error - ECTF_BASE];
90 str = ctf_strerror(error);
92 return (str ? str : "Unknown error");
H A Dctf_util.c134 * Store the specified error code into errp if it is non-NULL, and then
138 ctf_set_open_errno(int *errp, int error) argument
141 *errp = error;
146 * Store the specified error code into the CTF container, and then return
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnection.h115 * process is ready to receive a client connection or an error occurs.
132 * terminated. If terminated due to an abnormal error, then the error will be
133 * described by the |error| parameter. If |error| is NS_OK, then it means the
136 IPC_METHOD_PRIVATE_(void) IPC_OnConnectionEnd(nsresult error); variable
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dwpp.h56 void (*error)( const char *file, int line, int col, const char *near, const char *msg, va_list ap ); member in struct:wpp_callbacks
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_error.c12 void crdlmWarning( int line, char *file, GLenum error, char *format, ... ) argument
23 switch (error) {
53 crWarning( "DLM error in %s, line %d: %s: %s\n",
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_error.c15 * Set the error handler callback
25 * OpenGL error.
27 void __PackError( int line, const char *file, GLenum error, const char *info) argument
32 pc->Error( line, file, error, info );
38 switch (error) {
68 crWarning( "GL error in packer: %s, line %d: %s: %s",
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dwpp.h56 void (*error)( const char *file, int line, int col, const char *near, const char *msg, va_list ap ); member in struct:wpp_callbacks
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dtstmem.py6 def error(msg, data): function
18 libxml2mod.xmlSetValidErrors(ctxt._o, error, error)
22 print "error doing DTD validation"
H A DpushSAX.py35 def error(self, msg): member in class:callback
37 log = log + "error: %s:" % (msg)
H A DpushSAXhtml.py35 def error(self, msg): member in class:callback
37 log = log + "error: %s:" % (msg)
52 reference = """startDocument:startElement html None:startElement body None:startElement foo {'url': 'tst'}:error: Tag foo invalid
H A Dsync.py35 def error(self, msg): member in class:callback
37 log = log + "error: %s:" % (msg)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcbase.cpp49 void RCBase::SetError(PRErrorCode error, PRInt32 oserror) argument
50 { PR_SetError(error, oserror); }
H A Drcfileio.h124 error = PR_StandardError enumerator in enum:__anon17205
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_dummy.c118 int error; local
122 error = 0;
126 error = 0;
130 error = EINVAL;
132 return (error);
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_error.c15 void crStateError( int line, const char *file, GLenum error, const char *format, ... ) argument
21 CRASSERT(error != GL_NO_ERROR);
23 if (g->error == GL_NO_ERROR)
24 g->error = error;
35 switch (error) {
65 crWarning( "OpenGL error in %s, line %d: %s: %s\n",
74 GLenum e = g->error;
83 g->error = GL_NO_ERROR;
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dlnkops.c28 int error = -ENOMEM; local
34 error = 0;
40 error = -EPROTO;
43 nd_set_link(nd, error ? ERR_PTR(error) : path);
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dplerror.c41 ** error numbers and print them to "syserr".
118 "<unused error code>",
130 PRErrorCode error = PR_GetError(); local
136 if ((error < PR_NSPR_ERROR_BASE) || (error >= lastError))
138 fd, " (%d)OUT OF RANGE, oserror = %d\n", error, oserror);
142 tags[error - PR_NSPR_ERROR_BASE], error, oserror);
/vbox/src/VBox/ValidationKit/testmanager/db/
H A Dgen-sql-comments.py34 sys.stderr.write('error: %s\n' % (sMsg,));
54 def error(self, sMsg): member in class:SqlDox
108 return self.error('Unknown tag: %s' % (sLine,));
196 sys.stderr.write('syntax error: expected exactly 1 argument, a psql file\n');
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/
H A Dpower.c22 upower_call_function (const gchar *function, gboolean default_result, GError **error) argument
36 error);
47 error);
73 * @error: return location for a #GError, or %NULL
80 lightdm_suspend (GError **error) argument
82 return upower_call_function ("Suspend", TRUE, error);
100 * @error: return location for a #GError, or %NULL
107 lightdm_hibernate (GError **error) argument
109 return upower_call_function ("Hibernate", TRUE, error);
113 ck_call_function (const gchar *function, gboolean default_result, GError **error) argument
172 lightdm_restart(GError **error) argument
199 lightdm_shutdown(GError **error) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dsupport.c68 /* error */
89 /* error */
177 void error(char *message,int line_no) function
179 void error(message,line_no)
/vbox/src/VBox/Devices/Network/slirp/
H A Dip_output.c123 int len, off, error = 0; local
203 error = -1;
211 error = -1;
232 error = -1;
321 if (error == 0)
335 if (error == 0)
341 LogFlowFunc(("LEAVE: %d\n", error));
342 return error;
347 LogFlowFunc(("LEAVE: %d\n", error));
348 return error;
[all...]
H A Dtcp_output.c96 int off, flags, error; local
408 /* error = ENOBUFS; */
409 error = 1;
479 /* error = ENOBUFS; */
480 error = 1;
664 error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route,
667 error = ip_output(pData, so, m);
671 error = ip_output(m, (struct mbuf *)0, &tp->t_inpcb->inp_route,
676 if (error)
680 if (error
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Deinfo.c41 uint32_t error; member in struct:einfo
89 printf ( "%08x\t%s\t%d\t%s\n", einfo->error,
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_error.c39 { EDT_CTF, "Unexpected libctf error" },
90 { EDT_ERRABORT, "Abort due to error" },
115 dtrace_errmsg(dtrace_hdl_t *dtp, int error) argument
120 if (error == EDT_COMPILER && dtp != NULL && dtp->dt_errmsg[0] != '\0')
122 else if (error == EDT_CTF && dtp != NULL && dtp->dt_ctferr != 0)
124 else if (error >= EDT_BASE && (error - EDT_BASE) < _dt_nerr) {
126 if (_dt_errlist[i].err == error)
131 str = strerror(error);
133 return (str ? str : "Unknown error");
[all...]

Completed in 123 milliseconds

12345678