Home
last modified time | relevance | path

Searched refs:pstatus (Results 1 – 7 of 7) sorted by relevance

/external/valgrind/coregrind/m_coredump/
Dcoredump-solaris.c531 static void fill_pstatus(vki_pstatus_t *pstatus, in fill_pstatus() argument
535 VG_(memset)(pstatus, 0, sizeof(*pstatus)); in fill_pstatus()
537 pstatus->pr_flags = VKI_PR_PCINVAL; in fill_pstatus()
538 pstatus->pr_nlwp = VG_(count_living_threads)(); in fill_pstatus()
539 pstatus->pr_pid = VG_(getpid)(); in fill_pstatus()
540 pstatus->pr_ppid = VG_(getppid)(); in fill_pstatus()
541 pstatus->pr_pgid = VG_(getpgrp)(); in fill_pstatus()
542 pstatus->pr_sid = VG_(getpgrp)(); in fill_pstatus()
543 pstatus->pr_brkbase = (uintptr_t) VG_(brk_base); in fill_pstatus()
544 pstatus->pr_brksize = VG_(brk_limit) - VG_(brk_base); in fill_pstatus()
[all …]
/external/selinux/libsemanage/src/
Ddatabase_file.c47 int pstatus = STATUS_SUCCESS; in dbase_file_cache() local
77 pstatus = rftable->parse(handle, parse_info, process_record); in dbase_file_cache()
80 if (pstatus < 0) in dbase_file_cache()
84 else if (pstatus == STATUS_NODATA) in dbase_file_cache()
95 } while (pstatus != STATUS_NODATA); in dbase_file_cache()
/external/swiftshader/third_party/LLVM/utils/
Dmakellvm3 set pstatus = 0
134 set pstatus = $?
145 exit($pstatus)
/external/llvm/utils/
Dmakellvm3 set pstatus = 0
134 set pstatus = $?
145 exit($pstatus)
/external/valgrind/coregrind/
Dvgdb-invoker-solaris.c175 pstatus_t pstatus; in attach() local
176 bytes = read(status_fd, &pstatus, sizeof(pstatus)); in attach()
177 if ((bytes < 0) || (bytes != sizeof(pstatus))) { in attach()
183 if (pstatus.pr_flags & PR_RLC) { in attach()
191 if (pstatus.pr_lwp.pr_flags & PR_STOPPED) { in attach()
/external/strace/
Dstrace.c2311 next_event(int *pstatus, siginfo_t *si) in next_event() argument
2345 pid = wait4(-1, pstatus, __WALL, (cflag ? &ru : NULL)); in next_event()
2363 status = *pstatus; in next_event()
2490 dispatch_event(enum trace_event ret, int *pstatus, siginfo_t *si) in dispatch_event() argument
2523 restart_sig = WSTOPSIG(*pstatus); in dispatch_event()
2528 print_signalled(current_tcp, current_tcp->pid, *pstatus); in dispatch_event()
2533 restart_sig = WSTOPSIG(*pstatus); in dispatch_event()
2548 print_exited(current_tcp, current_tcp->pid, *pstatus); in dispatch_event()
/external/libcups/cups/
Dhttp-support.c2024 int pstatus; /* Poll status */ in _httpResolveURI() local
2026 pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000); in _httpResolveURI()
2028 if (pstatus == 0 && !resolved_uri[0] && domain && in _httpResolveURI()
2042 while (!pstatus && !resolved_uri[0] && time(NULL) < end_time) in _httpResolveURI()
2044 if ((pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000)) != 0) in _httpResolveURI()