/linux-3.3/tools/perf/util/ |
D | build-id.c | 49 struct thread *thread = machine__findnew_thread(machine, event->fork.tid); in perf_event__exit_del_thread() 51 dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid, in perf_event__exit_del_thread() 52 event->fork.ppid, event->fork.ptid); in perf_event__exit_del_thread() 66 .fork = perf_event__process_task,
|
D | session.c | 346 if (tool->fork == NULL) in perf_tool__fill_defaults() 347 tool->fork = process_event_stub; in perf_tool__fill_defaults() 408 event->fork.pid = bswap_32(event->fork.pid); in perf_event__task_swap() 409 event->fork.tid = bswap_32(event->fork.tid); in perf_event__task_swap() 410 event->fork.ppid = bswap_32(event->fork.ppid); in perf_event__task_swap() 411 event->fork.ptid = bswap_32(event->fork.ptid); in perf_event__task_swap() 412 event->fork.time = bswap_64(event->fork.time); in perf_event__task_swap() 805 return tool->fork(tool, event, sample, machine); in perf_session_deliver_event()
|
D | tool.h | 36 fork, member
|
D | event.c | 683 event->fork.pid, event->fork.tid, in perf_event__fprintf_task() 684 event->fork.ppid, event->fork.ptid); in perf_event__fprintf_task() 692 struct thread *thread = machine__findnew_thread(machine, event->fork.tid); in perf_event__process_task() 693 struct thread *parent = machine__findnew_thread(machine, event->fork.ptid); in perf_event__process_task()
|
D | python.c | 113 pevent->event.fork.pid, in pyrf_task_event__repr() 114 pevent->event.fork.ppid, in pyrf_task_event__repr() 115 pevent->event.fork.tid, in pyrf_task_event__repr() 116 pevent->event.fork.ptid, in pyrf_task_event__repr() 117 pevent->event.fork.time); in pyrf_task_event__repr()
|
/linux-3.3/fs/hfsplus/ |
D | inode.c | 459 void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork) in hfsplus_inode_read_fork() argument 467 memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec)); in hfsplus_inode_read_fork() 469 count += be32_to_cpu(fork->extents[i].block_count); in hfsplus_inode_read_fork() 475 hip->alloc_blocks = be32_to_cpu(fork->total_blocks); in hfsplus_inode_read_fork() 476 hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size); in hfsplus_inode_read_fork() 481 be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift; in hfsplus_inode_read_fork() 490 struct hfsplus_fork_raw *fork) in hfsplus_inode_write_fork() argument 492 memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents, in hfsplus_inode_write_fork() 494 fork->total_size = cpu_to_be64(inode->i_size); in hfsplus_inode_write_fork() 495 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks); in hfsplus_inode_write_fork()
|
D | super.c | 100 struct hfsplus_fork_raw *fork; in hfsplus_system_write_inode() local 105 fork = &vhdr->ext_file; in hfsplus_system_write_inode() 109 fork = &vhdr->cat_file; in hfsplus_system_write_inode() 113 fork = &vhdr->alloc_file; in hfsplus_system_write_inode() 116 fork = &vhdr->start_file; in hfsplus_system_write_inode() 119 fork = &vhdr->attr_file; in hfsplus_system_write_inode() 125 if (fork->total_size != cpu_to_be64(inode->i_size)) { in hfsplus_system_write_inode() 129 hfsplus_inode_write_fork(inode, fork); in hfsplus_system_write_inode()
|
D | catalog.c | 267 struct hfsplus_fork_raw fork; in hfsplus_delete_cat() local 307 hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork)); in hfsplus_delete_cat() 308 hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_DATA); in hfsplus_delete_cat() 313 hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork)); in hfsplus_delete_cat() 314 hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_RSRC); in hfsplus_delete_cat()
|
D | extents.c | 367 struct hfsplus_fork_raw *fork, int type) in hfsplus_free_fork() argument 374 total_blocks = be32_to_cpu(fork->total_blocks); in hfsplus_free_fork() 380 blocks += be32_to_cpu(fork->extents[i].block_count); in hfsplus_free_fork() 382 res = hfsplus_free_extents(sb, fork->extents, blocks, blocks); in hfsplus_free_fork()
|
/linux-3.3/drivers/connector/ |
D | cn_proc.c | 73 ev->event_data.fork.parent_pid = parent->pid; in proc_fork_connector() 74 ev->event_data.fork.parent_tgid = parent->tgid; in proc_fork_connector() 76 ev->event_data.fork.child_pid = task->pid; in proc_fork_connector() 77 ev->event_data.fork.child_tgid = task->tgid; in proc_fork_connector()
|
D | Kconfig | 20 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
|
/linux-3.3/Documentation/prctl/ |
D | disable-tsc-on-off-stress-test.c | 87 if (fork() == 0) in main()
|
D | disable-tsc-ctxt-sw-stress-test.c | 83 if (fork() == 0) in main()
|
/linux-3.3/tools/perf/ |
D | builtin-inject.c | 205 .fork = perf_event__repipe, 234 perf_inject.fork = perf_event__repipe_task; in __cmd_inject()
|
D | builtin-timechart.c | 292 pid_fork(event->fork.pid, event->fork.ppid, event->fork.time); in process_fork_event() 301 pid_exit(event->fork.pid, event->fork.time); in process_exit_event() 985 .fork = process_fork_event,
|
/linux-3.3/tools/perf/scripts/python/ |
D | sched-migration.py | 208 def wake_up(self, ts_list, pid, cpu, fork): argument 210 if fork: 353 def wake_up(self, headers, comm, pid, success, target_cpu, fork): argument 357 ts.wake_up(self.timeslices, pid, target_cpu, fork)
|
/linux-3.3/arch/um/include/asm/ |
D | processor-generic.h | 46 } fork, exec; member
|
/linux-3.3/tools/perf/bench/ |
D | sched-pipe.c | 67 pid = fork(); in bench_sched_pipe()
|
/linux-3.3/include/linux/ |
D | cn_proc.h | 75 } fork; member
|
/linux-3.3/Documentation/ko_KR/ |
D | stable_api_nonsense.txt | 10 a fork. So if you have any comments or updates for this file please
|
/linux-3.3/Documentation/ |
D | nommu-mmap.txt | 12 Memory mapping behaviour also involves the way fork(), vfork(), clone() and 13 ptrace() work. Under uClinux there is no fork(), and clone() must be supplied 22 across fork. 30 shared across fork() or clone() without CLONE_VM in the MMU case. Since 37 the underlying file are reflected in the mapping; copied across fork. 73 mapping; shared across fork.
|
D | unshare.txt | 56 when creating a new process using fork or clone, unshare can benefit 91 works on an active task (as opposed to clone/fork working on a newly 93 changes to copy_* functions utilized by clone/fork system call. 130 when a new process is created using fork(2), while other parts, 175 clone(2), fork(2)
|
/linux-3.3/Documentation/ja_JP/ |
D | stable_kernel_rules.txt | 9 English natives and do no intended to fork. So, if you have any
|
D | stable_api_nonsense.txt | 11 fork. So if you have any comments or updates of this file, please try
|
D | SubmitChecklist | 11 fork. So if you have any comments or updates of this file, please try
|