Searched refs:executable (Results 1 - 13 of 13) sorted by relevance

/linux-master/tools/scripts/
H A Dutilities.mak139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
147 # is-executable
149 # Usage: bool-value = $(call is-executable,path)
154 is-executable = $(call _is-executable-helper,$(shell-sq))
155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y)
158 # get-executable
160 # Usage: absolute-executable
[all...]
/linux-master/tools/kvm/kvm_stat/
H A DMakefile11 a2x_path := $(call get-executable,$(A2X))
/linux-master/tools/testing/selftests/bpf/
H A Dtest_bpftool_build.sh45 find $dir -type f -executable -name bpftool -print -exec false {} + && \
/linux-master/include/linux/
H A Dbinfmts.h46 struct file *executable; /* Executable to pass to the interpreter */ member in struct:linux_binprm
59 int execfd; /* File descriptor of the executable */
128 #define EXSTACK_DISABLE_X 1 /* Disable executable stacks */
129 #define EXSTACK_ENABLE_X 2 /* Enable executable stacks */
/linux-master/scripts/dtc/
H A Ddtx_diff302 is not executable.
319 Fallback '${__DTC}' was also not in \${PATH} or is not executable.
/linux-master/tools/perf/Documentation/
H A DMakefile78 _tmp_tool_path := $(call get-executable,$(ASCIIDOC))
84 _tmp_tool_path := $(call get-executable,$(XMLTO))
/linux-master/tools/perf/
H A DMakefile.config195 ifeq ($(call get-executable,$(FLEX)),)
199 ifeq ($(call get-executable,$(BISON)),)
204 ifeq ($(call get-executable,$(PKG_CONFIG)),)
260 PYTHON_AUTO := $(if $(call get-executable,python2-config),python2-config,$(PYTHON_AUTO))
261 PYTHON_AUTO := $(if $(call get-executable,python-config),python-config,$(PYTHON_AUTO))
262 PYTHON_AUTO := $(if $(call get-executable,python3-config),python3-config,$(PYTHON_AUTO))
268 PYTHON_CONFIG_AUTO := $(call get-executable,$(PYTHON)-config)
275 # defined. get-executable-or-default fails with an error if the first argument is supplied but
277 override PYTHON_CONFIG := $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON_AUTO))
278 override PYTHON := $(call get-executable
[all...]
/linux-master/tools/perf/tests/shell/
H A Dtest_intel_pt.sh382 /* Get a memory page to store executable code */
392 /* Copy executable code to executable memory page */
/linux-master/fs/
H A Dexec.c13 * the header into memory. The inode of the executable is put into
14 * "current->executable", and page faults do the actual loading. Clean.
20 * current->executable is only used by the procfs. This allows a dispatch
119 * Note that a shared library must be both readable and executable due to
832 pr_warn_once("process '%pD4' started with executable stack\n",
1241 * These functions flushes out all traces of the currently running executable
1304 would_dump(bprm, bprm->executable);
1392 * install the new credentials for this executable
1419 fd_install(retval, bprm->executable);
1420 bprm->executable
[all...]
/linux-master/arch/arm/mm/
H A Dcache-v4wb.S110 tst r2, #VM_EXEC @ executable region?
/linux-master/Documentation/
H A DMakefile41 $(warning The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed and in PATH, or set the SPHINXBUILD make variable to point to the full path of the '$(SPHINXBUILD)' executable.)
/linux-master/tools/testing/selftests/kvm/lib/x86_64/
H A Dvmx.c27 uint64_t executable:1; member in struct:eptPageTableEntry
377 pte->executable = true;
/linux-master/kernel/events/
H A Dcore.c8632 int executable = vma->vm_flags & VM_EXEC; local
8634 return (!executable && event->attr.mmap_data) ||
8635 (executable && (event->attr.mmap || event->attr.mmap2));
8898 * to keep track of anything that isn't related to executable code:

Completed in 275 milliseconds