Searched refs:retcode (Results 1 - 25 of 43) sorted by relevance

12

/external/jpeg/
H A Djdtrans.c55 int retcode; local
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)) {
106 int retcode = 0; local
116 retcode = (*cinfo->inputctl->consume_input_build_huffman_index)
118 if (retcode == JPEG_REACHED_EOI)
125 retcode
168 int retcode; local
[all...]
H A Djdapimin.c244 int retcode; local
250 retcode = jpeg_consume_input(cinfo);
252 switch (retcode) {
254 retcode = JPEG_HEADER_OK;
264 retcode = JPEG_HEADER_TABLES_ONLY;
271 return retcode;
290 int retcode = JPEG_SUSPENDED; local
302 retcode = (*cinfo->inputctl->consume_input) (cinfo);
303 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
312 retcode
[all...]
H A Djdapistd.c55 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/ppp/pppd/plugins/radius/
H A Ddict.c53 int retcode; local
62 retcode = 0;
78 retcode = -1;
85 retcode = -1;
92 retcode = -1;
113 retcode = -1;
124 retcode = -1;
132 retcode = -1;
140 retcode = -1;
165 retcode
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdtrans.c56 int retcode; local
61 retcode = (*cinfo->inputctl->consume_input) (cinfo);
62 if (retcode == JPEG_SUSPENDED)
64 if (retcode == JPEG_REACHED_EOI)
68 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
H A Dfpdfapi_jdapimin.c244 int retcode; local
250 retcode = jpeg_consume_input(cinfo);
252 switch (retcode) {
254 retcode = JPEG_HEADER_OK;
264 retcode = JPEG_HEADER_TABLES_ONLY;
271 return retcode;
290 int retcode = JPEG_SUSPENDED; local
302 retcode = (*cinfo->inputctl->consume_input) (cinfo);
303 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
312 retcode
[all...]
H A Dfpdfapi_jdapistd.c56 int retcode; variable
61 retcode = (*cinfo->inputctl->consume_input) (cinfo);
62 if (retcode == JPEG_SUSPENDED)
64 if (retcode == JPEG_REACHED_EOI)
68 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
/external/vixl/tools/
H A Dlint.py129 retcode = process.poll()
143 if retcode != None: break;
145 if retcode == 0:
184 retcode, unused_output = util.getstatusoutput('which cpplint.py')
185 return retcode == 0
203 retcode = LintFiles(default_tracked_files,
205 sys.exit(retcode)
H A Dtest.py118 retcode = process.poll()
124 if retcode == 0:
138 return retcode
173 retcode = test.Run()
174 if retcode == 0:
/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py41 retcode = process.poll()
49 print "retcode:", retcode
/external/deqp/scripts/build/
H A Dcommon.py51 retcode = subprocess.call(args)
52 if retcode != 0:
53 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
/external/deqp/android/scripts/
H A Dcommon.py102 retcode = subprocess.call(args)
103 if retcode != 0:
104 raise Exception("Failed to execute '%s', got %d" % (commandLine, retcode))
109 retcode = subprocess.call(args)
110 if retcode != 0:
111 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
127 retcode = process.wait()
128 if retcode != 0:
129 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
/external/iputils/ninfod/
H A Dninfod_name.c213 int done = 0, retcode = 0; local
230 return retcode; /* truncated */
239 retcode = 1; // trunc
246 retcode = 1;
250 retcode = 1;
258 return retcode;
/external/deqp/scripts/
H A Drun_internal_tests.py40 retcode = subprocess.call(args)
42 if retcode != 0:
43 raise Exception("Failed to execute %s, got %d" % (str(args), retcode))
/external/valgrind/coregrind/
H A Dm_threadstate.c90 const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode )
92 switch (retcode) {
/external/libvpx/libvpx/vp8/decoder/
H A Donyxd_if.c305 int retcode = -1; local
309 retcode = check_fragments_for_errors(pbi);
310 if(retcode <= 0)
311 return retcode;
337 retcode = vp8_decode_frame(pbi);
339 if (retcode < 0)
390 return retcode;
/external/libvncserver/test/
H A Dbmp.c82 #define _throw(m) {__bmperr=m; retcode=-1; goto finally;}
84 #define _catch(f) {if((f)==-1) {retcode=-1; goto finally;}}
114 FILE *fs=NULL; int retcode=0, scalefactor, dstpitch; local
174 return retcode;
182 retcode=0; local
269 return retcode;
279 FILE *fs=NULL; int retcode=0; local
298 return retcode;
304 int fd=-1, byteswritten, dstpitch, retcode=0; local
392 return retcode;
[all...]
/external/ppp/pppd/
H A Dupap.c380 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/
H A Dsigframe-s390x-linux.c125 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[
[all...]
/external/clang/www/demo/
H A Dindex.cgi263 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/libdrm/
H A Dxf86drmHash.c351 int retcode = drmHashLookup(table, key, &retval); local
353 switch (retcode) {
369 printf("Bad retcode = %d: key = %lu, expected = %lu, returned = %lu\n",
370 retcode, key, value, retval);
H A Dxf86drmSL.c268 int retcode = 0; local
276 ++retcode;
280 ++retcode;
283 return retcode;
/external/mesa3d/src/glx/
H A Dglxhash.c380 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/valgrind/drd/tests/
H A Dtsan_thread_wrappers_pthread.h238 int retcode = 0; local
243 while (cond.Eval() == false && retcode == 0) {
244 retcode = pthread_cond_timedwait(&cv_, &mu_, &timeout);
246 if(retcode == 0) {
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.c213 int retcode = 0; local
279 return retcode;

Completed in 1222 milliseconds

12