OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:got_pid
(Results
1 - 3
of
3
) sorted by null
/art/runtime/gc/space/
image_space.cc
120
pid_t
got_pid
= TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
local
121
if (
got_pid
!= pid) {
122
PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " <<
got_pid
;
local
/frameworks/native/cmds/installd/
commands.c
624
pid_t
got_pid
;
local
630
got_pid
= waitpid(pid, &status, 0);
631
if (
got_pid
== -1 && errno == EINTR) {
637
if (
got_pid
!= pid) {
639
(int) pid, (int)
got_pid
, strerror(errno));
[
all
...]
/art/runtime/
class_linker.cc
634
pid_t
got_pid
= TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
local
635
if (
got_pid
!= pid) {
636
PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " <<
got_pid
;
local
[
all
...]
Completed in 306 milliseconds