Home
last modified time | relevance | path

Searched refs:cstdout (Results 1 – 11 of 11) sorted by relevance

/dports/devel/R-cran-rcmdcheck/rcmdcheck/R/
H A Dbackground.R73 private$cstdout <- c(private$cstdout, paste0(l, "\n"))
85 private$cstdout <- c(private$cstdout, l)
106 cstdout = character(), field in rcmdcheck_process
175 stdout = paste(win2unix(private$cstdout), collapse = ""),
/dports/devel/swig/swig-4.0.2/Examples/test-suite/octave/
H A Dfile_test_runme.m5 cstdout = file_test.GetStdOut(); variable
7 file_test.nfile(cstdout);
/dports/devel/swig/swig-4.0.2/Examples/test-suite/python/
H A Dfile_test_runme.py7 cstdout = file_test.GetStdOut() variable
9 file_test.nfile(cstdout)
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/Microsoft/hcsshim/cmd/runhcs/
H A Dshim.go221 cstdin, cstdout, cstderr, err := p.Stdio()
261 if cstdout != nil {
264 io.Copy(stdout, cstdout)
266 cstdout.Close()
/dports/editors/textadept/lua-5.3.5/src/
H A Dloslib.c474 GIOChannel *cstdout, *cstderr; member
548 if (!g_io_channel_get_buffered(p->cstdout)) in proc_read()
549 g_io_channel_set_buffered(p->cstdout, true); // needed for functions below in proc_read()
553 status = g_io_channel_read_line_string(p->cstdout, s, NULL, &error); in proc_read()
556 status = g_io_channel_read_to_end(p->cstdout, &buf, &len, &error); in proc_read()
562 status = g_io_channel_read_chars(p->cstdout, buf, bytes, &len, &error); in proc_read()
564 if ((g_io_channel_get_buffer_condition(p->cstdout) & G_IO_IN) == 0) in proc_read()
565 g_io_channel_set_buffered(p->cstdout, false); // needed for stdout callback in proc_read()
673 int r = (source == p->cstdout) ? p->stdout_cb : p->stderr_cb; in ch_read()
912 p->cstdout = new_channel(p->fstdout, p, p->stdout_cb > 0); in os_spawn()
[all …]
/dports/editors/textadept/textadept_11.1.linux/src/
H A Dlua.patch136 + GIOChannel *cstdout, *cstderr;
210 + if (!g_io_channel_get_buffered(p->cstdout))
211 + g_io_channel_set_buffered(p->cstdout, true); // needed for functions below
215 + status = g_io_channel_read_line_string(p->cstdout, s, NULL, &error);
218 + status = g_io_channel_read_to_end(p->cstdout, &buf, &len, &error);
224 + status = g_io_channel_read_chars(p->cstdout, buf, bytes, &len, &error);
226 + if ((g_io_channel_get_buffer_condition(p->cstdout) & G_IO_IN) == 0)
320 + g_source_remove_by_user_data(p); // disconnect cstdout watch
335 + int r = (source == p->cstdout) ? p->stdout_cb : p->stderr_cb;
574 + p->cstdout = new_channel(p->fstdout, p, p->stdout_cb > 0);
[all …]
/dports/editors/textadept/textadept-textadept_11.1/src/
H A Dlua.patch136 + GIOChannel *cstdout, *cstderr;
210 + if (!g_io_channel_get_buffered(p->cstdout))
211 + g_io_channel_set_buffered(p->cstdout, true); // needed for functions below
215 + status = g_io_channel_read_line_string(p->cstdout, s, NULL, &error);
218 + status = g_io_channel_read_to_end(p->cstdout, &buf, &len, &error);
224 + status = g_io_channel_read_chars(p->cstdout, buf, bytes, &len, &error);
226 + if ((g_io_channel_get_buffer_condition(p->cstdout) & G_IO_IN) == 0)
320 + g_source_remove_by_user_data(p); // disconnect cstdout watch
335 + int r = (source == p->cstdout) ? p->stdout_cb : p->stderr_cb;
574 + p->cstdout = new_channel(p->fstdout, p, p->stdout_cb > 0);
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Dcontainer_resource.py242 cstdout, cstderr = proc.recv()
243 if cstdout:
244 stdout += cstdout
H A Dcmdmod.py817 cstdout, cstderr = proc.recv()
819 cstdout, cstderr = "", ""
820 if cstdout:
821 stdout += cstdout
/dports/lang/nim/nim-1.6.2/lib/system/
H A Dgc_common.nim64 c_fprintf(cstdout, "[Heap] %s: #%ld; bytes: %ld\n", a[i][0], a[i][1], a[i][2])
65 c_fprintf(cstdout, "[Heap] total number of bytes: %ld\n", totalAllocated)
68 c_fprintf(cstdout, "[Heap] allocs/deallocs: %ld/%ld\n", allocs, deallocs)
72 c_fprintf(cstdout, "[Heap] ROOTS: #%ld\n", gch.additionalRoots.len)
H A Dansi_c.nim162 cstdout* {.importc: stdoutName, header: "<stdio.h>".}: CFilePtr