Searched refs:child_ (Results 1 – 5 of 5) sorted by relevance
159 : child_(child), in BackgroundReaper()172 pid_t r = HANDLE_EINTR(waitpid(child_, NULL, 0)); in WaitForChildToDie()173 if (r != child_) { in WaitForChildToDie()174 DPLOG(ERROR) << "While waiting for " << child_ in WaitForChildToDie()186 if (IsChildDead(child_)) in WaitForChildToDie()190 if (kill(child_, SIGKILL) == 0) { in WaitForChildToDie()193 if (HANDLE_EINTR(waitpid(child_, NULL, 0)) < 0) in WaitForChildToDie()196 DLOG(ERROR) << "While waiting for " << child_ << " to terminate we" in WaitForChildToDie()202 const pid_t child_; member in base::__anon916a633c0211::BackgroundReaper
932 child_ = NULL; in TaskStopwatch()943 DCHECK(child_ == NULL); in ~TaskStopwatch()967 DCHECK(parent_->child_ == NULL); in Start()968 parent_->child_ = this; in Start()979 DCHECK(child_ == NULL); in Stop()1000 DCHECK(parent_->child_ == this); in Stop()1001 parent_->child_ = NULL; in Stop()
865 TaskStopwatch* child_; variable
1675 Child = other.child_ != null ? other.Child.Clone() : null; in NestedTestAllTypes()1686 private global::Google.Protobuf.TestProtos.NestedTestAllTypes child_; field in Google.Protobuf.TestProtos.NestedTestAllTypes1688 get { return child_; }1690 child_ = value;1732 if (child_ != null) hash ^= Child.GetHashCode(); in GetHashCode()1743 if (child_ != null) { in WriteTo()1756 if (child_ != null) { in CalculateSize()1770 if (other.child_ != null) { in MergeFrom()1771 if (child_ == null) { in MergeFrom()1772 child_ = new global::Google.Protobuf.TestProtos.NestedTestAllTypes(); in MergeFrom()[all …]
3277 PostorderProcessor* child() {return child_; } in child()3301 : father_(father), child_(NULL), successor_iterator(NULL) { } in PostorderProcessor()3371 if (child_ == NULL) { in Push()3372 child_ = new(zone) PostorderProcessor(this); in Push()3374 return child_; in Push()3503 PostorderProcessor* child_; member in v8::internal::PostorderProcessor