Home
last modified time | relevance | path

Searched refs:fork (Results 1 – 25 of 74) sorted by relevance

123

/linux-3.3/tools/perf/util/
Dbuild-id.c49 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,
Dsession.c346 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()
Dtool.h36 fork, member
Devent.c683 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()
Dpython.c113 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/
Dinode.c459 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()
Dsuper.c100 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()
Dcatalog.c267 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()
Dextents.c367 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/
Dcn_proc.c73 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()
DKconfig20 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
/linux-3.3/Documentation/prctl/
Ddisable-tsc-on-off-stress-test.c87 if (fork() == 0) in main()
Ddisable-tsc-ctxt-sw-stress-test.c83 if (fork() == 0) in main()
/linux-3.3/tools/perf/
Dbuiltin-inject.c205 .fork = perf_event__repipe,
234 perf_inject.fork = perf_event__repipe_task; in __cmd_inject()
Dbuiltin-timechart.c292 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/
Dsched-migration.py208 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/
Dprocessor-generic.h46 } fork, exec; member
/linux-3.3/tools/perf/bench/
Dsched-pipe.c67 pid = fork(); in bench_sched_pipe()
/linux-3.3/include/linux/
Dcn_proc.h75 } fork; member
/linux-3.3/Documentation/ko_KR/
Dstable_api_nonsense.txt10 a fork. So if you have any comments or updates for this file please
/linux-3.3/Documentation/
Dnommu-mmap.txt12 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.
Dunshare.txt56 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/
Dstable_kernel_rules.txt9 English natives and do no intended to fork. So, if you have any
Dstable_api_nonsense.txt11 fork. So if you have any comments or updates of this file, please try
DSubmitChecklist11 fork. So if you have any comments or updates of this file, please try

123