HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 176 - 200 of 1832) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/ipsec-tools/src/racoon/
main.c 146 int error; local
190 errx(1, "something error happened "
210 error = cfparse();
211 if (error != 0)
217 if ((error = isakmp_cfg_resize_pool(ISAKMP_CFG_MAX_CNX)) != 0)
218 return error;
237 errx(1, "something error happened "
  /external/linux-tools-perf/util/
usage.c 29 report(" Error: ", err, params);
63 int error(const char *err, ...) function
  /external/openfst/src/include/fst/
icu.h 27 // the destructor will FSTERROR() an error message.
75 LOG(ERROR) << "UTF8StringToLabels: Invalid character found: " << c;
89 IcuErrorCode error; local
90 u_strToUTF8(c_str, 5, NULL, u_str.getTerminatedBuffer(), -1, error);
91 if (error.isFailure()) {
92 LOG(ERROR) << "LabelsToUTF8String: Bad encoding: "
93 << error.errorName();
  /external/openssh/openbsd-compat/
bindresvport.c 55 int error, af; local
95 error = -1;
100 error = bind(sd, sa, salen);
103 if (error == 0)
107 if ((error < 0) && !((errno == EADDRINUSE) || (errno == EINVAL)))
115 return (error);
strtonum.c 39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_error_c.h 25 error messages
35 /* This is a numeric value corresponding to the current error */
36 int error; member in struct:SDL_error
39 internationalized versions of the SDL error messages. If the key
41 used directly as an error message format string.
45 /* These are the arguments for the error functions */
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macos/
SDL_sysloadso.c 45 OSErr error; local
49 error = GetSharedLibrary(C2PStr(psofile), kCompiledCFragArch,
51 switch (error) {
66 loaderror = "Unknown Code Fragment Manager error";
  /external/qemu/distrib/sdl-1.2.15/test/
testplatform.c 20 int error = 0; local
26 ++error;
32 ++error;
38 ++error;
45 ++error;
52 if ( verbose && !error )
55 return( error ? 1 : 0 );
60 int error = 0; local
91 ++error;
100 ++error;
    [all...]
  /external/qemu/slirp/
ip_output.c 61 int len, off, error = 0; local
89 * error = ENOBUFS;
112 error = -1;
119 error = -1;
137 error = -1;
162 error = -1;
187 if (error == 0)
193 if (error == 0)
198 return (error);
  /external/qemu/slirp-android/
ip_output.c 61 int len, off, error = 0; local
89 * error = ENOBUFS;
112 error = -1;
119 error = -1;
137 error = -1;
162 error = -1;
187 if (error == 0)
193 if (error == 0)
198 return (error);
  /external/skia/src/gpu/gl/
SkGLContext.cpp 40 GrGLenum error; local
42 error = SK_GL(*this, GetError());
43 } while (GR_GL_NO_ERROR != error);
112 error = SK_GL(*this, GetError());
117 GR_GL_NO_ERROR != error) {
  /external/speex/libspeex/
lpc.c 72 /* returns minimum mean square error */
81 spx_word16_t error = ac[0]; local
97 r = DIV32_16(rr+PSHR32(error,1),ADD16(error,8));
99 r = rr/(error+.003*ac[0]);
101 /* Update LPC coefficients and total error */
112 error = SUB16(error,MULT16_16_Q13(r,MULT16_16_Q13(error,r)));
114 return error;
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
demangle.c 172 Bool error, oflow, valid, fn_is_encoded, is_VG_Z_prefixed; local
177 error = False;
246 error = True;
271 default: error = True; goto out;
320 default: error = True; goto out;
329 if (error) {
332 "m_demangle: error Z-demangling: %s\n", sym);
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 149 mov $error,%rsi # string
166 error: .asciz "Error! Wrong result!\n" label
  /external/valgrind/main/exp-bbv/tests/x86/
fldcw_check.S 104 pushl $error
108 mov $error,%ecx # string
130 error: .asciz "Error! Wrong result!\n" label
  /external/valgrind/main/none/tests/
pth_atfork1.c 22 # include <error.h>
32 static void error (int status, int errnum, char* msg) function
83 error (EXIT_FAILURE, 0, "cannot create thread");
88 error(EXIT_FAILURE, 0, "pthread_join res != 0" );
108 error (EXIT_FAILURE, errno, "cannot fork");
111 error (EXIT_FAILURE, errno, "wrong child");
114 error (EXIT_FAILURE, 0, "Child terminated incorrectly");
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
maximum-age.js 11 var error; variable
23 error = e;
24 shouldBe('error.code', 'mockCode');
25 shouldBe('error.message', 'mockMessage');
39 testFailed('Error callback invoked unexpectedly');
52 testFailed('Error callback invoked unexpectedly');
58 // Update the mock service to report an error.
61 // The maximumAge is non-zero, so we expect the cached position, not the error from the service.
66 testFailed('Error callback invoked unexpectedly');
72 // The default maximumAge is zero, so we expect the error from the service
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.cpp 48 current->error = EGL_SUCCESS;
87 void setCurrentError(EGLint error)
91 current->error = error;
98 return current->error;
158 void error(EGLint errorCode) function
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.cpp 111 // Records an error code
112 void error(GLenum errorCode) function
122 gl::trace("\t! Error generated: invalid enum\n");
126 gl::trace("\t! Error generated: invalid value\n");
130 gl::trace("\t! Error generated: invalid operation\n");
134 gl::trace("\t! Error generated: out of memory\n");
138 gl::trace("\t! Error generated: invalid framebuffer operation\n");
  /external/webkit/Source/WebCore/loader/cache/
CachedCSSStyleSheet.cpp 119 void CachedCSSStyleSheet::error(CachedResource::Status status) function in class:WebCore::CachedCSSStyleSheet
CachedScript.cpp 107 void CachedScript::error(CachedResource::Status status) function in class:WebCore::CachedScript
  /external/webkit/Source/WebCore/platform/graphics/skia/
GlyphPageTreeNodeSkia.cpp 66 int error = HB_GSUB_Apply_String(hbFace->gsub, buffer); local
67 if (!error) {
71 return error;
  /external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
ProcessLauncherGtk.cpp 77 GOwnPtr<GError> error; local
79 if (!g_spawn_async(0, argv, 0, static_cast<GSpawnFlags>(spawnFlags), childSetupFunction, GINT_TO_POINTER(sockets[1]), &pid, &error.outPtr())) {
80 g_printerr("Unable to fork a new WebProcess: %s.\n", error->message);
  /external/webkit/Source/WebKit2/UIProcess/Launcher/win/
ProcessLauncherWin.cpp 97 DWORD error = ::GetLastError(); local
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
WebGeolocationManager.cpp 99 // FIXME: Add localized error string.
100 RefPtr<GeolocationError> error = GeolocationError::create(GeolocationError::PositionUnavailable, /* Localized error string */ String("")); local
107 page->corePage()->geolocationController()->errorOccurred(error.get());

Completed in 1027 milliseconds

1 2 3 4 5 6 78 91011>>