Home
last modified time | relevance | path

Searched refs:python (Results 1 – 25 of 142) sorted by relevance

123456

/freebsd-14.2/contrib/file/magic/Magdir/
H A Dpython4 # python: file(1) magic for python
234 !:mime text/x-script.python
237 !:mime text/x-script.python
240 !:mime text/x-script.python
247 !:mime text/x-script.python
253 !:mime text/x-script.python
260 !:mime text/x-script.python
265 !:mime text/x-script.python
282 !:mime text/x-script.python
284 !:mime text/x-script.python
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.cpp32 python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
33 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()
41 python::PythonDictionary result_dict(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()
47 python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
49 python::LLDBSWIGPython_CastPyObjectToSBError(p.get()))) in ExtractValueFromPythonObject()
60 python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
62 python::LLDBSWIGPython_CastPyObjectToSBData(p.get())); in ExtractValueFromPythonObject()
76 python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
78 python::LLDBSWIGPython_CastPyObjectToSBBreakpoint(p.get())); in ExtractValueFromPythonObject()
93 python::LLDBSWIGPython_CastPyObjectToSBAttachInfo(p.get())); in ExtractValueFromPythonObject()
[all …]
H A DScriptedPythonInterface.h46 using namespace python; in CheckAbstractMethodImplementation() local
78 using namespace python; in CreatePluginObject() local
233 using namespace python; in Dispatch() local
304 python::PythonObject Transform(bool arg) { in Transform()
306 return python::PythonBoolean(arg); in Transform()
351 python::PythonBoolean boolean_arg = python::PythonBoolean( in ReverseTransform()
407 fmt += python::PythonFormat<T>::format; in FormatArgs()
419 python::PythonObject &p, Status &error);
428 python::PythonObject &p, Status &error);
433 python::PythonObject &p, Status &error);
[all …]
/freebsd-14.2/sys/contrib/openzfs/config/
H A Dalways-python.m42 dnl # The majority of the python scripts are written to be compatible
8 AC_ARG_WITH([python],
9 AS_HELP_STRING([--with-python[=VERSION]],
10 [default system python version @<:@default=check@:>@]),
16 [3*], [PYTHON="python${with_python}"],
19 [AC_MSG_ERROR([Unknown --with-python value '$with_python'])]
H A Dax_python_devel.m427 # python. If you want it to continue, set optional to true, like
32 # user, you can disable the check for the python version by setting the
88 # Allow the use of a (user set) custom python version
95 AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]])
97 AC_MSG_WARN([Cannot find python$PYTHON_VERSION in your system path])
99 AC_MSG_ERROR([Giving up, python development not available])
296 print ('python'+c[['LDVERSION']])
298 print ('python'+c[['VERSION']])
398 AC_MSG_CHECKING(python extra libraries)
410 AC_MSG_CHECKING(python extra linking flags)
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h38 namespace python {
42 python::PythonObject ToSWIGHelper(void *obj, swig_type_info *info);
112 static python::ScopedPythonObject<lldb::SBCommandReturnObject>
114 static python::ScopedPythonObject<lldb::SBEvent> ToSWIGWrapper(Event *event);
139 static python::PythonObject
144 static python::PythonObject
149 static python::PythonObject LLDBSwigPythonCreateScriptedThreadPlan(
164 static python::PythonObject LLDBSwigPythonCreateScriptedBreakpointResolver(
173 static python::PythonObject LLDBSwigPythonCreateScriptedStopHook(
220 static python::PythonObject
[all …]
H A DScriptInterpreterPythonImpl.h393 python::PythonModule &GetMainModule();
395 python::PythonDictionary &GetSessionDictionary();
407 python::PythonObject m_saved_stdin;
408 python::PythonObject m_saved_stdout;
409 python::PythonObject m_saved_stderr;
410 python::PythonModule m_main_module;
411 python::PythonDictionary m_session_dict;
412 python::PythonDictionary m_sys_module_dict;
413 python::PythonObject m_run_one_line_function;
414 python::PythonObject m_run_one_line_str_global;
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig68 bool lldb_private::python::SWIGBridge::LLDBSwigPythonWatchpointCallbackFunction(
97 bool lldb_private::python::SWIGBridge::LLDBSwigPythonFormatterCallbackFunction(
119 bool lldb_private::python::SWIGBridge::LLDBSwigPythonCallTypeScript(
289 bool lldb_private::python::SWIGBridge::LLDBSWIGPythonCallThreadPlan(
327 bool lldb_private::python::SWIGBridge::LLDBSWIGPythonCallThreadPlan(
489 bool lldb_private::python::SWIGBridge::LLDBSwigPythonStopHookCallHandleStop(
781 bool lldb_private::python::SWIGBridge::LLDBSwigPythonCallCommand(
813 bool lldb_private::python::SWIGBridge::LLDBSwigPythonCallCommandObject(
885 void *lldb_private::python::SWIGBridge::LLDBSWIGPython_GetDynamicSetting(
996 bool lldb_private::python::SWIGBridge::LLDBSWIGPythonRunScriptKeywordValue(
[all …]
H A Dpython.swig40 a way that is incompatible with our usage of the python module as __init__.py
112 %include "python-typemaps.swig"
119 #include "../bindings/python/python-swigsafecast.swig"
121 using namespace lldb_private::python;
126 %include "python-extensions.swig"
127 %include "python-wrapper.swig"
/freebsd-14.2/contrib/ldns/packaging/fedora/
H A Dldns.spec22 BuildRequires: python-devel, swig
40 %package python
45 %description python
111 %files python
151 - Added ldns-python sub package
152 - Patch for installing ldns-python files
153 - Patch for rpath in ldns-python
/freebsd-14.2/sys/contrib/libsodium/test/default/
H A Dnacl-test-wrapper.sh24 command -v python >/dev/null 2>&1 || {
35 exec python "$SEL_LDR" "$exe"
/freebsd-14.2/contrib/unbound/
H A Dacx_python.m43 # Allow the use of a (user set) custom python version
10 AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]])
12 …AC_MSG_ERROR([Cannot find 'python$PYTHON_VERSION' in your system path. You can use the environment…
34 # on Debian 10, for python 2.7 and 3.7. So, we check the version,
132 AC_MSG_CHECKING([consistency of all components of python development environment])
153 Example: ./configure LDFLAGS="-L/usr/non-standard-path/python/lib"
/freebsd-14.2/contrib/ldns/
H A Dax_python_devel.m427 # user, you can disable the check for the python version by setting the
75 # Allow the use of a (user set) custom python version
82 AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]])
84 AC_MSG_ERROR([Cannot find python$PYTHON_VERSION in your system path])
217 print ('python'+c[['LDVERSION']])
219 print ('python'+c[['VERSION']])
222 # This small piece shamelessly adapted from PostgreSQL python macro;
264 AC_MSG_CHECKING(python extra libraries)
276 AC_MSG_CHECKING(python extra linking flags)
288 AC_MSG_CHECKING([consistency of all components of python development environment])
[all …]
/freebsd-14.2/contrib/file/python/
H A DCHANGELOG.md11 * Retain python 2 compatibility, factoring out the conversion functions.
13 * Restore python-2 compatibility.
H A DREADME.md10 python setup.py install
31 python setup.py test
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBExecutionContext.h19 namespace python {
57 friend class lldb_private::python::SWIGBridge;
H A DSBEvent.h18 namespace python {
76 friend class lldb_private::python::SWIGBridge;
H A DSBSymbolContext.h21 namespace python {
69 friend class lldb_private::python::SWIGBridge;
H A DSBWatchpoint.h16 namespace python {
91 friend class lldb_private::python::SWIGBridge;
H A DSBBreakpointLocation.h16 namespace python {
103 friend class lldb_private::python::SWIGBridge;
/freebsd-14.2/contrib/libcbor/
H A D.readthedocs.yaml12 python: "3.11"
19 python:
H A DBazel.md15 ```python
35 ```python
72 ```python
80 ```python
/freebsd-14.2/sys/contrib/openzfs/.github/workflows/
H A Dzfs-tests.yml24 libpam0g-dev pamtester python-dev python-setuptools python-cffi \
/freebsd-14.2/sys/contrib/openzfs/rpm/redhat/
H A Dzfs.spec.in262 Requires: python%{__python_pkg_version}
288 %package -n python%{__python_pkg_version}-pyzfs
296 Requires: python%{__python_pkg_version}
301 Requires: python%{__python_pkg_version}-cffi
311 BuildRequires: python%{__python_pkg_version}-packaging
312 BuildRequires: python%{__python_pkg_version}-devel
313 BuildRequires: python%{__python_pkg_version}-cffi
314 BuildRequires: python%{__python_pkg_version}-setuptools
320 %description -n python%{__python_pkg_version}-pyzfs
403 --with-python=%{__python} \
[all …]
/freebsd-14.2/sys/contrib/openzfs/rpm/generic/
H A Dzfs.spec.in262 Requires: python%{__python_pkg_version}
288 %package -n python%{__python_pkg_version}-pyzfs
296 Requires: python%{__python_pkg_version}
301 Requires: python%{__python_pkg_version}-cffi
311 BuildRequires: python%{__python_pkg_version}-packaging
312 BuildRequires: python%{__python_pkg_version}-devel
313 BuildRequires: python%{__python_pkg_version}-cffi
314 BuildRequires: python%{__python_pkg_version}-setuptools
320 %description -n python%{__python_pkg_version}-pyzfs
403 --with-python=%{__python} \
[all …]

123456