/external/python/cpython2/Modules/_sqlite/ |
H A D | util.c | 50 int errorcode; local 57 errorcode = sqlite3_errcode(db); 59 switch (errorcode) 104 return errorcode;
|
/external/mesa3d/src/glx/ |
H A D | applegl_glx.c | 129 int errorcode; local 152 &errorcode, &x11error)) { 153 __glXSendError(dpy, errorcode, 0, X_GLXCreateContext, x11error);
|
H A D | glx_pbuffer.c | 703 int errorcode; local 739 if (apple_glx_pbuffer_create(dpy, config, width, height, &errorcode, 742 * apple_glx_pbuffer_create only sets the errorcode to core X11 745 __glXSendError(dpy, errorcode, 0, X_GLXCreatePbuffer, true);
|
H A D | glxcmds.c | 567 int errorcode; local 571 mask, &errorcode, &x11error)) { 572 __glXSendError(dpy, errorcode, 0, X_GLXCopyContext, x11error);
|
/external/mesa3d/src/glx/apple/ |
H A D | apple_glx_pbuffer.c | 121 int width, int height, int *errorcode, 144 *errorcode = BadAlloc; 149 *errorcode = BadAlloc; 167 *errorcode = BadMatch; 120 apple_glx_pbuffer_create(Display * dpy, GLXFBConfig config, int width, int height, int *errorcode, GLXPbuffer * result) argument
|
/external/pcre/dist2/src/ |
H A D | pcre2posix.c | 234 int errorcode; local 247 options, &errorcode, &erroffset, NULL); 257 if (errorcode < COMPILE_ERROR_BASE) return REG_BADPAT; 258 errorcode -= COMPILE_ERROR_BASE; 260 if (errorcode < (int)(sizeof(eint1)/sizeof(const int))) 261 return eint1[errorcode]; 263 if (errorcode == eint2[i]) return eint2[i+1];
|
H A D | pcre2_substitute.c | 117 int errorcode = 0; local 130 erc = PRIV(check_escape)(&ptr, ptrend, &ch, &errorcode, 132 if (errorcode != 0) 134 rc = errorcode; 701 int errorcode = 0; local 731 rc = PRIV(check_escape)(&ptr, repend, &ch, &errorcode, 733 if (errorcode != 0) goto BADESCAPE;
|
H A D | pcre2_compile.c | 1812 errorcodeptr points to the errorcode variable (containing zero) 3225 int errorcode = 0; local 3318 errorcode = 0; 3319 escape = PRIV(check_escape)(&ptr, cb->end_pattern, &c, &errorcode, options, 3321 if (errorcode != 0) goto FAILED; 3371 errorcode = ERR6; /* Missing terminating ']' */ 3403 errorcode = 0; 3404 escape = PRIV(check_escape)(&ptr, cb->end_pattern, &c, &errorcode, 3406 if (errorcode != 0) goto FAILED; 3439 if (process_verb_name(&ptr, NULL, &errorcode, option 8338 int errorcode = 0; /* Initialize to avoid compiler warn */ local [all...] |
H A D | pcre2test.c | 4122 int errorcode; local 4123 PCRE2_CALLOUT_ENUMERATE(errorcode, callout_callback, 0); 4124 if (errorcode != 0) 4127 fprintf(outfile, "Callout enumerate failed: error %d: ", errorcode); 4128 if (errorcode < 0) 4130 PCRE2_GET_ERROR_MESSAGE(len, errorcode, pbuffer); 4464 int errorcode; local 4874 errorcode = 0; 4877 if (test_mode == PCRE16_MODE) errorcode = to16(pbuffer8, utf, &patlen); 4881 if (test_mode == PCRE32_MODE) errorcode [all...] |
/external/python/cpython2/Lib/ |
H A D | asyncore.py | 58 errorcode namespace 72 if err in errorcode: 73 return errorcode[err] 356 raise socket.error(err, errorcode[err])
|
/external/toybox/toys/pending/ |
H A D | tftp.c | 121 static int mkpkt_err(uint8_t *buffer, uint16_t errorcode, char *errormsg) argument 125 buffer[2] = errorcode >> 8; 126 buffer[3] = errorcode & 0xff;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/ |
H A D | webrtc_cng.c | 33 int16_t errorcode; member in struct:WebRtcCngDecoder_ 46 int16_t errorcode; member in struct:WebRtcCngEncoder_ 89 (*(WebRtcCngEncoder**) cng_inst)->errorcode = 0; 110 (*(WebRtcCngDecoder**) cng_inst)->errorcode = 0; 153 inst->errorcode = CNG_DISALLOWED_LPC_ORDER; 254 inst->errorcode = CNG_ENCODER_NOT_INITIATED; 260 inst->errorcode = CNG_DISALLOWED_FRAME_SIZE; 423 inst->errorcode = CNG_DECODER_NOT_INITIATED; 494 inst->errorcode = CNG_DISALLOWED_FRAME_SIZE; 596 return inst->errorcode; [all...] |
/external/webrtc/webrtc/p2p/base/ |
H A D | stun_unittest.cc | 1007 const StunErrorCodeAttribute* errorcode = msg.GetErrorCode(); local 1008 ASSERT_TRUE(errorcode != NULL); 1009 EXPECT_EQ(kTestErrorClass, errorcode->eclass()); 1010 EXPECT_EQ(kTestErrorNumber, errorcode->number()); 1011 EXPECT_EQ(kTestErrorReason, errorcode->reason()); 1012 EXPECT_EQ(kTestErrorCode, errorcode->code()); 1058 StunErrorCodeAttribute* errorcode = StunAttribute::CreateErrorCode(); local 1059 errorcode->SetCode(kTestErrorCode); 1060 errorcode->SetReason(kTestErrorReason); 1061 EXPECT_TRUE(msg.AddAttribute(errorcode)); [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
H A D | structs.h | 361 int16_t errorcode; member in struct:__anon26153
|
/external/valgrind/mpi/ |
H A D | libmpiwrap.c | 2231 int WRAPPER_FOR(PMPI_Error_string)( int errorcode, char* string, argument 2241 CALL_FN_W_WWW(err, fn, errorcode,string,resultlen);
|
/external/libxml2/ |
H A D | trio.c | 6870 TRIO_ARGS1((errorcode), 6871 int errorcode) 6874 switch (TRIO_ERROR_CODE(errorcode)) 6869 trio_strerror(errorcode), int errorcode argument
|
/external/python/cpython2/Modules/ |
H A D | posixmodule.c | 809 os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) argument 817 errorcode, "oso001.msg", &msglen); 824 "unknown OS error #%d", errorcode);
|