Searched refs:pid (Results 276 - 300 of 1170) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Dksyms.d61 printf("uiomove %u bytes to %p in pid %d\n", this->iov->iov_len,
62 this->iov->iov_base, pid);
H A Drwinfo.d51 /pid == 100551/
61 /i[probefunc].ts != 0 && pid == 100551/
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.newprobes.ksh38 pid*:date::
52 system("dtrace -c date -ln 'pid\$target::main:entry' >/dev/null");
58 system("dtrace -c date -ln 'pid\$target::main:return' >/dev/null");
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/profile-n/
H A Dtst.ufuncsort.ksh54 pid\$target::fN:entry
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/alloc_class/
H A Dalloc_class.kshlib59 typeset pid=$!
64 kill -9 $pid
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/
H A DPass.h83 explicit Pass(PassKind K, char &pid) : PassID(&pid), Kind(K) {} argument
226 explicit ModulePass(char &pid) : Pass(PT_Module, pid) {} argument
257 explicit ImmutablePass(char &pid) : ModulePass(pid) {} argument
286 explicit FunctionPass(char &pid) : Pass(PT_Function, pid) {} argument
/freebsd-13-stable/usr.sbin/cron/cron/
H A Dpopen.c66 PID_T pid; local
115 switch(pid = fork()) {
213 pids[fileno(iop)] = pid;
223 *pidptr = pid;
235 PID_T pid; local
245 while ((pid = wait(&stat_loc)) != pids[fdes] && pid != -1)
249 return (pid == -1 ? -1 : WEXITSTATUS(stat_loc));
/freebsd-13-stable/contrib/wpa/src/utils/
H A Dbrowser-android.c70 pid_t pid; local
88 pid = fork();
89 if (pid < 0) {
96 if (pid == 0) {
H A Dbrowser-wpadebug.c71 pid_t pid; local
89 pid = fork();
90 if (pid < 0) {
97 if (pid == 0) {
/freebsd-13-stable/libexec/rc/rc.d/
H A Ddevd23 if get_pidfile_from_conf pid-file /etc/devd.conf; then
26 pidfile="/var/run/${name}.pid"
/freebsd-13-stable/sys/ddb/
H A Ddb_thread.c46 pid_t pid; local
48 pid = -1;
50 pid = kdb_thread->td_proc->p_pid;
51 db_printf("[ thread pid %d tid %ld ]\n", pid, (long)kdb_thread->td_tid);
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/dir_rd_update/
H A Ddir_rd_update.c54 pid_t pid; local
90 pid = fork();
91 if (pid > 0) {
112 } else if (pid == 0) {
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/
H A Dzpool_wait_freeing.ksh42 kill_if_running $pid
48 pid=$!
49 check_while_waiting $pid '[[ $(get_pool_prop freeing $TESTPOOL) != "0" ]]'
55 typeset pid default_max_livelist_entries default_min_pct_shared
/freebsd-13-stable/contrib/openbsm/bin/auditd/
H A Daudit_warn.c45 pid_t pid; local
53 pid = fork();
54 if (pid == -1)
56 if (pid == 0) {
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_issetugid.c48 pid_t pid; local
56 pid = fork();
58 if (pid < 0)
61 if (pid == 0) {
/freebsd-13-stable/usr.sbin/pw/
H A Dpwupd.c61 pid_t pid; local
74 if ((pid = fork()) == -1) /* Error (errno set) */
76 else if (pid == 0) { /* Child */
80 waitpid(pid, &i, 0);
/freebsd-13-stable/tests/sys/mqueue/
H A Dmqtest2.c32 pid_t pid; local
46 pid = fork();
47 if (pid == 0) { /* child */
76 } else if (pid == -1) {
/freebsd-13-stable/tools/regression/priv/
H A Dpriv_sched_setpriority.c158 pid_t pid; local
163 pid = waitpid(childproc, NULL, 0);
164 if (pid == -1)
167 if (pid == childproc)
/freebsd-13-stable/tools/regression/sockets/listen_kqueue/
H A Dlisten_kqueue.c54 int kq, sock, opt, pid, nev, fd; local
90 pid = fork();
91 if (pid == -1)
93 if (pid == 0) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAttachInfo.h22 SBAttachInfo(lldb::pid_t pid);
69 void SetProcessID(lldb::pid_t pid);
148 void SetParentProcessID(lldb::pid_t pid);
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dt-notify.c84 pid_t pid; local
103 if ((pid = fork()) < 0)
110 if (pid == 0)
/freebsd-13-stable/crypto/heimdal/kcm/
H A Dconnect.c54 peercred.pid = heim_ipc_cred_get_pid(cred);
59 peercred.pid);
70 buf[0], buf[1], peercred.pid);
/freebsd-13-stable/lib/libutil/
H A Dpty.c93 int master, slave, pid; local
97 switch (pid = fork()) {
114 return (pid);
/freebsd-13-stable/lib/libutil/tests/
H A Dpidfile_test.c131 pid_t other = 0, pid = 0; local
149 pid = fork();
150 if (pid == -1)
152 if (pid == 0) {
197 kill(pid, SIGTERM);
217 if (other != pid) {
226 if (kill(pid, SIGINT) != 0)
228 if (waitpid(pid, &status, 0) == -1)
272 char path[PATH_MAX], pid[32], tmpdir[PATH_MAX]; local
289 if (read(fd, pid, sizeo
[all...]
/freebsd-13-stable/contrib/bmake/filemon/
H A Dfilemon_dev.c104 filemon_setpid_parent(struct filemon *F, pid_t pid) argument
110 filemon_setpid_child(const struct filemon *F, pid_t pid) argument
114 return ioctl(F->fd, FILEMON_SET_PID, &pid);

Completed in 316 milliseconds

<<11121314151617181920>>