Home
last modified time | relevance | path

Searched refs:child_ (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/process/
Dkill_posix.cc157 : child_(child), in BackgroundReaper()
170 pid_t r = HANDLE_EINTR(waitpid(child_, NULL, 0)); in WaitForChildToDie()
171 if (r != child_) { in WaitForChildToDie()
172 DPLOG(ERROR) << "While waiting for " << child_ in WaitForChildToDie()
184 if (IsChildDead(child_)) in WaitForChildToDie()
188 if (kill(child_, SIGKILL) == 0) { in WaitForChildToDie()
191 if (HANDLE_EINTR(waitpid(child_, NULL, 0)) < 0) in WaitForChildToDie()
194 DLOG(ERROR) << "While waiting for " << child_ << " to terminate we" in WaitForChildToDie()
200 const pid_t child_; member in base::__anon15d992be0211::BackgroundReaper
/external/libchrome/base/
Dtracked_objects.cc824 child_ = NULL; in TaskStopwatch()
831 DCHECK(child_ == NULL); in ~TaskStopwatch()
851 DCHECK(parent_->child_ == NULL); in Start()
852 parent_->child_ = this; in Start()
863 DCHECK(child_ == NULL); in Stop()
880 DCHECK(parent_->child_ == this); in Stop()
881 parent_->child_ = NULL; in Stop()
Dtracked_objects.h787 TaskStopwatch* child_; variable
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestProto3.cs1675 Child = other.child_ != null ? other.Child.Clone() : null; in NestedTestAllTypes()
1686 private global::Google.Protobuf.TestProtos.NestedTestAllTypes child_; field in Google.Protobuf.TestProtos.NestedTestAllTypes
1688 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 …]
/external/v8/src/crankshaft/
Dhydrogen.cc3277 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