/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/libdrm/ |
xf86drmHash.c | 351 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);
|
xf86drmSL.c | 268 int retcode = 0; local 276 ++retcode; 280 ++retcode; 283 return retcode;
|
xf86drm.c | 576 int retcode; local 580 retcode = read(fd, buf, sizeof(buf)-1); 582 if (retcode) { 583 buf[retcode-1] = '\0'; 2316 int retcode = 0; local [all...] |
/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/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) {
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decoder.c | 213 int retcode = 0; local 279 return retcode;
|
/external/valgrind/coregrind/ |
pub_core_threadstate.h | 383 const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode );
|
/external/vixl/tools/ |
presubmit.py | 196 retcode = test.RunTests(manifest, jobs = args.jobs, 200 if retcode != 0:
|
/external/dnsmasq/src/ |
dnsmasq.c | 993 int retcode = 0; local 1017 retcode = -1; 1024 retcode = -1; 1028 retcode = -1; 1033 return retcode; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
subprocess.py | 118 retcode = call(["ls", "-l"]) 261 retcode = call("mycmd" + " myarg", shell=True) 262 if retcode < 0: 263 print >>sys.stderr, "Child was terminated by signal", -retcode 265 print >>sys.stderr, "Child returned", retcode 281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") 283 retcode = call(["/bin/mycmd", "myarg"]) 522 retcode = call(["ls", "-l"]) 537 retcode = call(*popenargs, **kwargs) 538 if retcode [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
subprocess.py | 118 retcode = call(["ls", "-l"]) 261 retcode = call("mycmd" + " myarg", shell=True) 262 if retcode < 0: 263 print >>sys.stderr, "Child was terminated by signal", -retcode 265 print >>sys.stderr, "Child returned", retcode 281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") 283 retcode = call(["/bin/mycmd", "myarg"]) 522 retcode = call(["ls", "-l"]) 537 retcode = call(*popenargs, **kwargs) 538 if retcode [all...] |
/external/valgrind/coregrind/m_sigframe/ |
sigframe-arm64-linux.c | 71 unsigned long retcode[2]; member in struct:sigframe
|
sigframe-arm-linux.c | 74 unsigned long retcode[2]; member in struct:sigframe
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3baserecognizer.c | 554 ANTLR3_BOOLEAN retcode; local 613 retcode = ANTLR3_TRUE; 617 retcode = ANTLR3_FALSE; 629 return retcode; [all...] |
/external/llvm/utils/ |
llvm-compilers-check | 309 retcode = proc.wait() 311 return retcode
|
/external/jpeg/ |
jdmarker.c | 1262 int retcode = JPEG_REACHED_SOS; local [all...] |
jdcoefct.c | 363 int i, retcode, ci; local 372 retcode = (*cinfo->inputctl->consume_markers) (cinfo, index, i); [all...] |
/frameworks/compile/libbcc/gdb_plugin/ |
android-commands.py | 57 retcode = p.poll() 58 if retcode != 0: 62 e = subprocess.CalledProcessError(retcode, c)
|
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
fpdf_font.cpp | 698 CFX_WideString retcode; local 700 retcode = destcode; 702 retcode = _StringDataAdd(destcode); 705 m_MultiCharBuf.AppendChar(retcode.GetLength()); 706 m_MultiCharBuf << retcode; local 707 destcode = retcode; [all...] |
/external/lldb/test/ |
lldbtest.py | 265 retcode = process.poll() 277 print >> sbuf, "retcode:", retcode 280 if retcode: 284 raise CalledProcessError(retcode, cmd) [all...] |
/frameworks/av/media/libmedia/ |
IMediaPlayer.cpp | 619 const status_t retcode = getMetadata(update_only, apply_filter, reply); local 621 reply->writeInt32(retcode);
|
/frameworks/base/media/java/android/media/ |
MediaPlayer.java | 704 int retcode = native_invoke(request, reply); local [all...] |
/external/google-breakpad/src/testing/gtest/scripts/ |
upload.py | 579 data, retcode = RunShellWithReturnCode(command, print_output, 581 if retcode: [all...] |