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

1 2 3 4

  /device/google/contexthub/firmware/
symcheck.sh 27 retcode=0
47 retcode=-1
51 if [ $retcode -eq 0 ]
57 exit $retcode
  /external/v8/tools/gyp/buildbot/
buildbot_run.py 25 retcode = subprocess.call(stdin=devnull_fd, *args, **kwargs)
26 if retcode != 0:
89 retcode = subprocess.call(command, cwd=ROOT_DIR, env=env, shell=True)
90 if retcode:
104 retcode = 0
106 retcode += GypTestFormat('ninja')
107 retcode += GypTestFormat('make')
109 retcode += GypTestFormat('cmake')
111 retcode += GypTestFormat('ninja')
112 retcode += GypTestFormat('xcode'
    [all...]
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_test.cc 127 int32_t retcode = 0; local
130 retcode = 1;
132 if (!retcode && !device->InitDevice(width, height, pixfmt, fps))
133 retcode = 2;
135 if (!retcode && !device->StartCapture())
136 retcode = 3;
138 if (!retcode && !device->Run(frames, time_to_capture))
139 retcode = 4;
141 if (!retcode && !device->StopCapture())
142 retcode = 5
    [all...]
  /external/webrtc/webrtc/tools/e2e_quality/audio/
run_audio_test.py 71 retcode = subprocess.call(command, stdout=subprocess.PIPE)
72 if retcode != 0:
73 return retcode
98 retcode = play_proc.wait()
102 if retcode != 0:
103 return retcode
108 retcode = subprocess.call(command, stdout=subprocess.PIPE)
109 if retcode != 0:
110 return retcode
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
client_generation_test.py 58 retcode = subprocess.call(args)
59 if retcode == 128:
62 self.assertEqual(0, retcode)
70 retcode = subprocess.call(cmdline_args, stdout=out)
72 self.assertEqual(1, retcode)
  /external/ppp/pppd/plugins/radius/
dict.c 53 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 = -1
    [all...]
  /external/libjpeg-turbo/
jdtrans.c 57 int retcode; local
62 retcode = (*cinfo->inputctl->consume_input) (cinfo);
63 if (retcode == JPEG_SUSPENDED)
65 if (retcode == JPEG_REACHED_EOI)
69 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) {
jdapimin.c 255 int retcode; local
261 retcode = jpeg_consume_input(cinfo);
263 switch (retcode) {
265 retcode = JPEG_HEADER_OK;
275 retcode = JPEG_HEADER_TABLES_ONLY;
282 return retcode;
301 int retcode = JPEG_SUSPENDED; local
313 retcode = (*cinfo->inputctl->consume_input) (cinfo);
314 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
323 retcode = JPEG_REACHED_SOS
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jdtrans.c 56 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)) {
jdapimin.c 244 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 = JPEG_REACHED_SOS
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdtrans.c 55 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)) {
fpdfapi_jdapimin.c 243 int retcode; local
249 retcode = jpeg_consume_input(cinfo);
251 switch (retcode) {
253 retcode = JPEG_HEADER_OK;
263 retcode = JPEG_HEADER_TABLES_ONLY;
270 return retcode;
289 int retcode = JPEG_SUSPENDED; local
301 retcode = (*cinfo->inputctl->consume_input) (cinfo);
302 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
311 retcode = JPEG_REACHED_SOS
    [all...]
  /external/curl/docs/examples/
httpput.c 43 size_t retcode; local
49 retcode = fread(ptr, size, nmemb, stream);
51 nread = (curl_off_t)retcode;
56 return retcode;
ftpupload.c 57 size_t retcode = fread(ptr, size, nmemb, stream); local
59 nread = (curl_off_t)retcode;
63 return retcode;
anyauthput.c 104 ssize_t retcode; local
110 retcode = read(fd, ptr, size * nmemb);
112 nread = (curl_off_t)retcode;
117 return retcode;
  /system/media/camera/docs/
metadata-check-dependencies 20 retcode=0
73 retcode=1
103 retcode=1
113 exit $retcode
  /external/curl/lib/
netrc.c 61 int retcode=1; local
101 return retcode; /* no home directory found (or possibly out of memory) */
142 retcode=0; /* we did find our host */
149 retcode=0; /* we did find our host */
165 retcode = -1; /* allocation failed */
176 retcode = -1; /* allocation failed */
202 return retcode;
  /external/vixl/tools/
lint.py 79 retcode = process.poll()
95 if retcode != None: break;
97 if retcode == 0:
157 retcode, unused_output = util.getstatusoutput('which cpplint.py')
158 return retcode == 0
181 retcode, default_tracked_files = GetDefaultTrackedFiles()
182 if retcode:
183 sys.exit(retcode)
184 retcode = LintFiles(default_tracked_files, variable
186 sys.exit(retcode)
    [all...]
  /external/v8/tools/gyp/test/standalone-static-library/
gyptest-standalone-static-library.py 47 retcode = subprocess.call(['ar', '-x', path]) variable
48 assert retcode == 0
  /cts/apps/CameraITS/tools/
run_all_tests.py 154 retcode = subprocess.call(cmd,cwd=topdir)
155 assert(retcode == 0)
167 retcode = subprocess.call(cmd)
168 assert retcode == 0
205 retcode = subprocess.call(cmd,cwd=topdir)
206 assert(retcode == 0)
228 retcode = subprocess.call(
233 if retcode == 0:
236 elif retcode == SKIP_RET_CODE:
239 elif retcode != 0 and testname in NOT_YET_MANDATED[scene]
    [all...]
  /external/deqp/scripts/build/
common.py 50 retcode = subprocess.call(args)
51 if retcode != 0:
52 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
  /external/v8/build/android/pylib/utils/
xvfb.py 43 _, retcode = os.waitpid(proc.pid, 0)
44 if retcode == 0:
47 if retcode != 0:
  /external/libdrm/tests/
hash.c 128 int retcode = drmHashLookup(table, key, &retval); local
130 switch (retcode) {
144 retcode = -1;
148 printf("Bad retcode = %d: key = %lu, expected = %p, returned = %p\n",
149 retcode, key, value, retval);
152 return retcode;
  /external/opencv3/platforms/ios/
build_framework.py 35 retcode = subprocess.call(cmd, shell=True)
36 if retcode < 0:
37 raise Exception("Child was terminated by signal:", -retcode)
38 elif retcode > 0:
39 raise Exception("Child returned:", retcode)
  /external/curl/lib/vtls/
mbedtls.c 596 CURLcode retcode = CURLE_OK; local
624 retcode = Curl_ssl_addsessionid(conn, our_ssl_sessionid, 0);
626 if(retcode) {
629 return retcode;
719 CURLcode retcode; local
741 retcode = mbed_connect_step1(conn, sockindex);
742 if(retcode)
743 return retcode;
795 retcode = mbed_connect_step2(conn, sockindex);
796 if(retcode || (nonblocking &
838 CURLcode retcode; local
    [all...]

Completed in 1394 milliseconds

1 2 3 4