Lines Matching refs:this

88 this unsigned int priority;
89 this string cause;
154 this unsigned long long end;
155 this unsigned long long now;
159 this->end = lt_timestamps[curpsinfo->pr_pid, curlwpsinfo->pr_lwpid];
160 this->now = timestamp;
162 this->end = (this->end != 0 && this->end != self->lt_sleep_start)
163 ? this->end : this->now;
165 self->lt_sch_delay = this->now - this->end;
166 self->lt_sleep_duration = this->end - self->lt_sleep_start;
193 this->cause = self->lt_stackp > 0 ?
195 this->priority = self->lt_stackp > 0 ?
198 @lt_call_count[pid, tid, stack(), this->cause,
199 this->priority] = count();
200 @lt_call_sum[pid, tid, stack(), this->cause,
201 this->priority] = sum(self->lt_sleep_duration);
202 @lt_call_max[pid, tid, stack(), this->cause,
203 this->priority] = max(self->lt_sleep_duration);
268 this int stype;
269 this unsigned long long wchan;
270 this unsigned long long wtime;
280 this->stype = args[0]->pr_stype;
281 this->wchan = args[0]->pr_wchan;
287 this->wtime = timestamp - lt_timestamps[args[1]->pr_pid,
290 @lt_sync_count[args[1]->pr_pid, args[0]->pr_lwpid, this->stype,
291 this->wchan] = count();
292 @lt_sync_sum[args[1]->pr_pid, args[0]->pr_lwpid, this->stype,
293 this->wchan] = sum(this->wtime);
294 @lt_sync_max[args[1]->pr_pid, args[0]->pr_lwpid, this->stype,
295 this->wchan] = max(this->wtime);
330 this int need_skip;
343 this->need_skip = (self->lt_counter < (SAMPLE_TIMES - 1) &&
345 self->lt_timestamp = this->need_skip ? 0 : self->lt_timestamp;
346 self->lt_counter += this->need_skip;
355 this->cause = self->lt_stackp > 0 ?
357 this->priority = self->lt_stackp > 0 ?
360 @lt_call_count[pid, tid, stack(), this->cause,
361 this->priority] = sum(1);
362 @lt_call_sum[pid, tid, stack(), this->cause,
363 this->priority] = sum(self->lt_timestamp);
364 @lt_call_max[pid, tid, stack(), this->cause,
365 this->priority] = max(self->lt_timestamp);
377 this->cause = self->lt_stackp > 0 ?
379 this->priority = self->lt_stackp > 0 ?
383 @lt_call_count[pid, tid, stack(), this->cause,
384 this->priority] = sum(self->lt_counter + 1);
385 @lt_call_sum[pid, tid, stack(), this->cause,
386 this->priority] = sum((self->lt_counter + 1) * self->lt_timestamp);
387 @lt_call_max[pid, tid, stack(), this->cause,
388 this->priority] = max(self->lt_timestamp);