Home
last modified time | relevance | path

Searched refs:cmdSpec (Results 1 – 25 of 30) sorted by relevance

12

/dports/www/twiki/twiki/lib/TWiki/UI/
H A DMdrepoUI.pm195 my $cmdSpec = '';
218 $cmdSpec = $cmdSwitch{$cmdName} || '';
219 if ( $cmdSpec && $table ) {
221 $output = &{$cmdSpec->[0]}($session, $table, $recId, \%rec);
228 if ( !$cmdSpec ) {
257 $cmdSpec = $cmdSwitch{$cmdName} || '';
258 if ( $cmdSpec && $table ) {
281 $output = &{$cmdSpec->[0]}($session, $table, $recId, \%rec);
293 if ( !$cmdSpec ) {
/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltBeep.c81 static Blt_CmdSpec cmdSpec = local
84 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltCutbuffer.c256 static Blt_CmdSpec cmdSpec = local
259 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltDebug.c317 static Blt_CmdSpec cmdSpec = local
321 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltBusy.c1184 static Blt_CmdSpec cmdSpec = {"busy", BusyCmd, }; local
1188 cmdSpec.clientData = dataPtr;
1189 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltWatch.c841 static Blt_CmdSpec cmdSpec = local
849 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltVector.c2226 static Blt_CmdSpec cmdSpec = {"vector", VectorCmd, }; local
2235 cmdSpec.clientData = dataPtr;
2236 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
2249 static Blt_ObjCmdSpec cmdSpec = {"vector", VectorObjCmd, }; local
2258 cmdSpec.clientData = dataPtr;
2259 if (Blt_InitObjCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltBitmap.c1388 static Blt_CmdSpec cmdSpec = local
1394 cmdSpec.clientData = dataPtr;
1395 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltUtil.c1400 static Blt_CmdSpec cmdSpec = {"crc32", Crc32Cmd,}; local
1402 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltWinPrnt.c1460 static Blt_ObjCmdSpec cmdSpec = { in Blt_PrinterInit() local
1466 cmdSpec.clientData = dataPtr; in Blt_PrinterInit()
1467 if (Blt_InitObjCmd(interp, "blt", &cmdSpec) == NULL) { in Blt_PrinterInit()
H A DbltContainer.c1715 static Blt_CmdSpec cmdSpec = local
1719 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltTed.c1857 static Blt_CmdSpec cmdSpec = {"ted", TedCmd, }; local
1861 cmdSpec.clientData = dataPtr;
1862 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltTupleCmd.c3017 static Blt_ObjCmdSpec cmdSpec = { in Blt_TupleInit() local
3021 cmdSpec.clientData = interpDataPtr; in Blt_TupleInit()
3022 if (Blt_InitObjCmd(interp, "blt", &cmdSpec) == NULL) { in Blt_TupleInit()
H A DbltSpline.c1001 static Blt_CmdSpec cmdSpec = local
1004 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltBgexec.c2247 static Blt_CmdSpec cmdSpec = {"bgexec", BgexecCmd, }; local
2250 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltDragdrop.c2695 static Blt_CmdSpec cmdSpec = local
2700 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltTable.c4958 static Blt_CmdSpec cmdSpec = {"blttable", TableCmd, }; local
4962 cmdSpec.clientData = dataPtr;
4963 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltUnixDnd.c4740 static Blt_CmdSpec cmdSpec = local
4747 cmdSpec.clientData = dataPtr;
4748 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltWinop.c2626 static Blt_CmdSpec cmdSpec = {"winop", WinopCmd,}; local
2628 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
H A DbltHtext.c4505 static Blt_CmdSpec cmdSpec = local
4508 if (Blt_InitCmd(interp, "blt", &cmdSpec) == NULL) {
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/shake-0.19.4/src/General/
H A DProcess.hs128 cmdSpec :: CmdSpec -> CreateProcess
129 cmdSpec (ShellCommand x) = shell x function
130 cmdSpec (RawCommand x xs) = proc x xs function
161 …let cp = (cmdSpec poCommand){cwd = poCwd, env = poEnv, create_group = poGroup, close_fds = poClose…
/dports/devel/hs-shake/shake-0.19.6/src/General/
H A DProcess.hs128 cmdSpec :: CmdSpec -> CreateProcess
129 cmdSpec (ShellCommand x) = shell x function
130 cmdSpec (RawCommand x xs) = proc x xs function
161 …let cp = (cmdSpec poCommand){cwd = poCwd, env = poEnv, create_group = poGroup, close_fds = poClose…
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/shake-0.19.4/src/General/
H A DProcess.hs128 cmdSpec :: CmdSpec -> CreateProcess
129 cmdSpec (ShellCommand x) = shell x function
130 cmdSpec (RawCommand x xs) = proc x xs function
161 …let cp = (cmdSpec poCommand){cwd = poCwd, env = poEnv, create_group = poGroup, close_fds = poClose…
/dports/databases/libpqtypes/libpqtypes-1.5.1/src/
H A Dregression-test.c138 static PGresult *execf(const char *cmdSpec, ...);
333 static PGresult *execf(const char *cmdSpec, ...) in execf() argument
341 va_start(ap, cmdSpec); in execf()
342 n = PQputvf(prm, stmt, sizeof(stmt), cmdSpec, ap); in execf()
/dports/devel/hs-darcs/darcs-2.16.4/shelly/src/
H A DShelly.hs344 shellyProcess reusedHandles st cmdSpec = do
346 cmdspec = cmdSpec

12