Home | History | Annotate | Download | only in utils

Lines Matching refs:SlowPath

122 class SlowPath {
124 SlowPath() : next_(NULL) {}
125 virtual ~SlowPath() {}
138 SlowPath *next_;
142 DISALLOW_COPY_AND_ASSIGN(SlowPath);
174 void EnqueueSlowPath(SlowPath* slowpath) {
176 slow_path_ = slowpath;
178 SlowPath* cur = slow_path_;
180 cur->next_ = slowpath;
185 SlowPath* cur = slow_path_;
186 SlowPath* next = NULL;
288 SlowPath* slow_path_;