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

1 2 3

  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_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)) {
fpdfapi_jdapistd.c 56 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)) {
fpdfapi_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...]
  /packages/apps/OMA-DM/engine/javaplugin/nativelib/src/
DmtJavaPlugin.cc 46 SYNCML_DM_RET_STATUS_T retcode = pJavaPluginManager->ExecuteNode(pArgs, pCorrelator, pTree, results); local
47 DmtJavaPlugin_Debug("DmtJavaPluginManager::ExecuteNode -> retcode = %d\n", retcode);
49 return retcode;
71 SYNCML_DM_RET_STATUS_T retcode = pJavaPluginTree->BuildPluginTree(); local
72 DmtJavaPlugin_Debug("DmtJavaPluginManager::BuildPluginTree -> retcode = %d\n", retcode);
74 pPluginTree = (retcode != SYNCML_DM_SUCCESS ? NULL : pJavaPluginTree);
76 return retcode;
  /external/jpeg/
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)) {
106 int retcode = 0; local
116 retcode = (*cinfo->inputctl->consume_input_build_huffman_index)
118 if (retcode == JPEG_REACHED_EOI)
125 retcode = (*cinfo->inputctl->consume_input_build_huffman_index
168 int retcode; local
    [all...]
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...]
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/qemu/distrib/jpeg-6b/
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)) {
106 int retcode = 0; local
116 retcode = (*cinfo->inputctl->consume_input_build_huffman_index)
118 if (retcode == JPEG_REACHED_EOI)
125 retcode = (*cinfo->inputctl->consume_input_build_huffman_index
168 int retcode; local
    [all...]
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...]
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/chromium_org/tools/gyp/test/standalone-static-library/
gyptest-standalone-static-library.py 49 retcode = subprocess.call(['ar', '-x', path]) variable
50 assert retcode == 0
  /external/chromium_org/chrome/browser/first_run/
first_run_internal_win.cc 174 int retcode = 0; local
175 if (!LaunchSetupForEula(inner_html.value(), &retcode) ||
176 (retcode != installer::EULA_ACCEPTED &&
177 retcode != installer::EULA_ACCEPTED_OPT_IN)) {
183 if (retcode == installer::EULA_ACCEPTED) {
186 } else if (retcode == installer::EULA_ACCEPTED_OPT_IN) {
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decoder.c 226 int retcode = 0; local
270 retcode = vp9_decode_frame(pbi, source, source + size, psource);
272 if (retcode < 0) {
277 return retcode;
300 return 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...]
  /packages/apps/OMA-DM/plugins/pluginhelper/com/android/omadm/pluginhelper/
DmtMoBuilder.java 84 int retcode = createInteriorNode(rootNodePath); local
85 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
86 return retcode;
89 retcode = addNameToInteriorNode(rootNodePath, nodeName);
90 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
91 return retcode;
162 int retcode = createInteriorNode(rootNodePath); local
163 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
164 return retcode;
167 retcode = addNameToInteriorNode(rootNodePath, nodeName)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
onyxd_if.c 305 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)
389 return retcode;
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_ht.c 191 int retcode; local
230 retcode = strtoul(p, &r, 10);
248 if(retcode != 200)
  /external/iputils/ninfod/
ninfod_name.c 213 int done = 0, retcode = 0; local
230 return retcode; /* truncated */
239 retcode = 1; // trunc
246 retcode = 1;
250 retcode = 1;
258 return retcode;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 314 int retcode = -1; local
318 retcode = check_fragments_for_errors(pbi);
319 if(retcode <= 0)
320 return retcode;
355 retcode = vp8_decode_frame(pbi);
357 if (retcode < 0)
416 return retcode;
  /external/libvpx/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/openssl/crypto/ocsp/
ocsp_ht.c 191 int retcode; local
230 retcode = strtoul(p, &r, 10);
248 if(retcode != 200)
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-arm-linux.c 75 unsigned long retcode[2]; member in struct:sigframe
sigframe-arm64-linux.c 73 unsigned long retcode[2]; member in struct: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
346 /* retcode, sigNo, sc, sregs fields are to be written */
359 frame->retcode[0] = 0x0a;
360 frame->retcode[1] = __NR_sigreturn;
364 trampoline like x86,ppc. We still fill in the retcode, lets
406 /* retcode, sigNo, sc, sregs fields are to be written */
413 frame->retcode[0] = 0;
414 frame->retcode[1] = 0;
417 frame->retcode[0] = 0x0a
    [all...]
  /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;

Completed in 4614 milliseconds

1 2 3