Home
last modified time | relevance | path

Searched refs:pythonpath (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Modules/
Dgetpath.py230 pythonpath = config.get('module_search_paths') variable
474 pythonpath = [] variable
655 pythonpath = [] variable
660 pythonpath.append(abspath(p))
669 pythonpath.append(joinpath(library_dir, ZIP_LANDMARK))
672 pythonpath.append(joinpath(PREFIX, ZIP_LANDMARK))
674 pythonpath.append(joinpath(prefix, ZIP_LANDMARK))
692 pythonpath.extend(v.split(DELIM))
700 pythonpath.extend(v.split(DELIM))
709 pythonpath.append(joinpath(prefix, p))
[all …]
/external/bcc/tests/lua/
Dtest_uprobes.lua57 local pythonpath = "/usr/bin/python3"
59 b:attach_uprobe{name=pythonpath, sym=symname, fn_name="count"}
60 b:attach_uprobe{name=pythonpath, sym=symname, fn_name="count", retprobe=true}
62 os.spawn(pythonpath .. " -V")
/external/bcc/tests/python/
Dtest_uprobes.py59 pythonpath = b"/usr/bin/python3"
61 b.attach_uprobe(name=pythonpath, sym=symname, fn_name=b"count")
62 b.attach_uretprobe(name=pythonpath, sym=symname, fn_name=b"count")
63 with os.popen(pythonpath.decode() + " -V") as f:
66 b.detach_uretprobe(name=pythonpath, sym=symname)
67 b.detach_uprobe(name=pythonpath, sym=symname)
/external/python/cpython2/Tools/scripts/
Dwin_add2path.py21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))
22 scripts = os.path.join(pythonpath, "Scripts")
37 for path in (pythonpath, scripts, userscripts):
/external/python/cpython3/Tools/scripts/
Dwin_add2path.py21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))
22 scripts = os.path.join(pythonpath, "Scripts")
38 for path in (pythonpath, scripts, userscripts):
/external/cronet/testing/pytype_common/
Dpytype_runner.py134 pythonpath = ':'.join(python_paths)
140 pythonpath,
/external/python/cpython2/Modules/
Dgetpath.c374 char *pythonpath = PYTHONPATH; in calculate_path() local
385 char *defpath = pythonpath; in calculate_path()
605 defpath = pythonpath; in calculate_path()
/external/python/bumble/
Dpyproject.toml9 pythonpath = "."
/external/toolchain-utils/toolchain_utils_githooks/
Dcheck-presubmit173 pythonpath = m.group(1)
180 pythonpath_additions=pythonpath,
Dcheck-presubmit.py173 pythonpath = m.group(1)
180 pythonpath_additions=pythonpath,
/external/python/cpython3/Lib/test/
Dtest_venv.py592 pythonpath = os.pathsep.join(
605 env={"PYTHONPATH": pythonpath,
Dtest_getpath.py854 pythonpath=None,
/external/python/setuptools/setuptools/command/
Deasy_install.py488 pythonpath = os.environ.get('PYTHONPATH', '')
489 log.warn(self.__no_default_msg, self.install_dir, pythonpath)