Home
last modified time | relevance | path

Searched refs:mycmd (Results 1 – 25 of 149) sorted by relevance

123456

/dports/security/py-muacrypt/muacrypt-0.9.1/test_muacrypt/
H A Dtest_cmdline.py14 def account_maker(mycmd): argument
17 acc = mycmd.get_account(name)
34 def test_init_and_make_header(mycmd): argument
61 out = mycmd.run_ok(["status"], """
101 mycmd.run_ok(["status"])
174 mycmd.run_ok(["status"], """
180 mycmd.run_ok(["status"], """
184 mycmd.run_ok(["del-account"])
185 mycmd.run_ok(["status"], """
198 mycmd.run_ok(["add-account"])
[all …]
/dports/devel/py-doit/doit-0.31.1/tests/
H A Dtest_cmd_base.py177 assert mycmd.loader.cmd_names == ['bar', 'foo']
182 mycmd = self.MyCmd(config={'foo':{'bar':'x'}})
183 assert mycmd.loader.config['foo'] == {'bar':'x'}
190 mycmd = self.MyCmd(task_loader=loader)
191 assert 'min' == mycmd.parse_execute([
205 mycmd = self.MyCmd(task_loader=loader)
210 mycmd = self.MyCmd(task_loader=loader)
229 mycmd.execute(params, args)
238 mycmd.execute(params, args)
239 assert mycmd.dep_manager.db_class is mycmd._backends['j2']
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/event_handlers/mod_kazoo/
H A Dkazoo_commands.c71 if (!zstr(mycmd) && *mycmd == '^' && *(mycmd+1) == '^') { in SWITCH_STANDARD_API()
72 mycmd += 2; in SWITCH_STANDARD_API()
73 delim = *mycmd++; in SWITCH_STANDARD_API()
168 switch_safe_free(mycmd); in kz_uuid_setvar()
191 char *uuid = mycmd; in kz_uuid_setvar_multi()
244 switch_safe_free(mycmd); in kz_uuid_setvar_multi()
446 uuid = mycmd + 5; in SWITCH_STANDARD_API()
455 input = mycmd; in SWITCH_STANDARD_API()
463 switch_safe_free(mycmd); in SWITCH_STANDARD_API()
486 uuid = mycmd + 5; in SWITCH_STANDARD_API()
[all …]
/dports/net-im/tkabber-plugins/tkabber-plugins-1.1.2/attline/
H A Dattline.tcl39 proc mycmd args { procedure
67 hook::add open_chat_post_hook [mycmd setup_chat_win]
70 hook::add close_chat_post_hook [mycmd cleanup]
72 hook::add draw_message_hook [mycmd on_draw_message] 5.5
73 hook::add got_focus_hook [mycmd on_focused]
74 hook::add lost_focus_hook [mycmd on_lost_focus]
84 hook::remove open_chat_post_hook [mycmd setup_chat_win]
86 hook::remove close_chat_post_hook [mycmd cleanup]
87 hook::remove draw_message_hook [mycmd on_draw_message] 5.5
88 hook::remove got_focus_hook [mycmd on_focused]
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/applications/mod_commands/
H A Dmod_commands.c914 char *mycmd = NULL; in SWITCH_STANDARD_API() local
919 mycmd = ""; in SWITCH_STANDARD_API()
1496 char *mycmd = NULL; in SWITCH_STANDARD_API() local
1562 char *mycmd; in SWITCH_STANDARD_API() local
1575 mycmd = dup; in SWITCH_STANDARD_API()
1579 if ((mycmd = strchr(p, ' ')) && *mycmd++) { in SWITCH_STANDARD_API()
1584 if (zstr(mycmd)) { in SWITCH_STANDARD_API()
1597 if (mycmd && (arg = strchr(mycmd, ' '))) { in SWITCH_STANDARD_API()
2865 char *mycmd = NULL; in SWITCH_STANDARD_API() local
6536 tz_name = mycmd; in SWITCH_STANDARD_API()
[all …]
/dports/sysutils/apcupsd/apcupsd-3.14.14/src/cgi/
H A Dupsimage.c41 static char mycmd[16] = ""; variable
114 strncpy (mycmd, value, sizeof(mycmd)); in parsearg()
115 mycmd[sizeof(mycmd) - 1] = '\0'; in parsearg()
432 if (strcmp(mycmd, "upsload") == 0) { in main()
435 } else if (strcmp(mycmd, "battcap") == 0) { in main()
438 } else if (strcmp(mycmd, "battvolt") == 0) { in main()
441 } else if (strcmp(mycmd, "utility") == 0) { in main()
444 } else if (strcmp(mycmd, "outputv") == 0) { in main()
447 } else if (strcmp(mycmd, "runtime") == 0) { in main()
/dports/sysutils/apcctrl/apcctrl-0.8.21/src/cgi/
H A Dupsimage.c41 static char mycmd[16] = ""; variable
114 strncpy (mycmd, value, sizeof(mycmd)); in parsearg()
115 mycmd[sizeof(mycmd) - 1] = '\0'; in parsearg()
432 if (strcmp(mycmd, "upsload") == 0) { in main()
435 } else if (strcmp(mycmd, "battcap") == 0) { in main()
438 } else if (strcmp(mycmd, "battvolt") == 0) { in main()
441 } else if (strcmp(mycmd, "utility") == 0) { in main()
444 } else if (strcmp(mycmd, "outputv") == 0) { in main()
447 } else if (strcmp(mycmd, "runtime") == 0) { in main()
/dports/editors/cream/cream-0.43/
H A Dcream-server.vim148 " let mycmd = "\<M-o>\<M-o>:call Cream_file_new()\<CR>"
150 " call remote_send(myserver, mycmd)
171 " " \ " mycmd = " . mycmd . "\n" .
191 " let mycmd = '<C-b>:edit ' . '+' . line('.') . ' ' . myfile . '<CR>'
194 " let mycmd = '<C-b>:call Cream_file_new()<CR>'
196 " call remote_send('GVIM', mycmd)
221 let mycmd = "<C-\\><C-n>:edit +" . line('.') . ' ' . myfile . '<CR>'
224 let mycmd = "<C-\\><C-n>:call Cream_file_new()<CR>"
226 call remote_send('CREAM', mycmd)
228 let mycmd = "<C-\\><C-n>:call Cream_tabpages_refresh()<CR><C-\\><C-n>:<CR>"
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/languages/mod_lua/
H A Dmod_lua.cpp238 char *mycmd = NULL; in lua_fetch() local
247 switch_assert(mycmd); in lua_fetch()
292 switch_safe_free(mycmd); in lua_fetch()
471 char *mycmd; local
480 mycmd = strdup((char *) data);
481 switch_assert(mycmd);
485 free(mycmd);
524 char *mycmd; local
531 mycmd = strdup(cmd);
532 switch_assert(mycmd);
[all …]
/dports/lang/tcl85/tcl8.5.19/tests/
H A DindexObj.test89 testwrongnumargs 1 "?option?" mycmd
90 } "wrong # args: should be \"mycmd ?option?\""
92 testwrongnumargs 2 "bar" mycmd foo
93 } "wrong # args: should be \"mycmd foo bar\""
95 testwrongnumargs 0 "bar" mycmd foo
98 testwrongnumargs 0 "" mycmd foo
101 testwrongnumargs 1 "" mycmd foo
102 } "wrong # args: should be \"mycmd\""
104 testwrongnumargs 2 "" mycmd foo
105 } "wrong # args: should be \"mycmd foo\""
/dports/science/jstrack/jstrack/extlib/tcllib1.19/uev/
H A Duevent_onidle.tcl18 set mycmd $cmd
34 uplevel \#0 $mycmd
41 variable mycmd {} ; # Command prefix of the action to perform
/dports/devel/tcllib/tcllib-1.20/modules/uev/
H A Duevent_onidle.tcl18 set mycmd $cmd
34 uplevel \#0 $mycmd
41 variable mycmd {} ; # Command prefix of the action to perform
/dports/devel/tcllibc/tcllib-1.20/modules/uev/
H A Duevent_onidle.tcl18 set mycmd $cmd
34 uplevel \#0 $mycmd
41 variable mycmd {} ; # Command prefix of the action to perform
/dports/lang/tcl86/tcl8.6.12/tests/
H A DindexObj.test93 testwrongnumargs 1 "?-switch?" mycmd
94 } "wrong # args: should be \"mycmd ?-switch?\""
96 testwrongnumargs 2 "bar" mycmd foo
97 } "wrong # args: should be \"mycmd foo bar\""
99 testwrongnumargs 0 "bar" mycmd foo
102 testwrongnumargs 0 "" mycmd foo
105 testwrongnumargs 1 "" mycmd foo
106 } "wrong # args: should be \"mycmd\""
108 testwrongnumargs 2 "" mycmd foo
109 } "wrong # args: should be \"mycmd foo\""
/dports/lang/tcl87/tcl8.7a5/tests/
H A DindexObj.test93 testwrongnumargs 1 "?-switch?" mycmd
94 } "wrong # args: should be \"mycmd ?-switch?\""
96 testwrongnumargs 2 "bar" mycmd foo
97 } "wrong # args: should be \"mycmd foo bar\""
99 testwrongnumargs 0 "bar" mycmd foo
102 testwrongnumargs 0 "" mycmd foo
105 testwrongnumargs 1 "" mycmd foo
106 } "wrong # args: should be \"mycmd\""
108 testwrongnumargs 2 "" mycmd foo
109 } "wrong # args: should be \"mycmd foo\""
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/applications/mod_av/
H A Dmod_av.c145 char *mycmd = NULL; in SWITCH_STANDARD_API() local
161 mycmd = strdup(cmd); in SWITCH_STANDARD_API()
162 argc = switch_split(mycmd, ' ', argv); in SWITCH_STANDARD_API()
188 switch_safe_free(mycmd); in SWITCH_STANDARD_API()
/dports/security/vuls/vuls-0.13.7/vendor/github.com/spf13/cobra/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/spf13/cobra/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/net/inlets/inlets-3.0.2/vendor/github.com/spf13/cobra/cobra-0.0.6/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/net/evans/evans-0.9.1/vendor/github.com/spf13/cobra/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/deskutils/ultralist/ultralist-1.7.0/vendor/github.com/spf13/cobra/cobra-1.0.0/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/devel/lab/lab-0.17.2/vendor/github.com/spf13/cobra/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/finance/cointop/cointop-1.5.4/vendor/github.com/spf13/cobra/cobra-0.0.5/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/spf13/cobra/cobra-1.0.0/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/spf13/cobra/cobra-0.0.5/
H A Dzsh_completions_test.go88 Use: "mycmd",
106 r := genTestCommand("mycmd", true)
120 Use: "mycmd",
121 Short: "mycmd short description",
430 r := genTestCommand("mycmd", false)

123456