Searched refs:get_exec_path (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/ |
D | os.py | 600 path_list = get_exec_path(env) 619 def get_exec_path(env=None): function
|
D | subprocess.py | 1772 for dir in os.get_exec_path(env))
|
/third_party/python/Lib/test/ |
D | test_os.py | 1045 self.assertSequenceEqual(test_path, os.get_exec_path()) 1046 self.assertSequenceEqual(test_path, os.get_exec_path(env=None)) 1051 self.assertSequenceEqual(defpath_list, os.get_exec_path({})) 1053 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''})) 1055 self.assertSequenceEqual(test_path, os.get_exec_path(test_env)) 1067 self.assertRaises(ValueError, os.get_exec_path, mixed_env) 1070 self.assertSequenceEqual(os.get_exec_path({b'PATH': b'abc'}), 1072 self.assertSequenceEqual(os.get_exec_path({b'PATH': 'abc'}), 1074 self.assertSequenceEqual(os.get_exec_path({'PATH': b'abc'}),
|
/third_party/nghttp2/src/ |
D | util.h | 576 char *get_exec_path(int argc, char **const argv, const char *cwd);
|
D | util.cc | 781 char *get_exec_path(int argc, char **const argv, const char *cwd) { in get_exec_path() function
|
D | shrpx.cc | 566 util::get_exec_path(suconfig.argc, suconfig.argv, suconfig.cwd); in exec_binary()
|
/third_party/python/Doc/library/ |
D | os.rst | 317 .. function:: get_exec_path(env=None)
|
/third_party/python/Misc/ |
D | HISTORY | 13395 - Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value. 14150 - The os.get_exec_path() function to return the list of directories that will be
|