Searched refs:after_in_child (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/ |
D | random.py | 773 _os.register_at_fork(after_in_child=_inst.seed)
|
D | threading.py | 1347 _os.register_at_fork(after_in_child=_after_fork)
|
/external/python/cpython3/Lib/logging/ |
D | __init__.py | 236 after_in_child=_releaseLock, 273 after_in_child=_after_at_fork_weak_calls,
|
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 213 os.register_at_fork(after_in_child="three") 219 os.register_at_fork(after_in_child=None) 227 os.register_at_fork(before=lambda: None, after_in_child='')
|
/external/python/cpython3/Modules/clinic/ |
D | posixmodule.c.h | 1846 PyObject *after_in_child, PyObject *after_in_parent); 1855 PyObject *after_in_child = NULL; in os_register_at_fork() local 1859 &before, &after_in_child, &after_in_parent)) { in os_register_at_fork() 1862 return_value = os_register_at_fork_impl(module, before, after_in_child, after_in_parent); in os_register_at_fork()
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 5370 PyObject *after_in_child, PyObject *after_in_parent) in os_register_at_fork_impl() argument 5375 if (!before && !after_in_child && !after_in_parent) { in os_register_at_fork_impl() 5380 check_null_or_callable(after_in_child, "after_in_child") || in os_register_at_fork_impl() 5389 if (register_at_forker(&interp->after_forkers_child, after_in_child)) { in os_register_at_fork_impl()
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3389 after_in_child=None) 3399 * *after_in_child* is a function called from the child process.
|