Searched refs:get_exec_path (Results 1 – 6 of 6) sorted by relevance
/external/bpftool/src/ |
D | jit_disasm.c | 145 static int get_exec_path(char *tpath, size_t size) in get_exec_path() function 225 if (get_exec_path(tpath, sizeof(tpath))) { in init_context()
|
/external/python/cpython3/Lib/ |
D | os.py | 637 path_list = get_exec_path(env) 656 def get_exec_path(env=None): function
|
D | subprocess.py | 1893 for dir in os.get_exec_path(env))
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 1077 self.assertSequenceEqual(test_path, os.get_exec_path()) 1078 self.assertSequenceEqual(test_path, os.get_exec_path(env=None)) 1083 self.assertSequenceEqual(defpath_list, os.get_exec_path({})) 1085 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''})) 1087 self.assertSequenceEqual(test_path, os.get_exec_path(test_env)) 1099 self.assertRaises(ValueError, os.get_exec_path, mixed_env) 1102 self.assertSequenceEqual(os.get_exec_path({b'PATH': b'abc'}), 1104 self.assertSequenceEqual(os.get_exec_path({b'PATH': 'abc'}), 1106 self.assertSequenceEqual(os.get_exec_path({'PATH': b'abc'}),
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 342 .. function:: get_exec_path(env=None)
|
/external/python/cpython3/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
|