/linux-4.4.14/include/uapi/linux/ |
D | a.out.h | 43 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 45 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 46 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 47 #define N_SET_INFO(exec, magic, type, flags) \ argument 48 ((exec).a_info = ((magic) & 0xffff) \ 51 #define N_SET_MAGIC(exec, magic) \ argument 52 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff))) 54 #define N_SET_MACHTYPE(exec, machtype) \ argument 55 ((exec).a_info = \ 56 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16)) [all …]
|
D | cn_proc.h | 82 } exec; member
|
/linux-4.4.14/tools/perf/util/ |
D | comm.c | 82 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() argument 90 comm->exec = exec; in comm__new() 103 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument 115 if (exec) in comm__override() 116 comm->exec = true; in comm__override()
|
D | comm.h | 14 bool exec; member 22 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 25 bool exec);
|
D | thread.c | 116 if (comm->exec) in thread__exec_comm() 125 bool exec) in __thread__set_comm() argument 132 err = comm__override(curr, str, timestamp, exec); in __thread__set_comm() 136 new = comm__new(str, timestamp, exec); in __thread__set_comm() 141 if (exec) in __thread__set_comm()
|
D | thread.h | 61 bool exec);
|
D | probe-event.c | 202 static int convert_exec_to_group(const char *exec, char **result) in convert_exec_to_group() argument 208 exec_copy = strdup(exec); in convert_exec_to_group() 477 static int get_text_start_address(const char *exec, unsigned long *address) in get_text_start_address() argument 484 fd = open(exec, O_RDONLY); in get_text_start_address() 556 int ntevs, const char *exec) in add_exec_to_probe_trace_events() argument 561 if (!exec) in add_exec_to_probe_trace_events() 564 ret = get_text_start_address(exec, &stext); in add_exec_to_probe_trace_events() 571 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
|
D | machine.c | 470 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC; in machine__process_comm_event() local 473 if (exec) in machine__process_comm_event() 480 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) { in machine__process_comm_event()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | i915_gem_execbuffer.c | 94 struct drm_i915_gem_exec_object2 *exec, in eb_lookup_vmas() argument 108 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle)); in eb_lookup_vmas() 112 exec[i].handle, i); in eb_lookup_vmas() 120 obj, exec[i].handle, i); in eb_lookup_vmas() 157 vma->exec_entry = &exec[i]; in eb_lookup_vmas() 161 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle; in eb_lookup_vmas() 794 struct drm_i915_gem_exec_object2 *exec, in i915_gem_execbuffer_relocate_slow() argument 819 total += exec[i].relocation_count; in i915_gem_execbuffer_relocate_slow() 836 user_relocs = to_user_ptr(exec[i].relocs_ptr); in i915_gem_execbuffer_relocate_slow() 839 exec[i].relocation_count * sizeof(*reloc))) { in i915_gem_execbuffer_relocate_slow() [all …]
|
/linux-4.4.14/arch/sparc/mm/ |
D | tlb.c | 70 bool exec, bool huge) in tlb_batch_add_one() argument 76 if (exec) in tlb_batch_add_one() 156 bool exec = pte_exec(*pte); in tlb_batch_pmd_scan() local 158 tlb_batch_add_one(mm, vaddr, exec, false); in tlb_batch_pmd_scan() 196 bool exec = pte_exec(orig_pte); in set_pmd_at() local 198 tlb_batch_add_one(mm, addr, exec, true); in set_pmd_at() 199 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec, in set_pmd_at()
|
/linux-4.4.14/arch/score/mm/ |
D | cache.c | 83 int exec = (vma->vm_flags & VM_EXEC); in __update_cache() local 91 if (exec) in __update_cache() 176 int exec = vma->vm_flags & VM_EXEC; in flush_cache_range() local 205 if (exec) in flush_cache_range() 214 int exec = vma->vm_flags & VM_EXEC; in flush_cache_page() local 219 if (exec) in flush_cache_page()
|
/linux-4.4.14/drivers/leds/ |
D | leds-lp8501.c | 164 u8 exec; in lp8501_run_engine() local 182 ret = lp55xx_read(chip, LP8501_REG_ENABLE, &exec); in lp8501_run_engine() 189 exec = (exec & ~LP8501_EXEC_ENG1_M) | LP8501_RUN_ENG1; in lp8501_run_engine() 194 exec = (exec & ~LP8501_EXEC_ENG2_M) | LP8501_RUN_ENG2; in lp8501_run_engine() 199 exec = (exec & ~LP8501_EXEC_ENG3_M) | LP8501_RUN_ENG3; in lp8501_run_engine() 205 lp55xx_update_bits(chip, LP8501_REG_ENABLE, LP8501_EXEC_M, exec); in lp8501_run_engine()
|
D | leds-lp5562.c | 160 u8 exec; in lp5562_run_engine() local 182 ret = lp55xx_read(chip, LP5562_REG_ENABLE, &exec); in lp5562_run_engine() 189 exec = (exec & ~LP5562_EXEC_ENG1_M) | LP5562_RUN_ENG1; in lp5562_run_engine() 194 exec = (exec & ~LP5562_EXEC_ENG2_M) | LP5562_RUN_ENG2; in lp5562_run_engine() 199 exec = (exec & ~LP5562_EXEC_ENG3_M) | LP5562_RUN_ENG3; in lp5562_run_engine() 205 lp55xx_update_bits(chip, LP5562_REG_ENABLE, LP5562_EXEC_M, exec); in lp5562_run_engine()
|
D | leds-lp5521.c | 178 u8 exec; in lp5521_run_engine() local 197 ret = lp55xx_read(chip, LP5521_REG_ENABLE, &exec); in lp5521_run_engine() 204 exec = (exec & ~LP5521_EXEC_R_M) | LP5521_RUN_R; in lp5521_run_engine() 209 exec = (exec & ~LP5521_EXEC_G_M) | LP5521_RUN_G; in lp5521_run_engine() 214 exec = (exec & ~LP5521_EXEC_B_M) | LP5521_RUN_B; in lp5521_run_engine() 220 lp55xx_update_bits(chip, LP5521_REG_ENABLE, LP5521_EXEC_M, exec); in lp5521_run_engine()
|
D | leds-lp5523.c | 234 u8 exec; in lp5523_run_engine() local 252 ret = lp55xx_read(chip, LP5523_REG_ENABLE, &exec); in lp5523_run_engine() 259 exec = (exec & ~LP5523_EXEC_ENG1_M) | LP5523_RUN_ENG1; in lp5523_run_engine() 264 exec = (exec & ~LP5523_EXEC_ENG2_M) | LP5523_RUN_ENG2; in lp5523_run_engine() 269 exec = (exec & ~LP5523_EXEC_ENG3_M) | LP5523_RUN_ENG3; in lp5523_run_engine() 275 lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec); in lp5523_run_engine()
|
/linux-4.4.14/arch/alpha/kernel/ |
D | binfmt_loader.c | 10 struct exec *eh = (struct exec *)bprm->buf; in load_binary()
|
/linux-4.4.14/arch/mips/mm/ |
D | c-tx39.c | 169 int exec = vma->vm_flags & VM_EXEC; in tx39_flush_cache_page() local 203 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page() 205 if (exec) in tx39_flush_cache_page() 215 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page() 217 if (exec) in tx39_flush_cache_page()
|
D | c-r3k.c | 240 int exec = vma->vm_flags & VM_EXEC; in r3k_flush_cache_page() local 264 if (exec) in r3k_flush_cache_page()
|
D | cache.c | 132 int exec = !pte_no_exec(pte) && !cpu_has_ic_fills_f_dc; in __update_cache() local 144 if (exec || pages_do_alias(addr, address & PAGE_MASK)) in __update_cache()
|
D | c-r4k.c | 490 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_range() local 496 if (exec) in local_r4k_flush_cache_range() 503 int exec = vma->vm_flags & VM_EXEC; in r4k_flush_cache_range() local 505 if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) in r4k_flush_cache_range() 553 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_page() local 598 if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) { in local_r4k_flush_cache_page() 601 if (exec && !cpu_icache_snoops_remote_store) in local_r4k_flush_cache_page() 604 if (exec) { in local_r4k_flush_cache_page()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/timer/ |
D | base.c | 37 LIST_HEAD(exec); in nvkm_timer_alarm_trigger() 43 list_move_tail(&alarm->head, &exec); in nvkm_timer_alarm_trigger() 56 list_for_each_entry_safe(alarm, atemp, &exec, head) { in nvkm_timer_alarm_trigger()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/mxm/ |
D | mxms.c | 97 bool (*exec)(struct nvkm_mxm *, u8 *, void *), void *info) in mxms_foreach() 148 if (mxm->subdev.debug >= NV_DBG_DEBUG && (exec == NULL)) { in mxms_foreach() 170 if (!exec(mxm, desc, info)) in mxms_foreach()
|
D | base.c | 201 bool (*exec)(struct nvkm_mxm *, u8 version); member 219 if (shadow->exec(mxm, version)) { in mxm_shadow()
|
/linux-4.4.14/arch/x86/mm/ |
D | pageattr-test.c | 44 long lpg, gpg, spg, exec; member 53 s->lpg = s->gpg = s->spg = s->exec = 0; in print_split() 85 s->exec++; in print_split() 95 s->spg, s->lpg, s->gpg, s->exec, in print_split()
|
/linux-4.4.14/arch/alpha/include/uapi/asm/ |
D | a.out.h | 53 struct exec struct 89 (sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1))
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | gm204.c | 117 u32 exec, args; in gm204_devinit_post() local 135 ret = pmu_load(init, 0x04, post, &exec, &args); in gm204_devinit_post() 158 pmu_exec(init, exec); in gm204_devinit_post()
|
D | nv50.c | 141 struct nvbios_init exec = { in nv50_devinit_init() local 150 nvbios_exec(&exec); in nv50_devinit_init()
|
/linux-4.4.14/arch/cris/boot/tools/ |
D | build.c | 39 static int GCC_HEADER = sizeof(struct exec); 112 struct exec *ex = (struct exec *)buf; in main()
|
/linux-4.4.14/scripts/kconfig/ |
D | streamline_config.pl | 114 my $exec = $conf->{"exec"}; 118 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file";
|
D | qconf.cc | 903 headerPopup->exec(e->globalPos()); in contextMenuEvent() 1722 switch (mb.exec()) { in closeEvent() 1862 configApp->exec(); in main()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
D | hwsq.h | 74 hwsq_exec(struct hwsq *ram, bool exec) in hwsq_exec() argument 78 ret = nvkm_hwsq_fini(&ram->hwsq, exec); in hwsq_exec()
|
D | hwsq.c | 61 nvkm_hwsq_fini(struct nvkm_hwsq **phwsq, bool exec) in nvkm_hwsq_fini() argument 70 if (exec) in nvkm_hwsq_fini()
|
/linux-4.4.14/Documentation/ |
D | SAK.txt | 79 exec 3<&0 80 exec 4>&1 81 exec 5>&2
|
D | debugging-modules.txt | 16 echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe
|
D | java.txt | 65 exec 1>&2 105 exec 1>&2 116 exec 1>&2 130 exec 1>&2
|
D | gcov.txt | 250 find $GCDA -type d -exec mkdir -p $TEMPDIR/\{\} \; 251 find $GCDA -name '*.gcda' -exec sh -c 'cat < $0 > '$TEMPDIR'/$0' {} \; 252 find $GCDA -name '*.gcno' -exec sh -c 'cp -d $0 '$TEMPDIR'/$0' {} \;
|
D | magic-number.txt | 106 WANPIPE_MAGIC 0x414C4453 sdla_{dump,exec} include/linux/wanpipe.h
|
D | initrd.txt | 228 # exec chroot . what-follows <dev/console >dev/console 2>&1 244 - use relative paths for dev/console in the exec command
|
D | cachetlb.txt | 50 fork, and exec. 153 page table operations such as what happens during exit and exec.
|
D | dma-buf-sharing.txt | 431 - In order to avoid fd leaks on exec, the FD_CLOEXEC flag must be set 433 potential security hole. It could give the newly exec'd application
|
D | adding-syscalls.txt | 112 the exec'ed program. (However, resist the temptation to re-use the actual value
|
D | kernel-parameters.txt | 1468 programs exec'd, files mmap'd for exec, and all files 1476 programs exec'd, files mmap'd for exec, and all files
|
/linux-4.4.14/fs/ |
D | binfmt_aout.c | 163 put_user(bprm->exec, --sp); in create_aout_tables() 205 struct exec ex; in load_aout_binary() 211 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary() 343 struct exec ex; in load_aout_library()
|
D | exec.c | 696 bprm->exec -= stack_shift; in setup_arg_pages() 1073 void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec) in __set_task_comm() argument 1079 perf_event_comm(tsk, exec); in __set_task_comm() 1581 bprm->exec = bprm->p; in do_execveat_common()
|
D | binfmt_elf.c | 151 create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec, in create_elf_tables() argument 238 NEW_AUX_ENT(AT_PHDR, load_addr + exec->e_phoff); in create_elf_tables() 240 NEW_AUX_ENT(AT_PHNUM, exec->e_phnum); in create_elf_tables() 243 NEW_AUX_ENT(AT_ENTRY, exec->e_entry); in create_elf_tables() 253 NEW_AUX_ENT(AT_EXECFN, bprm->exec); in create_elf_tables() 281 bprm->exec = (unsigned long)sp; /* XXX: PARISC HACK */ in create_elf_tables()
|
D | binfmt_elf_fdpic.c | 652 NEW_AUX_ENT(AT_EXECFN, bprm->exec); in create_elf_fdpic_tables()
|
/linux-4.4.14/arch/x86/include/uapi/asm/ |
D | a.out.h | 4 struct exec struct
|
/linux-4.4.14/arch/m68k/include/uapi/asm/ |
D | a.out.h | 4 struct exec struct
|
/linux-4.4.14/tools/perf/tests/attr/ |
D | test-record-C0 | 8 # no enable on exec for CPU attached
|
/linux-4.4.14/arch/alpha/include/asm/ |
D | Kbuild | 5 generic-y += exec.h
|
/linux-4.4.14/arch/frv/include/asm/ |
D | Kbuild | 4 generic-y += exec.h
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | Kbuild | 3 generic-y += exec.h
|
/linux-4.4.14/arch/mn10300/include/asm/ |
D | Kbuild | 5 generic-y += exec.h
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | bus.h | 13 int nvkm_hwsq_fini(struct nvkm_hwsq **, bool exec);
|
D | pmu.h | 42 int nvkm_memx_fini(struct nvkm_memx **, bool exec);
|
/linux-4.4.14/arch/microblaze/include/asm/ |
D | Kbuild | 6 generic-y += exec.h
|
/linux-4.4.14/arch/m32r/include/asm/ |
D | Kbuild | 4 generic-y += exec.h
|
/linux-4.4.14/arch/mips/fw/arc/ |
D | salone.c | 23 return ARC_CALL4(exec, Path, Argc, Argv, Envp); in ArcExecute()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | dcb.c | 209 int (*exec)(struct nvkm_bios *, void *, int, u16)) in dcb_outp_foreach() 226 ret = exec(bios, data, idx, outp); in dcb_outp_foreach()
|
D | init.c | 63 init_exec_set(struct nvbios_init *init, bool exec) in init_exec_set() argument 65 if (exec) init->execute &= 0xfd; in init_exec_set() 76 init_exec_force(struct nvbios_init *init, bool exec) in init_exec_force() argument 78 if (exec) init->execute |= 0x04; in init_exec_force() 2199 void (*exec)(struct nvbios_init *); member 2280 if (opcode >= init_opcode_nr || !init_opcode[opcode].exec) { in nvbios_exec() 2285 init_opcode[opcode].exec(init); in nvbios_exec()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramfuc.h | 70 ramfuc_exec(struct ramfuc *ram, bool exec) in ramfuc_exec() argument 74 ret = nvkm_memx_fini(&ram->memx, exec); in ramfuc_exec()
|
D | ramgt215.c | 888 bool exec = nvkm_boolopt(device->cfgopt, "NvMemExec", true); in gt215_ram_prog() local 890 if (exec) { in gt215_ram_prog()
|
/linux-4.4.14/arch/alpha/boot/tools/ |
D | objstrip.c | 57 struct exec * aout; /* includes file & aout header */ in main() 197 aout = (struct exec *) buf; in main()
|
/linux-4.4.14/drivers/connector/ |
D | Kconfig | 20 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
|
D | cn_proc.c | 114 ev->event_data.exec.process_pid = task->pid; in proc_exec_connector() 115 ev->event_data.exec.process_tgid = task->tgid; in proc_exec_connector()
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | Kbuild | 8 generic-y += exec.h
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
D | memx.c | 71 nvkm_memx_fini(struct nvkm_memx **pmemx, bool exec) in nvkm_memx_fini() argument 87 if (exec) { in nvkm_memx_fini()
|
/linux-4.4.14/arch/um/include/asm/ |
D | processor-generic.h | 35 } fork, exec; member
|
D | Kbuild | 9 generic-y += exec.h
|
/linux-4.4.14/arch/avr32/include/asm/ |
D | Kbuild | 8 generic-y += exec.h
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | dcb.h | 63 int dcb_outp_foreach(struct nvkm_bios *, void *data, int (*exec)
|
/linux-4.4.14/Documentation/devicetree/bindings/crypto/ |
D | fsl-sec2.txt | 15 - fsl,exec-units-mask : The bitmask representing what execution units 68 fsl,exec-units-mask = <0xfe>;
|
/linux-4.4.14/Documentation/prctl/ |
D | no_new_privs.txt | 15 - The exec code has special handling for ptrace. 30 Be careful, though: LSMs might also not tighten constraints on exec
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | Kbuild | 9 generic-y += exec.h
|
D | processor.h | 275 elf_caddr_t *argv = (elf_caddr_t *)bprm->exec + 1; \
|
/linux-4.4.14/arch/xtensa/include/asm/ |
D | Kbuild | 8 generic-y += exec.h
|
/linux-4.4.14/include/linux/ |
D | binfmts.h | 46 unsigned long loader, exec; member
|
D | perf_event.h | 962 extern void perf_event_comm(struct task_struct *tsk, bool exec); 1101 static inline void perf_event_comm(struct task_struct *tsk, bool exec) { } in perf_event_comm() argument
|
D | sched.h | 2637 extern void __set_task_comm(struct task_struct *tsk, const char *from, bool exec);
|
/linux-4.4.14/arch/arm/include/asm/ |
D | Kbuild | 8 generic-y += exec.h
|
/linux-4.4.14/arch/tile/include/asm/ |
D | Kbuild | 11 generic-y += exec.h
|
/linux-4.4.14/arch/m68k/include/asm/ |
D | Kbuild | 8 generic-y += exec.h
|
/linux-4.4.14/arch/sh/include/asm/ |
D | Kbuild | 9 generic-y += exec.h
|
/linux-4.4.14/arch/x86/ia32/ |
D | ia32_aout.c | 264 struct exec ex; in load_aout_binary() 267 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary() 402 struct exec ex; in load_aout_library()
|
/linux-4.4.14/arch/cris/include/asm/ |
D | Kbuild | 11 generic-y += exec.h
|
/linux-4.4.14/arch/metag/include/asm/ |
D | processor.h | 113 unsigned int *argc = (unsigned int *) bprm->exec; \
|
D | Kbuild | 11 generic-y += exec.h
|
/linux-4.4.14/Documentation/networking/ |
D | ipvlan.txt | 95 (1) ip netns exec ns0 bash 102 (1) ip netns exec ns1 bash
|
/linux-4.4.14/drivers/dma/ |
D | sirf-dma.c | 133 void (*exec)(struct sirfsoc_dma_desc *sdesc, member 864 sdma->exec_desc = data->exec; in sirfsoc_dma_probe() 1132 .exec = sirfsoc_dma_execute_hw_a6, 1137 .exec = sirfsoc_dma_execute_hw_a7v1, 1142 .exec = sirfsoc_dma_execute_hw_a7v2,
|
/linux-4.4.14/arch/c6x/include/asm/ |
D | Kbuild | 14 generic-y += exec.h
|
/linux-4.4.14/arch/unicore32/include/asm/ |
D | Kbuild | 13 generic-y += exec.h
|
/linux-4.4.14/arch/nios2/include/asm/ |
D | Kbuild | 16 generic-y += exec.h
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/ |
D | gf100.c | 406 void (*exec)(struct gf100_clk *, int); in gf100_clk_prog() member 420 stage[i].exec(clk, j); in gf100_clk_prog()
|
D | gk104.c | 447 void (*exec)(struct gk104_clk *, int); in gk104_clk_prog() member 465 stage[i].exec(clk, j); in gk104_clk_prog()
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | pq3-sec3.1-0.dtsi | 43 fsl,exec-units-mask = <0xbfe>;
|
D | pq3-sec3.3-0.dtsi | 43 fsl,exec-units-mask = <0x97c>;
|
D | pq3-sec3.0-0.dtsi | 43 fsl,exec-units-mask = <0x9fe>;
|
D | pq3-sec2.1-0.dtsi | 41 fsl,exec-units-mask = <0xfe>;
|
D | mpc8541cds.dts | 236 fsl,exec-units-mask = <0x7e>;
|
D | mpc8555cds.dts | 236 fsl,exec-units-mask = <0x7e>;
|
/linux-4.4.14/arch/openrisc/include/asm/ |
D | Kbuild | 22 generic-y += exec.h
|
/linux-4.4.14/Documentation/DocBook/ |
D | libata.xml.db | 73 API-ata-exec-internal-sg 74 API-ata-exec-internal
|
D | .kernel-api.xml.cmd | 2 …k-core.c block/blk-map.c block/blk-sysfs.c block/blk-settings.c block/blk-exec.c block/blk-flush.c…
|
D | kernel-api.xml.db | 361 API-call-usermodehelper-exec
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | Assabet | 118 exec -b 0x100000 -l 0xc0000 202 exec -b 0x100000 -l 0xc0000 -c "root=/dev/mtdblock2" 229 >> exec -b 0x100000 -l 0xc0000
|
D | GraphicsClient | 46 exec minicom
|
/linux-4.4.14/arch/h8300/include/asm/ |
D | Kbuild | 16 generic-y += exec.h
|
/linux-4.4.14/Documentation/frv/ |
D | booting.txt | 72 exec -c "<CMDLINE>" 0x00100000 76 exec -c "console=ttySM0,115200 ip=:::::dhcp root=/dev/mtdblock2 rw"
|
D | features.txt | 303 exec'd; or when an unpinning request happens:
|
/linux-4.4.14/Documentation/vm/ |
D | overcommit-accounting | 74 o Review stack handling/building on exec
|
D | numa_memory_policy.txt | 44 [clone() w/o the CLONE_VM flag] and exec*(). This allows a parent task 45 to establish the task policy for a child task exec()'d from an 87 space is discarded and recreated on exec*(), VMA policies are NOT 88 inheritable across exec(). Thus, only NUMA-aware applications may 422 exec(2)
|
D | unevictable-lru.txt | 27 - munmap()/exit()/exec() system call handling. 496 munmap()/exit()/exec() SYSTEM CALL HANDLING 500 munmap() or via an internal unmap from exit() or exec() processing, we must
|
/linux-4.4.14/arch/m68k/ |
D | Kconfig | 105 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/Documentation/filesystems/ |
D | ramfs-rootfs-initramfs.txt | 96 to locate and mount a root partition, then exec some variant of /sbin/init 115 off control it can overmount / with a new root device and exec another init 121 free up the space (find -xdev / -exec rm '{}' ';'), overmount rootfs 123 stdin/stdout/stderr to the new /dev/console, and exec the new init.
|
D | affs.txt | 156 /dev/sdb5 /amiga/Workbench affs noauto,user,exec,verbose 0 0
|
D | porting | 383 directory inodes on the way down a path walk (to check for exec permission). It
|
D | path-lookup.txt | 309 * i_mode, i_uid, i_gid can be tested for exec permissions during path walk.
|
D | ntfs.txt | 70 time find . -type f -exec md5sum "{}" \;
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | mpc8349emitxgp.dts | 215 fsl,exec-units-mask = <0x7e>;
|
D | tqm8541.dts | 248 fsl,exec-units-mask = <0x7e>;
|
D | mpc8272ads.dts | 259 fsl,exec-units-mask = <0x7e>;
|
D | asp834x-redboot.dts | 284 exec-units-mask = <0x0000007e>;
|
D | tqm8555.dts | 248 fsl,exec-units-mask = <0x7e>;
|
D | sbc8548-post.dtsi | 214 fsl,exec-units-mask = <0xfe>;
|
D | sbc8349.dts | 247 fsl,exec-units-mask = <0x7e>;
|
D | mpc832x_rdb.dts | 149 fsl,exec-units-mask = <0x4c>;
|
D | mpc8313erdb.dts | 142 fsl,exec-units-mask = <0x4c>;
|
D | mpc8349emitx.dts | 309 fsl,exec-units-mask = <0x7e>;
|
D | stxssa8555.dts | 235 fsl,exec-units-mask = <0x7e>;
|
D | mpc8377_wlan.dts | 330 fsl,exec-units-mask = <0x9fe>;
|
D | mpc8379_rdb.dts | 346 fsl,exec-units-mask = <0x9fe>;
|
D | mpc834x_mds.dts | 267 fsl,exec-units-mask = <0x7e>;
|
D | mpc8315erdb.dts | 292 fsl,exec-units-mask = <0x97c>;
|
D | mpc8377_rdb.dts | 348 fsl,exec-units-mask = <0x9fe>;
|
D | mpc836x_rdk.dts | 169 fsl,exec-units-mask = <0x7e>;
|
D | mpc8379_mds.dts | 339 fsl,exec-units-mask = <0x9fe>;
|
D | mpc8378_rdb.dts | 348 fsl,exec-units-mask = <0x9fe>;
|
D | mpc836x_mds.dts | 202 fsl,exec-units-mask = <0x7e>;
|
D | mpc832x_mds.dts | 171 fsl,exec-units-mask = <0x4c>;
|
D | mpc8378_mds.dts | 341 fsl,exec-units-mask = <0x9fe>;
|
D | mpc8377_mds.dts | 341 fsl,exec-units-mask = <0x9fe>;
|
D | xpedite5301.dts | 492 fsl,exec-units-mask = <0x9fe>;
|
D | xpedite5370.dts | 490 fsl,exec-units-mask = <0x9fe>;
|
D | xpedite5330.dts | 528 fsl,exec-units-mask = <0x9fe>;
|
D | xcalibur1501.dts | 582 fsl,exec-units-mask = <0x9fe>;
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-probe.txt | 92 Show available functions in given module or kernel. With -x/--exec, 116 --exec=PATH::
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | bfi.h | 265 u32 exec; /*!< exec vector */ member
|
D | bfa_ioc.c | 1173 if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) { in bfa_ioc_hw_sem_init()
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | dapm.txt | 74 o Pre - Special PRE widget (exec before all others) 75 o Post - Special POST widget (exec after all others)
|
/linux-4.4.14/arch/mips/include/asm/ |
D | sgiarcs.h | 190 LONG exec; /* Load and begin execution of a member
|
/linux-4.4.14/security/selinux/ |
D | Kconfig | 86 kernel (including any implied execute for read-implies-exec) for
|
/linux-4.4.14/Documentation/zh_CN/ |
D | magic-number.txt | 106 WANPIPE_MAGIC 0x414C4453 sdla_{dump,exec} include/linux/wanpipe.h
|
/linux-4.4.14/Documentation/power/ |
D | swsusp-dmcrypt.txt | 115 exec chroot . /sbin/init $* < dev/console > dev/console 2>&1
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_bo.c | 1102 int (*exec)(struct nouveau_channel *, in nouveau_bo_move_init() member 1145 drm->ttm.move = mthd->exec; in nouveau_bo_move_init() 1150 } while ((++mthd)->exec); in nouveau_bo_move_init()
|
D | nouveau_bios.c | 1329 int (*exec)(struct drm_device *, void *, int idx, u8 *outp)) in olddcb_outp_foreach() 1344 ret = exec(dev, data, idx, outp); in olddcb_outp_foreach()
|
/linux-4.4.14/fs/cramfs/ |
D | README | 29 lines); put another way, the same order as `find -type d -exec
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | memx.fuc | 364 // $r13 - message (exec)
|
/linux-4.4.14/Documentation/early-userspace/ |
D | README | 149 and exec one of the predefined init binaries.
|
/linux-4.4.14/Documentation/fault-injection/ |
D | fault-injection.txt | 195 bash -c "echo 1 > /proc/self/make-it-fail && exec $*"
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfi.h | 357 u32 exec; /* exec vector */ member
|
D | bfa_ioc.c | 732 if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) { in bfa_iocpf_sm_fwcheck_entry() 750 bfa_trc(iocpf->ioc, swab32(fwhdr.exec)); in bfa_iocpf_sm_fwcheck_entry()
|
/linux-4.4.14/tools/usb/usbip/ |
D | INSTALL | 113 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
|
/linux-4.4.14/Documentation/security/ |
D | credentials.txt | 263 (*) UNIX exec privilege escalation bits (SUID/SGID); 265 (*) File capabilities exec privilege escalation bits.
|
D | keys.txt | 727 Note that this setting is inherited across fork/exec. 766 The assumed authoritative key is inherited across fork and exec.
|
/linux-4.4.14/arch/tile/ |
D | Kconfig | 214 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/Documentation/cgroups/ |
D | cgroups.txt | 138 the admin can easily set up a script which receives exec notifications 319 7) fork, exec or clone the job tasks from this founding father task.
|
D | cpusets.txt | 677 6) fork, exec or clone the job tasks from this founding father task.
|
/linux-4.4.14/arch/ia64/ |
D | Kconfig | 528 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/arch/sh/ |
D | Kconfig | 612 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 812 It is typically useful to add shortcuts to your profile.exec file 916 Also CP has a file called profile.exec which automatically gets called 919 use profile.exec to define some keystrokes.
|
/linux-4.4.14/arch/powerpc/ |
D | Kconfig | 430 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 2180 host# find . -uid 0 -exec chown jdike {} \; 2893 sh -c 'echo pid=$$; echo -n hit return; read x; exec strace -p 1 -o strace.out' 3063 request = {op = 2, u = {exec = {ip = 1350467584, sp = 2952789424}, fork = { 3888 start-stop-daemon --start --quiet --exec /sbin/syslogd -- $SYSLOGD
|
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_sp.c | 55 exe_q_execute exec, in bnx2x_exe_queue_init() argument 72 o->execute = exec; in bnx2x_exe_queue_init()
|
/linux-4.4.14/kernel/events/ |
D | core.c | 5896 void perf_event_comm(struct task_struct *task, bool exec) in perf_event_comm() argument 5910 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0, in perf_event_comm()
|
/linux-4.4.14/arch/x86/ |
D | Kconfig | 1678 exec() and munmap(). 1751 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 370 exec Permit execution of binaries on the mount.
|
/linux-4.4.14/arch/mips/ |
D | Kconfig | 2651 The name comes from the similarity to the exec system call.
|
/linux-4.4.14/init/ |
D | Kconfig | 784 init is exec'ed.
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace.txt | 1867 exec "$@"
|