Home
last modified time | relevance | path

Searched refs:start_new_session (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/
Dwebbrowser.py199 start_new_session=True)
239 stderr=inout, start_new_session=True)
384 start_new_session=True)
397 start_new_session=True)
Dsubprocess.py757 restore_signals=True, start_new_session=False, argument
955 start_new_session)
1667 start_new_session): argument
1702 and not start_new_session
1759 restore_signals, start_new_session,
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_subprocess.py164 start_new_session=True,
Dtest_events.py1970 start_new_session=True)
/external/python/cpython3/Doc/library/
Dsubprocess.rst342 start_new_session=False, pass_fds=(), \*, group=None, \
490 The *start_new_session* parameter can take the place of a previously
548 If *start_new_session* is true the setsid() system call will be made in the
552 *start_new_session* was added.
/external/perfetto/src/tracing/core/
Dtracing_service_impl_unittest.cc3586 auto start_new_session = [&](uid_t uid) -> MockConsumer* { in TEST_F() local
3601 start_new_session(/*uid=*/static_cast<uid_t>(i) % kUids); in TEST_F()
3606 auto* consumer = start_new_session(/*uid=*/static_cast<uid_t>(i) % kUids); in TEST_F()
/external/python/cpython3/Lib/test/
Dtest_subprocess.py1776 start_new_session=True)
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1459 * *preexec_fn*, *pass_fds*, *cwd* and *start_new_session* parameters
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst2518 The webbrowser module now uses subprocess's start_new_session=True rather
/external/python/cpython3/Misc/
DHISTORY1484 - The webbrowser module now uses subprocess's start_new_session=True rather
13681 - subprocess.Popen now has restore_signals and start_new_session features. The