HomeSort by relevance Sort by last modified time
    Searched refs:errorcode (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/lib/Support/
Mutex.cpp 53 int errorcode = pthread_mutexattr_init(&attr);
54 assert(errorcode == 0); (void)errorcode;
59 errorcode = pthread_mutexattr_settype(&attr, kind);
60 assert(errorcode == 0);
63 errorcode = pthread_mutex_init(mutex, &attr);
64 assert(errorcode == 0);
67 errorcode = pthread_mutexattr_destroy(&attr);
68 assert(errorcode == 0);
89 int errorcode = pthread_mutex_lock(mutex)
    [all...]
RWMutex.cpp 59 int errorcode = pthread_rwlock_init(rwlock, nullptr);
60 (void)errorcode;
61 assert(errorcode == 0);
82 int errorcode = pthread_rwlock_rdlock(rwlock);
83 return errorcode == 0;
92 int errorcode = pthread_rwlock_unlock(rwlock);
93 return errorcode == 0;
102 int errorcode = pthread_rwlock_wrlock(rwlock);
103 return errorcode == 0;
112 int errorcode = pthread_rwlock_unlock(rwlock)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_errno.py 21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_errno.py 21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_errno.py 21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_errno.py 21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
isacfix.c 77 self->errorcode = 0;
109 (*(ISACFIX_SubStruct**)ISAC_main_inst)->errorcode = 0;
308 ISAC_inst->errorcode = ISAC_DISALLOWED_CODING_MODE;
414 ISAC_inst->errorcode = ISAC_ENCODER_NOT_INITIATED;
423 ISAC_inst->errorcode = -(int16_t)stream_len;
480 ISAC_inst->errorcode = ISAC_ENCODER_NOT_INITIATED;
501 ISAC_inst->errorcode = - stream_len;
546 ISAC_inst->errorcode = ISAC_ENCODER_NOT_INITIATED;
554 ISAC_inst->errorcode = - stream_len;
633 ISAC_inst->errorcode = ISAC_EMPTY_PACKET
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/common/
mlerrorcode.c 26 * @param errorcode
27 * The errorcode value of which the label has to be returned.
31 char* MLErrorCode(inv_error_t errorcode)
33 switch(errorcode) {
mlerrorcode.h 79 char* MLErrorCode(inv_error_t errorcode);
  /external/mesa3d/src/glx/
applegl_glx.c 129 int errorcode; local
152 &errorcode, &x11error)) {
153 __glXSendError(dpy, errorcode, 0, X_GLXCreateContext, x11error);
  /external/webrtc/webrtc/modules/audio_coding/codecs/cng/
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/autotest/server/site_tests/platform_HWwatchdog/
platform_HWwatchdog.py 29 (wd_dev, errno.errorcode[e.errno]))
37 (wd_dev, errno.errorcode[e.errno]))
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
generate.py 69 errorcode = p.wait()
70 if errorcode != 0:
71 sys.stderr.write('rJSmin exited with error code %d' % errorcode)
186 errorcode = p.wait()
187 if errorcode != 0:
188 sys.stderr.write('rCSSmin exited with error code %d' % errorcode)
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_parser.py 62 for (line, col), errorcode, datavars in p.errors:
63 assert isinstance(datavars, dict), "%s, %s" % (errorcode, repr(datavars))
65 constants.E[errorcode] % datavars))
  /external/mesa3d/src/glx/apple/
apple_glx_pbuffer.c 121 int width, int height, int *errorcode,
144 *errorcode = BadAlloc;
149 *errorcode = BadAlloc;
167 *errorcode = BadMatch;
apple_glx_drawable.h 195 int width, int height, int *errorcode,
  /external/pcre/dist/
pcreposix.c 272 int errorcode; local
284 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
293 return (errorcode < (int)(sizeof(eint)/sizeof(const int)))?
294 eint[errorcode] : REG_BADPAT;
pcre_compile.c 9003 int errorcode = 0; local
    [all...]
  /external/autotest/site_utils/rpm_control_system/
rpm_dispatcher.py 78 errno.errorcode[er.errno])
211 errno.errorcode[er.errno])
  /external/chromium-trace/catapult/third_party/html5lib-python/
parse.py 147 for pos, errorcode, datavars in parser.errors:
148 errList.append("Line %i Col %i"%pos + " " + constants.E.get(errorcode, 'Unknown error "%s"' % errorcode) % datavars)
  /external/toybox/toys/pending/
tftp.c 118 * Makes an error packet in BUFFER with ERRORCODE and ERRORMSG.
121 static int mkpkt_err(uint8_t *buffer, uint16_t errorcode, char *errormsg)
125 buffer[2] = errorcode >> 8;
126 buffer[3] = errorcode & 0xff;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asyncore.py 58 errorcode namespace
72 if err in errorcode:
73 return errorcode[err]
356 raise socket.error(err, errorcode[err])
  /prebuilts/gdb/linux-x86/lib/python2.7/
asyncore.py 58 errorcode namespace
72 if err in errorcode:
73 return errorcode[err]
356 raise socket.error(err, errorcode[err])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 58 errorcode namespace
72 if err in errorcode:
73 return errorcode[err]
356 raise socket.error(err, errorcode[err])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 58 errorcode namespace
72 if err in errorcode:
73 return errorcode[err]
356 raise socket.error(err, errorcode[err])

Completed in 1428 milliseconds

1 2