Home
last modified time | relevance | path

Searched refs:retcode (Results 251 – 275 of 6330) sorted by relevance

1...<<11121314151617181920>>...254

/dports/lang/ocaml/ocaml-4.05.0/otherlibs/unix/
H A Dfcntl.c30 int retcode; in unix_set_nonblock() local
31 retcode = fcntl(Int_val(fd), F_GETFL, 0); in unix_set_nonblock()
32 if (retcode == -1 || in unix_set_nonblock()
33 fcntl(Int_val(fd), F_SETFL, retcode | O_NONBLOCK) == -1) in unix_set_nonblock()
40 int retcode; in unix_clear_nonblock() local
41 retcode = fcntl(Int_val(fd), F_GETFL, 0); in unix_clear_nonblock()
42 if (retcode == -1 || in unix_clear_nonblock()
43 fcntl(Int_val(fd), F_SETFL, retcode & ~O_NONBLOCK) == -1) in unix_clear_nonblock()
/dports/lang/ocaml-nox11/ocaml-4.05.0/otherlibs/unix/
H A Dfcntl.c30 int retcode; in unix_set_nonblock() local
31 retcode = fcntl(Int_val(fd), F_GETFL, 0); in unix_set_nonblock()
32 if (retcode == -1 || in unix_set_nonblock()
33 fcntl(Int_val(fd), F_SETFL, retcode | O_NONBLOCK) == -1) in unix_set_nonblock()
40 int retcode; in unix_clear_nonblock() local
41 retcode = fcntl(Int_val(fd), F_GETFL, 0); in unix_clear_nonblock()
42 if (retcode == -1 || in unix_clear_nonblock()
43 fcntl(Int_val(fd), F_SETFL, retcode & ~O_NONBLOCK) == -1) in unix_clear_nonblock()
/dports/databases/freetds-devel/freetds-dev.1.3.7/src/odbc/unittests/
H A Dtransaction.c11 int retcode = 0; in Test() local
70 retcode = 1; in Test()
88 return retcode; in Test()
94 int retcode = 0; in main() local
102 if (!retcode) in main()
103 retcode = Test(true); in main()
104 if (!retcode) in main()
105 retcode = Test(false); in main()
113 return retcode; in main()
/dports/databases/libiodbc/iODBC-3.52.15/iodbcinst/
H A DSQLInstallerError.c117 RETCODE retcode = SQL_ERROR;
122 retcode = SQL_NO_DATA;
138 retcode = SQL_SUCCESS_WITH_INFO;
148 retcode = SQL_SUCCESS;
151 return retcode;
159 RETCODE retcode = SQL_ERROR;
171 retcode =
175 if (retcode != SQL_ERROR)
184 return retcode;
/dports/databases/freetds/freetds-1.3.4/src/odbc/unittests/
H A Dtransaction.c11 int retcode = 0; in Test() local
70 retcode = 1; in Test()
88 return retcode; in Test()
94 int retcode = 0; in main() local
102 if (!retcode) in main()
103 retcode = Test(true); in main()
104 if (!retcode) in main()
105 retcode = Test(false); in main()
113 return retcode; in main()
/dports/graphics/librasterlite2/librasterlite2-1.0.0-rc0/test/
H A Dtest_map_noref.c60 int retcode = 0; in execute_check() local
69 retcode = 1; in execute_check()
127 int retcode = 0; in do_export_tiff() local
155 retcode = 1; in do_export_tiff()
159 if (!retcode) in do_export_tiff()
162 return retcode; in do_export_tiff()
251 retcode = 1; in do_export_image()
257 if (!retcode) in do_export_image()
428 *retcode += -1; in test_coverage()
441 *retcode += -4; in test_coverage()
[all …]
/dports/comms/qsstv/qsstv/rig/
H A Drigcontrol.cpp72 int retcode; in init() local
108 if (retcode != RIG_OK ) in init()
142 int retcode; in getFrequency() local
167 int retcode=-1; in setFrequency() local
180 if (retcode==RIG_OK) in setFrequency()
209 int retcode; in getMode() local
215 if (retcode==RIG_OK) in getMode()
262 int retcode; in setMode() local
268 if (retcode==RIG_OK) in setMode()
281 int retcode; in setPTT() local
[all …]
/dports/mail/p5-FuzzyOcr-devel/FuzzyOcr-3.6.0/FuzzyOcr/
H A DScanset.pm45 my $retcode;
71 $retcode = $proc->run($input);
72 if ($retcode<0) {
74 return ($retcode,@result);
75 } elsif ($retcode>0) {
80 return ($retcode,@result);
109 …$retcode = Mail::SpamAssassin::Plugin::FuzzyOcr::Misc::save_execute($rcmd, $stdin, $stdout, $stder…
116 return ($retcode, @result);
122 …($retcode, @result) = Mail::SpamAssassin::Plugin::FuzzyOcr::Misc::save_execute($rcmd, $stdin, $std…
126 if ($retcode>0) {
[all …]
/dports/graphics/volpack/volpack-1.0b3/
H A Dvp_renderR.c155 int retcode; local
160 if ((retcode = VPCheckRawVolume(vpc)) != VP_OK)
161 return(retcode);
162 if ((retcode = VPCheckClassifier(vpc)) != VP_OK)
163 return(retcode);
164 if ((retcode = VPCheckShader(vpc)) != VP_OK)
165 return(retcode);
166 if ((retcode = VPCheckImage(vpc)) != VP_OK)
167 return(retcode);
170 if ((retcode = VPFactorView(vpc)) != VP_OK)
[all …]
/dports/comms/hamlib/hamlib-4.3.1/tests/
H A Drigctl.c479 retcode = set_conf(my_rig, conf_parms); in main()
481 if (retcode != RIG_OK) in main()
562 retcode = rig_open(my_rig); in main()
564 if (retcode != RIG_OK) in main()
646 retcode = rig_open(my_rig); in main()
656 if (retcode < 0 && !RIG_IS_SOFT_ERRCODE(-retcode)) in main()
663 retcode = rig_close(my_rig); in main()
666 retcode = rig_open(my_rig); in main()
667 rig_opened = retcode == RIG_OK ? 1 : 0; in main()
670 while (retry-- > 0 && retcode != RIG_OK); in main()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/driver/ftds100/freetds/tds/example/
H A Dtoken1.c23 retcode = CS_SUCCEED;
39 retcode = CS_SUCCEED;
42 retcode = CS_FAIL;
45 retcode = CS_FAIL;
63 retcode = CS_SUCCEED;
69 retcode = CS_SUCCEED;
78 retcode = CS_END_RESULTS;
82 retcode = CS_FAIL;
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/driver/ftds95/freetds/tds/example/
H A Dtoken1.c23 retcode = CS_SUCCEED;
39 retcode = CS_SUCCEED;
42 retcode = CS_FAIL;
45 retcode = CS_FAIL;
63 retcode = CS_SUCCEED;
69 retcode = CS_SUCCEED;
78 retcode = CS_END_RESULTS;
82 retcode = CS_FAIL;
/dports/science/code_saturne/code_saturne-7.1.0/src/base/
H A Dcs_restart_default.c166 int retcode; in _read_legacy_field_info() local
386 if ( (retcode == CS_RESTART_ERR_EXISTS || retcode == CS_RESTART_ERR_N_VALS) in _read_field_vals()
427 return retcode; in _read_field_vals()
498 return retcode; in _read_rij()
725 return retcode; in _read_field_vals_legacy()
802 int retcode; in _read_linked_fields_legacy() local
929 int retcode; in _check_field_model() local
1716 int retcode; in cs_restart_read_field_info() local
2235 int retcode; in cs_restart_read_linked_fields() local
2827 if ( (retcode == CS_RESTART_ERR_EXISTS || retcode == CS_RESTART_ERR_N_VALS) in cs_restart_read_field_vals()
[all …]
/dports/ports-mgmt/pkg/pkg-1.17.5/src/
H A Dinstall.c60 int retcode; in exec_install() local
178 retcode = pkgdb_access(mode, repo_type); in exec_install()
186 if (retcode == EPKG_ENOACCESS) { in exec_install()
189 } else if (retcode != EPKG_OK) in exec_install()
192 retcode = EXIT_FAILURE; in exec_install()
242 retcode = pkg_jobs_apply(jobs); in exec_install()
244 if (retcode == EPKG_CONFLICT) { in exec_install()
250 else if (retcode != EPKG_OK) in exec_install()
266 retcode = EXIT_SUCCESS; in exec_install()
268 retcode = EXIT_FAILURE; in exec_install()
[all …]
/dports/databases/libiodbc/iODBC-3.52.15/iodbc/
H A Dresult.c109 SQLRETURN retcode;
227 return retcode;
364 return retcode;
448 SQLRETURN retcode;
473 return retcode;
499 SQLRETURN retcode;
549 switch (retcode)
569 return retcode;
791 return retcode;
811 return retcode;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Odbc/
H A DOdbcCommand.cs419 switch(retcode) { in Cancel()
550 ODBC32.RetCode retcode; in ExecuteReaderObject()
651 … if(retcode == ODBC32.RetCode.SUCCESS || retcode == ODBC32.RetCode.SUCCESS_WITH_INFO) { in ExecuteReaderObject()
730 … if((ODBC32.RetCode.SUCCESS != retcode) && (ODBC32.RetCode.NO_DATA != retcode)) { in ExecuteReaderObject()
801 ODBC32.RetCode retcode; in Prepare()
818 retcode = stmt.Prepare(CommandText); in Prepare()
821 if (ODBC32.RetCode.SUCCESS != retcode) { in Prepare()
836 if (retcode == ODBC32.RetCode.ERROR) { in TrySetStatementAttribute()
989 ODBC32.RetCode retcode; in FreeStatementHandle()
991 StatementErrorHandler(retcode); in FreeStatementHandle()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/driver/ftds100/freetds/odbc/unittests/
H A Dtransaction.c15 int retcode = 0; in Test() local
74 retcode = 1; in Test()
92 return retcode; in Test()
98 int retcode = 0; in main() local
106 if (!retcode) in main()
107 retcode = Test(1); in main()
108 if (!retcode) in main()
109 retcode = Test(0); in main()
117 return retcode; in main()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/driver/ftds95/freetds/odbc/unittests/
H A Dtransaction.c15 int retcode = 0; in Test() local
74 retcode = 1; in Test()
92 return retcode; in Test()
98 int retcode = 0; in main() local
106 if (!retcode) in main()
107 retcode = Test(1); in main()
108 if (!retcode) in main()
109 retcode = Test(0); in main()
117 return retcode; in main()
/dports/ftp/bbftp-client/bbftp-client-3.2.1/bbftpc/
H A Dbbftp_store.c144 int retcode ; in bbftp_storechmod() local
152 if ( retcode < 0 ) { in bbftp_storechmod()
155 return retcode ; in bbftp_storechmod()
179 int retcode ; in bbftp_storerename() local
187 if ( retcode < 0 ) { in bbftp_storerename()
190 return retcode ; in bbftp_storerename()
526 int retcode ; local
651 return retcode ;
814 int retcode ; local
967 if ( retcode < 0 ) {
[all …]
/dports/misc/py-xgboost/xgboost-1.5.1/rabit/doc/
H A Dconf.py146 retcode = subprocess.call("cd %s; make doxygen" % folder, shell=True)
147 if retcode < 0:
148 sys.stderr.write("doxygen terminated by signal %s" % (-retcode))
156 retcode = subprocess.call("cd %s; make" % folder, shell=True)
157 retcode = subprocess.call("rm -rf _build/html/doxygen", shell=True)
158 retcode = subprocess.call("mkdir _build", shell=True)
159 retcode = subprocess.call("mkdir _build/html", shell=True)
160 retcode = subprocess.call("cp -rf doxygen/html _build/html/doxygen", shell=True)
161 if retcode < 0:
162 sys.stderr.write("build terminated by signal %s" % (-retcode))
/dports/devel/spark/spark-2.1.1/dev/sparktestsupport/
H A Dshellutils.py36 retcode = process.poll()
37 if retcode:
41 raise subprocess.CalledProcessError(retcode, cmd, output=output)
46 retcode = call(*popenargs, **kwargs)
47 if retcode:
51 raise CalledProcessError(retcode, cmd)
55 def exit_from_command_with_retcode(cmd, retcode): argument
56 if retcode < 0:
57 print("[error] running", ' '.join(cmd), "; process was terminated by signal", -retcode)
59 print("[error] running", ' '.join(cmd), "; received return code", retcode)
/dports/misc/xgboost/xgboost-1.5.1/rabit/doc/
H A Dconf.py146 retcode = subprocess.call("cd %s; make doxygen" % folder, shell=True)
147 if retcode < 0:
148 sys.stderr.write("doxygen terminated by signal %s" % (-retcode))
156 retcode = subprocess.call("cd %s; make" % folder, shell=True)
157 retcode = subprocess.call("rm -rf _build/html/doxygen", shell=True)
158 retcode = subprocess.call("mkdir _build", shell=True)
159 retcode = subprocess.call("mkdir _build/html", shell=True)
160 retcode = subprocess.call("cp -rf doxygen/html _build/html/doxygen", shell=True)
161 if retcode < 0:
162 sys.stderr.write("build terminated by signal %s" % (-retcode))
/dports/misc/mime-support/mime-support/
H A Drun-mailcap27 $retcode=0;
226 $retcode = 2 if ($retcode < 2);
268 $retcode = 2 if ($retcode < 2);
385 $retcode = 2 if ($retcode < 2);
394 $retcode = 2 if ($retcode < 2);
401 $retcode = 2 if ($retcode < 2);
406 $retcode = 2 if ($retcode < 2);
562 $retcode = 3 if ($retcode < 3);
565 $retcode = 3 if ($retcode < 3);
568 $retcode = 1 unless $retcode;
[all …]
/dports/databases/percona56-server/percona-server-5.6.51-91.0/storage/ndb/src/kernel/blocks/dbdict/
H A DprintSchemaFile.cpp82 int retcode = 0; in print_head() local
96 retcode = 1; in print_head()
101 retcode = 1; in print_head()
104 return retcode; in print_head()
117 int retcode = 0; in print_old() local
120 retcode = 1; in print_old()
137 return retcode; in print_old()
143 int retcode = 0; in print() local
146 retcode = 1; in print()
151 retcode = 1; in print()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/storage/ndb/src/kernel/blocks/dbdict/
H A DprintSchemaFile.cpp82 int retcode = 0; in print_head() local
96 retcode = 1; in print_head()
101 retcode = 1; in print_head()
104 return retcode; in print_head()
117 int retcode = 0; in print_old() local
120 retcode = 1; in print_old()
137 return retcode; in print_old()
143 int retcode = 0; in print() local
146 retcode = 1; in print()
151 retcode = 1; in print()
[all …]

1...<<11121314151617181920>>...254