Lines Matching full:slot_id
119 char* thread_name(int slot_id) const {
121 (slot_id-1) * (StatsTable::kMaxThreadNameLength)];
123 PlatformThreadId* thread_tid(int slot_id) const {
124 return &(thread_tid_table_[slot_id-1]);
126 int* thread_pid(int slot_id) const {
127 return &(thread_pid_table_[slot_id-1]);
373 int* StatsTable::GetLocation(int counter_id, int slot_id) const {
376 if (slot_id > impl_->max_threads())
380 return &(row[slot_id-1]);
400 for (int slot_id = 0; slot_id < impl_->max_threads(); slot_id++) {
401 if (pid == 0 || *impl_->thread_pid(slot_id) == pid)
402 rv += row[slot_id];