Home
last modified time | relevance | path

Searched refs:CLI (Results 1 – 25 of 6103) sorted by relevance

12345678910>>...245

/dports/databases/libiodbc/iODBC-3.52.15/iodbc/
H A Dhenv.ci80 * on FreeBSD 2.x CLI is defined in Config.mk as "_SQL"
81 * on HP/UX s300/s400, CLI is defined in Config.mk as "_SQL"
82 * on AIX 3.x 4.x, CLI is defined in Config.mk as ".SQL"
84 #ifndef CLI
86 # define CLI "_SQL"
88 # define CLI "SQL"
199 FUNCDEF (SQL_API_SQLERROR, en_ErrorW, CLI "ErrorW")
209 FUNCDEF (SQL_API_SQLTABLES, en_TablesW, CLI "TablesW")
240 FUNCDEF (SQL_API_SQLERROR, en_ErrorA, CLI "ErrorA")
250 FUNCDEF (SQL_API_SQLTABLES, en_TablesA, CLI "TablesA")
[all …]
/dports/databases/fastdb/fastdb/CSharp/
H A DFastDbFields.cs34 ((CLI.UnmanagedBuffer*)buffer)->size = CLI.SizeOfCliType[(int)var_type]; in FastDbBuffer()
58 CLI.UnmanagedBuffer* buffer = (CLI.UnmanagedBuffer*)user_data; in GetColumn()
59 if (CLI.IsArrayType((CLI.FieldType)var_type)) in GetColumn()
74 CLI.UnmanagedBuffer* buffer = (CLI.UnmanagedBuffer*)user_data; in SetColumn()
79 else if (CLI.IsArrayType((CLI.FieldType)var_type)) { in SetColumn()
172 …public unsafe CLI.FieldType Type { get { return (CLI.FieldType)((CLI.UnmanagedBuffer*)buf…
199 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in getValue()
228 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in setValue()
396 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in getArrayValue()
484 …if (CLI.IsArrayType(Type) || Type == CLI.FieldType.cli_asciiz || Type == CLI.FieldType.cli_pasciiz) in Bind()
[all …]
H A DFastDbConnection.cs134 public void Commit() { CLI.CliCheck(CLI.cli_commit(session)); } in Commit()
142 public void Rollback() { CLI.CliCheck(CLI.cli_abort(session)); } in Rollback()
150 CLI.CliCheck(CLI.cli_close(session)); in Close()
191 CLI.CliFieldDescriptor* fld = (CLI.CliFieldDescriptor*)p; in DescribeTable()
212 CLI.CliCheck(CLI.cli_drop_table(session, TableName)); in DropTable()
250 CLI.CliCheck(CLI.cli_attach(session)); in Attach()
265 CLI.CliCheck(CLI.cli_detach(session, mode)); in Detach()
272 CLI.CliCheck(CLI.cli_lock(session)); in Lock()
383 int rc = CLI.CliCheck(CLI.cli_show_tables(session, ref p)); in ListTables()
415 CLI.CliCheck(CLI.cli_create_replication_node( in Open()
[all …]
H A DFastDbCommand.cs144 statement = CLI.CliCheck(CLI.cli_statement(connection.Session, sql), "cli_statement failed"); in Describe()
166 CLI.CliCheck( in Execute()
167CLI.cli_fetch(statement, (Updatable) ? CLI.QueryType.cli_for_update : CLI.QueryType.cli_view_only)… in Execute()
190 CLI.CliCheck(CLI.cli_insert(statement, ref oid)); in Insert()
203 CLI.CliCheck(CLI.cli_update(statement)); in Update()
212 public void Delete() { CLI.CliCheck(CLI.cli_remove(statement)); } in Delete()
217 public void Freeze() { CLI.CliCheck(CLI.cli_freeze(statement)); } in Freeze()
221 public void UnFreeze() { CLI.CliCheck(CLI.cli_unfreeze(statement)); } in UnFreeze()
230 public void RefreshRecord() { CLI.CliCheck(CLI.cli_skip(statement, 0)); } in RefreshRecord()
239 public void First() { CLI.CliCheck(CLI.cli_get_first(statement)); rec_no = 0; } in First()
[all …]
/dports/databases/gigabase/gigabase/csharplocalcli/
H A DGbFields.cs30 public unsafe GbBuffer(string name, CLI.FieldType var_type, CLI.FieldFlags idx_flags) { in GbBuffer()
34 ((CLI.UnmanagedBuffer*)buffer)->size = CLI.SizeOfCliType[(int)var_type]; in GbBuffer()
58 CLI.UnmanagedBuffer* buffer = (CLI.UnmanagedBuffer*)user_data; in GetColumn()
59 if (CLI.IsArrayType((CLI.FieldType)var_type)) in GetColumn()
74 CLI.UnmanagedBuffer* buffer = (CLI.UnmanagedBuffer*)user_data; in SetColumn()
79 else if (CLI.IsArrayType((CLI.FieldType)var_type)) { in SetColumn()
171 …public unsafe CLI.FieldType Type { get { return (CLI.FieldType)((CLI.UnmanagedBuffer*)buf…
198 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in getValue()
227 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in setValue()
395 switch((CLI.FieldType)((CLI.UnmanagedBuffer*)buffer.ToPointer())->type) { in getArrayValue()
[all …]
H A DGbConnection.cs37CLI.CliFieldDescriptor[] flds = (CLI.CliFieldDescriptor[])Array.CreateInstance(typeof(CLI.CliField… in CreateTable()
112 public void Commit() { CLI.CliCheck(CLI.cli_commit(session)); } in Commit()
120 public void Rollback() { CLI.CliCheck(CLI.cli_abort(session)); } in Rollback()
128 CLI.CliCheck(CLI.cli_close(session)); in Close()
169 CLI.CliFieldDescriptor* fld = (CLI.CliFieldDescriptor*)p; in DescribeTable()
190 CLI.CliCheck(CLI.cli_drop_table(session, TableName)); in DropTable()
228 CLI.CliCheck(CLI.cli_attach(session)); in Attach()
243 CLI.CliCheck(CLI.cli_detach(session, mode)); in Detach()
250 CLI.CliCheck(CLI.cli_lock(session)); in Lock()
361 int rc = CLI.CliCheck(CLI.cli_show_tables(session, ref p)); in ListTables()
[all …]
H A DGbCommand.cs144 statement = CLI.CliCheck(CLI.cli_statement(connection.Session, sql), "cli_statement failed"); in Describe()
166 CLI.CliCheck( in Execute()
167CLI.cli_fetch(statement, (Updatable) ? CLI.QueryType.cli_for_update : CLI.QueryType.cli_view_only)… in Execute()
190 CLI.CliCheck(CLI.cli_insert(statement, ref oid)); in Insert()
203 CLI.CliCheck(CLI.cli_update(statement)); in Update()
212 public void Delete() { CLI.CliCheck(CLI.cli_remove(statement)); } in Delete()
217 public void Freeze() { CLI.CliCheck(CLI.cli_freeze(statement)); } in Freeze()
221 public void UnFreeze() { CLI.CliCheck(CLI.cli_unfreeze(statement)); } in UnFreeze()
230 public void RefreshRecord() { CLI.CliCheck(CLI.cli_skip(statement, 0)); } in RefreshRecord()
239 public void First() { CLI.CliCheck(CLI.cli_get_first(statement)); rec_no = 0; } in First()
[all …]
/dports/devel/cli11/CLI11-2.1.2/tests/
H A DHelpersTest.cpp230 CLI::detail::trim(s1);
234 CLI::detail::trim(s2);
238 CLI::detail::trim(s3);
268 CLI::detail::trim(orig);
421 auto crange = CLI::Range(0, 12) & CLI::Range(4, 16);
434 auto crange = CLI::Range(0, 4) | CLI::Range(8, 12);
453 auto path_or_dir = CLI::ExistingPath | CLI::ExistingDirectory;
458 auto file_or_dir = CLI::ExistingFile | CLI::ExistingDirectory;
463 auto path_and_dir = CLI::ExistingPath & CLI::ExistingDirectory;
468 auto path_and_file = CLI::ExistingFile & CLI::ExistingDirectory;
[all …]
H A DSetTest.cpp135 … ->transform(CLI::IsMember(map, CLI::ignore_case, CLI::ignore_underscore, CLI::ignore_space));
163 … ->check(CLI::IsMember(map, CLI::ignore_case, CLI::ignore_underscore, CLI::ignore_space));
207 …auto opt = app.add_option("-s,--set", map_name)->transform(CLI::IsMember(&map, CLI::ignore_undersc…
306 … ->transform(CLI::IsMember({"O_ne", "two", "three"}, CLI::ignore_case, CLI::ignore_underscore));
437 ->transform(CLI::IsMember({"one", "two", "three"}, CLI::ignore_case));
536 app.add_option("-q,--quick", choice)->transform(CLI::IsMember(&options, CLI::ignore_case));
559 app.add_option("-q,--quick", choice)->transform(CLI::IsMember(*options, CLI::ignore_case));
589 app.add_option("-q,--quick", choice)->check(!CLI::IsMember(*options, CLI::ignore_case));
603 … ->transform(CLI::IsMember({"option_one", "option_two", "optionthree"}, CLI::ignore_underscore));
629CLI::IsMember({"Option_One", "option_two", "OptionThree"}, CLI::ignore_case, CLI::ignore_underscor…
[all …]
H A DHelpTest.cpp686 CLI::App app;
698 CLI::App app;
745 CLI::App app;
877 CLI::App app;
889 CLI::App app;
932 CLI::App app;
944 CLI::App app;
953 CLI::App app;
969 CLI::App app;
985 CLI::App app;
[all …]
H A DTransformTest.cpp45 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(CLI::TransformPairs<int>{{"one"…
57 ->transform(CLI::Transformer(CLI::TransformPairs<test_cli>{
86 ->transform(CLI::CheckedTransformer(CLI::TransformPairs<test_cli>{
188 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(conversions, CLI::ignore_case));
202 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(conversions, CLI::ignore_case));
264 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(map, CLI::ignore_case, CLI::ign…
287 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(&map, CLI::ignore_case, CLI::ig…
319 …auto opt = app.add_option("-s", value)->transform(CLI::Transformer(map, CLI::ignore_case, CLI::ign…
349CLI::Transformer({{"ab", "abc"}, {"bc", "bbc"}, {"cb", "cbc"}}, CLI::ignore_case, CLI::ignore_unde…
350 opt->transform(CLI::Transformer({{"a", "ab"}, {"b", "bb"}, {"c", "cb"}}, CLI::ignore_case));
[all …]
H A DFormatterTest.cpp22 std::string make_help(const CLI::App *, std::string, CLI::AppFormatMode) const override { in make_help()
28 CLI::App app{"My prog"};
38 CLI::App app{"My prog"};
49 CLI::App app{"My prog"};
70 CLI::App app{"My prog"};
89 CLI::App app{"My prog"};
107 CLI::App app{"My prog"};
126 CLI::App app{"My prog"};
147 CLI::App app{"My prog"};
166 CLI::App app{"My prog"};
[all …]
/dports/net/p5-Net-CLI-Interact/Net-CLI-Interact-2.300003/
H A DMETA.yml2 abstract: 'Toolkit for CLI Automation'
16 name: Net-CLI-Interact
18 Net::CLI::Interact:
19 file: lib/Net/CLI/Interact.pm
21 Net::CLI::Interact::Action:
24 Net::CLI::Interact::ActionSet:
27 Net::CLI::Interact::Logger:
30 Net::CLI::Interact::Phrasebook:
33 Net::CLI::Interact::Role::Engine:
39 Net::CLI::Interact::Role::Iterator:
[all …]
/dports/deskutils/timewarrior/timewarrior-1.4.3/src/commands/
H A Dcommands.h36 int CmdAnnotate (const CLI&, Rules&, Database&, Journal& );
38 int CmdConfig (const CLI&, Rules&, Journal& );
39 int CmdContinue (const CLI&, Rules&, Database&, Journal& );
41 int CmdDelete (const CLI&, Rules&, Database&, Journal& );
43 int CmdExport (const CLI&, Rules&, Database& );
45 int CmdFill (const CLI&, Rules&, Database&, Journal& );
46 int CmdGaps (const CLI&, Rules&, Database& );
47 int CmdGet (const CLI&, Rules&, Database& );
49 int CmdHelp (const CLI&, const Extensions&);
50 int CmdJoin (const CLI&, Rules&, Database&, Journal& );
[all …]
/dports/print/tex-dvipsk/texlive-20150521-source/texk/dvipsk/vms/
H A Dvmscli.c71 if(status == CLI$_PRESENT)
98 if(status == CLI$_PRESENT | status == CLI$_DEFAULTED)
225 if(status == CLI$_PRESENT | status == CLI$_DEFAULTED)
257 if(status == CLI$_PRESENT | status == CLI$_DEFAULTED)
265 if(status == CLI$_PRESENT | status == CLI$_DEFAULTED)
279 if(status == CLI$_NEGATED | status==CLI$_DEFAULTED) /* EJG 02-Jul-1996 */
366 if(status == CLI$_PRESENT | status==CLI$_DEFAULTED) tryepsf = 1;
371 if(status == CLI$_PRESENT | status==CLI$_DEFAULTED) dopprescan = 1;
377 if(status == CLI$_PRESENT | status == CLI$_DEFAULTED)
387 if(status == CLI$_PRESENT | status==CLI$_DEFAULTED) sepfiles = 1;
[all …]
/dports/devel/hs-spago/spago-0.20.3/src/Spago/
H A DCLI.hs1 module Spago.CLI
2 ( module Spago.CLI
3 , CLI.options
11 import qualified Turtle as CLI
106 parser :: CLI.Parser (Command, GlobalOptions)
153 …configPath = CLI.optional $ CLI.optText "config" 'x' "Optional config path to be used instead of…
157 …mainModule = CLI.optional $ CLI.opt (Just . ModuleName) "main" 'm' "Module to be used as the appl…
158 toTarget = CLI.optional $ CLI.opt (Just . TargetPath) "to" 't' "The target file path"
159 …docsFormat = CLI.optional $ CLI.opt Purs.parseDocsFormat "format" 'f' "Docs output format (markdo…
160 …jobsLimit = CLI.optional (CLI.optInt "jobs" 'j' "Limit the amount of jobs that can run concurren…
[all …]
/dports/net/ipinfo-cli/cli-ipinfo-2.7.0/scripts/
H A Drelease.sh10 CLI=$1
13 if [ -z "$CLI" ]; then
23 if [ ! -d "$CLI" ]; then
29 rm -f $ROOT/build/${CLI}_${VSN}*
30 $ROOT/${CLI}/build-all-platforms.sh "$VSN"
34 for t in ${CLI}_${VSN}_* ; do
44 rm -rf $ROOT/${CLI}/dist/usr
45 mkdir -p $ROOT/${CLI}/dist/usr/local/bin
46 cp $ROOT/build/${CLI}_${VSN}_linux_amd64 $ROOT/${CLI}/dist/usr/local/bin/${CLI}
47 dpkg-deb --build ${ROOT}/${CLI}/dist build/${CLI}_${VSN}.deb
[all …]
/dports/science/axom/axom-0.6.1/src/thirdparty/axom/
H A DCLI11.patch11 namespace CLI {
16 } // namespace CLI
25 namespace CLI {
39 } // namespace CLI
48 namespace CLI {
71 namespace CLI {
85 namespace CLI {
99 namespace CLI {
122 namespace CLI {
145 namespace CLI {
[all …]
/dports/security/nikto/nikto-2.1.6/program/
H A Dnikto.pl75 if ($CLI{'host'} eq "") {
84 my @MARKS = set_targets($CLI{'host'}, $CLI{'ports'}, $CLI{'ssl'}, $CLI{'root'});
86 if (defined($CLI{'key'}) || defined($CLI{'cert'})) {
87 $CLI{'key'} = $CLI{'cert'} unless (defined($CLI{'key'}));
88 $CLI{'cert'} = $CLI{'key'} unless (defined($CLI{'cert'}));
108 if (defined $CLI{'vhost'}) { $mark->{'vhost'} = $CLI{'vhost'} }
125 report_head($CLI{'format'}, $CLI{'file'});
139 if (defined $CLI{'vhost'}) {
172 if ($CLI{'findonly'}) {
191 if (!$CLI{'findonly'}) {
[all …]
/dports/multimedia/mediainfo/MediaInfo_CLI_GNU_FromSource/MediaInfo/Release/
H A DRelease_CLI_GNU_FromSource.sh19 cd ../Project/GNU/CLI
28 cp ../Project/GNU/CLI/aclocal.m4 MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
29 cp ../Project/GNU/CLI/autogen.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
31 cp ../Project/GNU/CLI/config.sub MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
32 cp ../Project/GNU/CLI/configure MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
34 cp ../Project/GNU/CLI/depcomp MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
35 cp ../Project/GNU/CLI/install-sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
36 cp ../Project/GNU/CLI/ltmain.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
39 cp ../Project/GNU/CLI/missing MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
47 cp -r ../Source/CLI/*.h MediaInfo_CLI_GNU_FromSource/Source/CLI/
[all …]
/dports/multimedia/libzen/MediaInfo_CLI_GNU_FromSource/MediaInfo/Release/
H A DRelease_CLI_GNU_FromSource.sh19 cd ../Project/GNU/CLI
28 cp ../Project/GNU/CLI/aclocal.m4 MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
29 cp ../Project/GNU/CLI/autogen.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
31 cp ../Project/GNU/CLI/config.sub MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
32 cp ../Project/GNU/CLI/configure MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
34 cp ../Project/GNU/CLI/depcomp MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
35 cp ../Project/GNU/CLI/install-sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
36 cp ../Project/GNU/CLI/ltmain.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
39 cp ../Project/GNU/CLI/missing MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
47 cp -r ../Source/CLI/*.h MediaInfo_CLI_GNU_FromSource/Source/CLI/
[all …]
/dports/multimedia/libmediainfo/MediaInfo_CLI_GNU_FromSource/MediaInfo/Release/
H A DRelease_CLI_GNU_FromSource.sh19 cd ../Project/GNU/CLI
28 cp ../Project/GNU/CLI/aclocal.m4 MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
29 cp ../Project/GNU/CLI/autogen.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
31 cp ../Project/GNU/CLI/config.sub MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
32 cp ../Project/GNU/CLI/configure MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
34 cp ../Project/GNU/CLI/depcomp MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
35 cp ../Project/GNU/CLI/install-sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
36 cp ../Project/GNU/CLI/ltmain.sh MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
39 cp ../Project/GNU/CLI/missing MediaInfo_CLI_GNU_FromSource/Project/GNU/CLI/
47 cp -r ../Source/CLI/*.h MediaInfo_CLI_GNU_FromSource/Source/CLI/
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/sqlitestudiocli/
H A Dcli.cpp28 CLI* CLI::instance = nullptr;
30 CLI::CLI(QObject* parent) : in CLI() function in CLI
49 CLI::~CLI() in ~CLI()
54 CLI* CLI::getInstance() in getInstance()
62 void CLI::dispose() in dispose()
67 void CLI::start() in start()
121 void CLI::exit() in exit()
205 void CLI::loadHistory() in loadHistory()
267 void CLI::doWork() in doWork()
339 void CLI::done() in done()
[all …]
/dports/audio/bristol/bristol-0.60.10/memory/profiles/
H A Drealistic32 CLI: set history 50
33 CLI: set line 80
37 CLI: set panel 0
38 CLI: set cli h left
39 CLI: set cli l right
41 CLI: set cli k inc
44 CLI: set cli j dec
46 CLI: set cli M memUp
48 CLI: set cli r read
54 CLI: set cli U up
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/
H A Dmk158 .PHONY: ./CLI/miniooni
160 ./CLI/darwin/amd64/miniooni \
161 ./CLI/darwin/arm64/miniooni \
162 ./CLI/linux/386/miniooni \
163 ./CLI/linux/amd64/miniooni \
167 ./CLI/windows/amd64/miniooni.exe
189 .PHONY: ./CLI/linux/386/miniooni
202 .PHONY: ./CLI/linux/arm/miniooni
230 .PHONY: ./CLI/ooniprobe/darwin
317 .PHONY: ./CLI/ooniprobe/linux
[all …]

12345678910>>...245