Home
last modified time | relevance | path

Searched refs:interpreter (Results 1 – 25 of 163) sorted by relevance

1234567

/OK3568_Linux_fs/buildroot/support/testing/tests/package/
H A Dtest_python.py12 interpreter = "python" variable in TestPythonBase
22 cmd = self.interpreter + " --version 2>&1 | grep '^{}'".format(version)
26 cmd = self.interpreter + " -c 'import math; math.floor(12.3)'"
30 cmd = self.interpreter + " -c 'from __future__ import print_function;"
37 cmd = self.interpreter + " -c 'import zlib'"
115 cmd = self.interpreter + " " + os.path.basename(script)
H A Dtest_python_click.py8 cmd = self.interpreter + " sample_python_click.py --help"
13 cmd = self.interpreter + " sample_python_click.py 123"
18 cmd = self.interpreter + " sample_python_click.py --bar 456"
23 cmd = self.interpreter + " sample_python_click.py"
H A Dtest_python_argh.py9 cmd = self.interpreter + " sample_python_argh.py -h"
14 cmd = self.interpreter + " sample_python_argh.py 123"
19 cmd = self.interpreter + " sample_python_argh.py --bar 456"
24 cmd = self.interpreter + " sample_python_argh.py"
H A Dtest_python_django.py14 cmd = "cd /opt/testsite && " + self.interpreter + " ./manage.py migrate"
19 cmd = "cd /opt/testsite && " + self.interpreter + " ./manage.py runserver 0.0.0.0:1234 & "
H A Dtest_ipython.py17 interpreter = "ipython" variable in TestIPythonPy3
H A Dtest_python_pytest_asyncio.py18 cmd = self.interpreter + " -m pytest " + os.path.basename(script)
H A Dtest_python_pytest.py17 cmd = self.interpreter + " -m pytest " + os.path.basename(script)
H A Dtest_python_gpiozero.py9 cmd = self.interpreter + " sample_python_gpiozero.py"
H A Dtest_python_unittest_xml_reporting.py18 cmd = "%s %s" % (self.interpreter, os.path.basename(self.sample_scripts[0]))
H A Dtest_python_treq.py8 cmd = self.interpreter + " sample_python_treq.py"
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/cairo/
H A Dcairo_1.16.0.bb18 LICENSE:${PN}-script-interpreter = "MPL-1.1 | LGPL-2.1-only"
87 PACKAGES =+ "cairo-gobject cairo-script-interpreter cairo-perf-utils"
92 SUMMARY:cairo-script-interpreter = "The Cairo library script interpreter"
93 DESCRIPTION:cairo-script-interpreter = "The Cairo script interpreter implements \
101 FILES:${PN}-script-interpreter = "${libdir}/libcairo-script-interpreter.so.*"
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dbinfmt-misc.rst8 To achieve this you must tell binfmt_misc which interpreter has to be invoked
19 ``:name:type:offset:magic:mask:interpreter:flags`` (where you can choose the
49 - ``interpreter``
54 of the interpreter. It is a string of capital letters, each controls a
69 of the binary to the interpreter as an argument. When this flag is
72 the interpreter to execute non-readable binaries. This feature
73 should be used with care - the interpreter has to be trusted not to
78 the interpreter. When this flag is included, these attributes are
80 This feature should be used with care as the interpreter
98 - the interpreter string may not exceed 127 characters
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-installer/
H A Dinterpreter.patch18 + "--interpreter",
22 + help=f"interpreter (defaults to {sys.executable})",
31 - interpreter=sys.executable,
32 + interpreter=args.interpreter,
/OK3568_Linux_fs/kernel/fs/
H A Dbinfmt_misc.c59 const char *interpreter; /* filename of interpreter */ member
172 retval = copy_string_kernel(fmt->interpreter, bprm); in load_misc_binary()
178 retval = bprm_change_interp(fmt->interpreter, bprm); in load_misc_binary()
187 interp_file = open_exec(fmt->interpreter); in load_misc_binary()
193 bprm->interpreter = interp_file; in load_misc_binary()
444 e->interpreter = p; in create_entry()
449 if (!e->interpreter[0]) in create_entry()
451 pr_debug("register: interpreter: {%s}\n", e->interpreter); in create_entry()
513 dp += sprintf(dp, "%s\ninterpreter %s\n", status, e->interpreter); in entry_status()
658 f = open_exec(e->interpreter); in bm_register_write()
[all …]
H A Dbinfmt_elf.c589 struct file *interpreter, in load_elf_interp() argument
609 if (!interpreter->f_op->mmap) in load_elf_interp()
634 map_addr = elf_map(interpreter, load_addr + vaddr, in load_elf_interp()
822 struct file *interpreter = NULL; /* to shut gcc up */ in load_elf_binary() local
895 interpreter = open_exec(elf_interpreter); in load_elf_binary()
897 retval = PTR_ERR(interpreter); in load_elf_binary()
898 if (IS_ERR(interpreter)) in load_elf_binary()
905 would_dump(bprm, interpreter); in load_elf_binary()
914 retval = elf_read(interpreter, interp_elf_ex, in load_elf_binary()
946 if (interpreter) { in load_elf_binary()
[all …]
H A Dbinfmt_elf_fdpic.c194 struct file *interpreter = NULL; /* to shut gcc up */ in load_elf_fdpic_binary() local
262 interpreter = open_exec(interpreter_name); in load_elf_fdpic_binary()
263 retval = PTR_ERR(interpreter); in load_elf_fdpic_binary()
264 if (IS_ERR(interpreter)) { in load_elf_fdpic_binary()
265 interpreter = NULL; in load_elf_fdpic_binary()
274 would_dump(bprm, interpreter); in load_elf_fdpic_binary()
277 retval = kernel_read(interpreter, bprm->buf, in load_elf_fdpic_binary()
304 if (!is_elf(&interp_params.hdr, interpreter)) in load_elf_fdpic_binary()
310 retval = elf_fdpic_fetch_phdrs(&interp_params, interpreter); in load_elf_fdpic_binary()
391 retval = elf_fdpic_map_file(&interp_params, interpreter, in load_elf_fdpic_binary()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0001-huge_page_setup_helper-use-python3-interpreter.patch4 Subject: [PATCH] huge_page_setup_helper: use python3 interpreter
7 interpreter explicitly. This removes dependency to python2 and will not
/OK3568_Linux_fs/buildroot/package/python3/
H A D0009-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch9 Python interpreter. When cross-compiling, this means that the adjusted
10 shebang refers to the host Python interpreter.
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/apache2/apache2/
H A D0008-Fix-perl-install-directory-to-usr-bin.patch11 bad interpreter: No such file or directory
28 - perlbin="/replace/with/path/to/perl/interpreter"
/OK3568_Linux_fs/buildroot/package/lua/
H A DConfig.in60 Enables command-line editing in the Lua interpreter.
66 Enables command-line editing in the Lua interpreter.
/OK3568_Linux_fs/buildroot/package/rt-tests/
H A DConfig.in15 therefore requires the Python interpreter. It will only be
16 installed if a Python interpreter has been selected in the
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dpython_pep517.bbclass18 # The interpreter to use for installed scripts
47 …nativepython3 -m installer ${INSTALL_WHEEL_COMPILE_BYTECODE} --interpreter "${USRBINPATH}/env ${PE…
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/
H A D0021-Replace-echo-with-printf-builtin-in-nscd-init-script.patch6 The nscd init script calls for #! /bin/bash interpreter
9 switch the shell interpreter to #!/bin/sh.
/OK3568_Linux_fs/buildroot/package/cairo/
H A Dcairo.mk35 --enable-interpreter=no
42 --enable-interpreter=no \
/OK3568_Linux_fs/buildroot/package/ghostscript/
H A DConfig.in11 Ghostscript is an interpreter for PostScript and Portable

1234567