Searched refs:child_ (Results 1 – 5 of 5) sorted by relevance
/external/libchrome/base/process/ |
D | kill_posix.cc | 157 : 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::__anon4774605f0211::BackgroundReaper
|
/external/opencv3/modules/features2d/src/ |
D | mser.cpp | 138 parent_ = child_ = next_ = 0; in CompHistory() 151 CompHistory* c = child_; in updateTree() 157 c->updateTree(wp, c == child_ ? &h0_ : 0, c == child_ ? &h1_ : 0, final); in updateTree() 175 for( ; h0->child_ && h0->child_->val >= val - delta; h0 = h0->child_ ) in updateTree() 191 c = child_; in updateTree() 205 if( child_ ) in checkAndCapture() 207 CompHistory* c = child_; in checkAndCapture() 239 CompHistory* child_; member 275 h->child_ = history; in growHistory()
|
/external/libchrome/base/ |
D | tracked_objects.cc | 863 child_ = NULL; in TaskStopwatch() 870 DCHECK(child_ == NULL); in ~TaskStopwatch() 890 DCHECK(parent_->child_ == NULL); in Start() 891 parent_->child_ = this; in Start() 902 DCHECK(child_ == NULL); in Stop() 919 DCHECK(parent_->child_ == this); in Stop() 920 parent_->child_ = NULL; in Stop()
|
D | tracked_objects.h | 796 TaskStopwatch* child_; variable
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 3755 PostorderProcessor* child() {return child_; } in child() 3779 : father_(father), child_(NULL), successor_iterator(NULL) { } in PostorderProcessor() 3849 if (child_ == NULL) { in Push() 3850 child_ = new(zone) PostorderProcessor(this); in Push() 3852 return child_; in Push() 3981 PostorderProcessor* child_; member in v8::internal::PostorderProcessor
|