Searched refs:fork_exec (Results 1 – 6 of 6) sorted by relevance
/third_party/glib/glib/ |
D | gspawn.c | 170 static gboolean fork_exec (gboolean intermediate_child, 400 if (!fork_exec (FALSE, in g_spawn_sync() 625 return fork_exec (!(flags & G_SPAWN_DO_NOT_REAP_CHILD), in g_spawn_async_with_pipes() 894 return fork_exec (!(flags & G_SPAWN_DO_NOT_REAP_CHILD), in g_spawn_async_with_pipes_and_fds() 964 return fork_exec (!(flags & G_SPAWN_DO_NOT_REAP_CHILD), in g_spawn_async_with_fds() 1963 fork_exec (gboolean intermediate_child, in fork_exec() function
|
D | gspawn-win32.c | 534 fork_exec (gint *exit_status, in fork_exec() function 965 if (!fork_exec (&status, in g_spawn_sync() 1189 return fork_exec (NULL, in g_spawn_async_with_pipes() 1230 return fork_exec (NULL, in g_spawn_async_with_fds() 1290 return fork_exec (NULL, in g_spawn_async_with_pipes_and_fds()
|
/third_party/python/Lib/test/ |
D | test_capi.py | 114 self.assertRaises(TypeError, _posixsubprocess.fork_exec, 122 self.assertRaises(MemoryError, _posixsubprocess.fork_exec, 132 self.assertRaises(TypeError, _posixsubprocess.fork_exec,
|
D | test_subprocess.py | 1794 def test_exception_errpipe_normal(self, fork_exec): argument 1803 fork_exec.side_effect = proper_error 1811 def test_exception_errpipe_bad_data(self, fork_exec): argument 1823 fork_exec.side_effect = bad_error 3088 _posixsubprocess.fork_exec( 3137 _posixsubprocess.fork_exec(
|
/third_party/python/Lib/multiprocessing/ |
D | util.py | 452 return _posixsubprocess.fork_exec(
|
/third_party/python/Lib/ |
D | subprocess.py | 1775 self.pid = _posixsubprocess.fork_exec(
|