Home
last modified time | relevance | path

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

/third_party/glib/gio/
Dgsubprocesslauncher.c164 self->stdin_fd = -1; in g_subprocess_launcher_init()
364 gint stdin_fd = -1, stdout_fd = -1, stderr_fd = -1; in g_subprocess_launcher_set_flags() local
367 stdin_fd = self->stdin_fd; in g_subprocess_launcher_set_flags()
375 if (verify_disposition ("stdin", flags & ALL_STDIN_FLAGS, stdin_fd, stdin_path) && in g_subprocess_launcher_set_flags()
423 if (verify_disposition ("stdin", self->flags & ALL_STDIN_FLAGS, self->stdin_fd, path)) in g_subprocess_launcher_set_stdin_file_path()
461 assign_fd (&self->stdin_fd, fd); in g_subprocess_launcher_take_stdin_fd()
647 if (self->stdin_fd != -1) in g_subprocess_launcher_close()
648 close (self->stdin_fd); in g_subprocess_launcher_close()
649 self->stdin_fd = -1; in g_subprocess_launcher_close()
Dgsubprocesslauncher-private.h36 gint stdin_fd; member
Dgsubprocess.c303 gint stdin_fd = -1, stdout_fd = -1, stderr_fd = -1; in initable_init() local
328 if (self->launcher->stdin_fd != -1) in initable_init()
329 stdin_fd = self->launcher->stdin_fd; in initable_init()
332 stdin_fd = close_fds[0] = unix_open_file (self->launcher->stdin_path, O_RDONLY, error); in initable_init()
333 if (stdin_fd == -1) in initable_init()
402 stdin_fd, stdout_fd, stderr_fd, in initable_init()
Dgdesktopappinfo.h185 gint stdin_fd,
Dgdesktopappinfo.c2744 gint stdin_fd, in g_desktop_app_info_launch_uris_with_spawn() argument
2858 stdin_fd, in g_desktop_app_info_launch_uris_with_spawn()
3037 gint stdin_fd, in g_desktop_app_info_launch_uris_internal() argument
3059 stdin_fd, stdout_fd, stderr_fd, error); in g_desktop_app_info_launch_uris_internal()
3302 gint stdin_fd, in g_desktop_app_info_launch_uris_as_manager_with_fds() argument
3315 stdin_fd, in g_desktop_app_info_launch_uris_as_manager_with_fds()
/third_party/glib/glib/
Dgspawn.c188 gint stdin_fd,
869 gint stdin_fd, in g_spawn_async_with_pipes_and_fds() argument
890 g_return_val_if_fail (stdin_pipe_out == NULL || stdin_fd < 0, FALSE); in g_spawn_async_with_pipes_and_fds()
912 stdin_fd, in g_spawn_async_with_pipes_and_fds()
950 gint stdin_fd, in g_spawn_async_with_fds() argument
961 g_return_val_if_fail (stdin_fd < 0 || in g_spawn_async_with_fds()
980 stdin_fd, in g_spawn_async_with_fds()
1557 gint stdin_fd, in do_exec() argument
1586 if (stdin_fd >= 0) in do_exec()
1589 if (safe_dup2 (stdin_fd, 0) < 0) in do_exec()
[all …]
Dgspawn-win32.c546 gint stdin_fd, in fork_exec() argument
572 g_assert (stdin_pipe_out == NULL || stdin_fd < 0); in fork_exec()
586 stdin_fd = stdin_pipe[0]; in fork_exec()
605 if (stdin_fd == -1 && stdout_fd == -1 && stderr_fd == -1 && in fork_exec()
673 if (stdin_fd != -1) in fork_exec()
675 _g_sprintf (args[ARG_STDIN], "%d", stdin_fd); in fork_exec()
1216 gint stdin_fd, in g_spawn_async_with_fds() argument
1222 g_return_val_if_fail (stdin_fd == -1 || in g_spawn_async_with_fds()
1227 g_return_val_if_fail (stdin_fd == -1 || in g_spawn_async_with_fds()
1242 stdin_fd, in g_spawn_async_with_fds()
[all …]
Dgspawn.h223 gint stdin_fd,
244 gint stdin_fd,
/third_party/flutter/skia/third_party/externals/wuffs/example/zcat/
Dzcat.c111 const int stdin_fd = 0; in decode() local
113 read(stdin_fd, src.data.ptr + src.meta.wi, src.data.len - src.meta.wi); in decode()
/third_party/flutter/skia/third_party/externals/wuffs/script/
Dbench-c-deflate-fragmentation.c131 const int stdin_fd = 0; in read_stdin() local
132 ssize_t n = read(stdin_fd, src_buffer + src_len, SRC_BUFFER_SIZE - src_len); in read_stdin()
/third_party/gstreamer/gstreamer/tools/
Dgst-inspect.c1956 gint stdin_fd; in redirect_stdout() local
1974 NULL, NULL, &child_pid, &stdin_fd, in redirect_stdout()
1989 dup2 (stdin_fd, STDOUT_FILENO); in redirect_stdout()
1991 dup2 (stdin_fd, STDERR_FILENO); in redirect_stdout()
1992 close (stdin_fd); in redirect_stdout()