HomeSort by relevance Sort by last modified time
    Searched refs:retcode (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/opencv3/3rdparty/libjpeg/
jdapistd.c 55 int retcode; variable
60 retcode = (*cinfo->inputctl->consume_input) (cinfo);
61 if (retcode == JPEG_SUSPENDED)
63 if (retcode == JPEG_REACHED_EOI)
67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdapistd.c 55 int retcode; variable
60 retcode = (*cinfo->inputctl->consume_input) (cinfo);
61 if (retcode == JPEG_SUSPENDED)
63 if (retcode == JPEG_REACHED_EOI)
67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
  /external/autotest/client/site_tests/platform_CompressedSwap/
platform_CompressedSwap.py 29 retcode = p.poll() # returns None if the thread is still running
30 if retcode is not None:
31 logging.info('hog %d of %d is gone, assume oom: retcode %s' %
32 (hogs.index(p) + 1, len(hogs), retcode))
  /external/valgrind/coregrind/
m_threadstate.c 86 const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode )
88 switch (retcode) {
  /external/libdrm/
xf86drmSL.c 236 int retcode = 0; local
246 ++retcode;
250 ++retcode;
253 return retcode;
  /external/tlsdate/src/
proxy-polarssl.c 227 int retcode; local
248 if (sscanf(buf, "HTTP/%*s %d", &retcode) != 1)
251 if (retcode < 200 || retcode > 299)
proxy-bio-plan9.c 267 int retcode; local
294 if (sscanf(buf, "HTTP/%*s %d", &retcode) != 1)
297 if (retcode < 200 || retcode > 299)
proxy-bio.c 253 int retcode; local
278 if (sscanf (buf, "HTTP/%*s %d", &retcode) != 1)
280 if (retcode < 200 || retcode > 299)
  /prebuilts/misc/windows/sdl2/test/
testgamecontroller.c 256 int retcode = 0; local
299 retcode = 1;
310 retcode = 1;
341 return retcode;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 322 int retcode = -1; local
328 retcode = check_fragments_for_errors(pbi);
329 if(retcode <= 0)
330 return retcode;
356 retcode = vp8_decode_frame(pbi);
358 if (retcode < 0)
409 return retcode;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
onyxd_if.c 314 volatile int retcode; local
320 retcode = check_fragments_for_errors(pbi);
321 if(retcode <= 0)
322 return retcode;
357 retcode = vp8_decode_frame(pbi);
359 if (retcode < 0)
418 return retcode;
  /external/libvncserver/test/
bmp.c 79 #define _throw(m) {__bmperr=m; retcode=-1; goto finally;}
81 #define _catch(f) {if((f)==-1) {retcode=-1; goto finally;}}
111 FILE *fs=NULL; int retcode=0, scalefactor, dstpitch; local
171 return retcode;
179 retcode=0; local
266 return retcode;
276 FILE *fs=NULL; int retcode=0; local
295 return retcode;
301 int fd=-1, byteswritten, dstpitch, retcode=0; local
383 return retcode;
    [all...]
  /external/libjpeg-turbo/
jdapistd.c 58 int retcode; variable
63 retcode = (*cinfo->inputctl->consume_input) (cinfo);
64 if (retcode == JPEG_SUSPENDED)
66 if (retcode == JPEG_REACHED_EOI)
70 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
  /external/ppp/pppd/
upap.c 380 int retcode; local
425 retcode = check_passwd(u->us_unit, ruser, ruserlen, rpasswd,
434 if (retcode == UPAP_AUTHACK) {
437 retcode = UPAP_AUTHNAK; /* XXX exit value will be "wrong" */
445 upap_sresp(u, retcode, id, msg, msglen);
450 if (retcode == UPAP_AUTHACK) {
  /external/valgrind/coregrind/m_sigframe/
sigframe-s390x-linux.c 125 UChar retcode[S390_SYSCALL_SIZE]; member in struct:sigframe
133 UChar retcode[S390_SYSCALL_SIZE]; member in struct:rt_sigframe
303 /* retcode, sigNo, sc, sregs fields are to be written */
316 frame->retcode[0] = 0x0a;
317 frame->retcode[1] = __NR_sigreturn;
321 trampoline like x86,ppc. We still fill in the retcode, lets
363 /* retcode, sigNo, sc, sregs fields are to be written */
370 frame->retcode[0] = 0;
371 frame->retcode[1] = 0;
374 frame->retcode[0] = 0x0a
    [all...]
  /external/autotest/client/tests/disktest/src/
disktest.c 248 int tasks, opt, retcode, pid; local
371 pid = wait(&retcode);
372 if (retcode != 0) {
373 printf("pid %d exited with status %d\n", pid, retcode);
  /external/clang/www/demo/
index.cgi 263 my $retcode = 0;
268 $retcode = system($commandline);
278 if ( WIFEXITED($retcode) && WEXITSTATUS($retcode) != 0 ) {
285 if ( WIFSIGNALED($retcode) != 0 ) {
286 my $sig = WTERMSIG($retcode);
  /external/curl/docs/examples/
http2-upload.c 170 size_t retcode = fread(ptr, size, nmemb, i->in); local
171 i->bytes_read += retcode;
172 return retcode;
  /external/deqp/scripts/
run_internal_tests.py 40 retcode = subprocess.call(args)
42 if retcode != 0:
43 raise Exception("Failed to execute %s, got %d" % (str(args), retcode))
  /frameworks/base/core/tests/overlaytests/
testrunner.py 654 retcode, stdout, stderr = t.execute()
655 if retcode != 0:
658 sys.exit(retcode)
659 retcode = _handle_instrumentation_task_output(stdout, printer) variable
660 if retcode != 0:
662 sys.exit(retcode)
664 ignored_errors += retcode
667 retcode, stdout, stderr = t.execute()
668 if retcode == 0:
670 if retcode != 0
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decoder.c 295 int retcode = 0; local
339 retcode = vp9_decode_frame(pbi, source, source + size, psource);
341 if (retcode < 0) {
346 return retcode;
403 return retcode;
  /external/mesa3d/src/glx/
glxhash.c 380 int retcode = __glxHashLookup(table, key, &retval); local
382 switch (retcode) {
398 printf("Bad retcode = %d: key = %lu, expected = %lu, returned = %lu\n",
399 retcode, key, value, retval);
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 342 retcode = hogs[selection].poll()
345 if retcode is None:
391 retcode = hog.poll()
392 if retcode is None:
  /external/pdfium/tools/drmemory/scripts/
valgrind_test.py 204 retcode = -1
206 retcode = self.RunTestsAndAnalyze(check_sanity)
223 retcode = -1
224 return retcode
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 238 int retcode = 0; local
243 while (cond.Eval() == false && retcode == 0) {
244 retcode = pthread_cond_timedwait(&cv_, &mu_, &timeout);
246 if(retcode == 0) {

Completed in 686 milliseconds

12 3 4