HomeSort by relevance Sort by last modified time
    Searched refs:slot_id (Results 1 - 5 of 5) sorted by null

  /external/chromium/base/metrics/
stats_table.cc 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++)
    [all...]
stats_table.h 94 int* GetLocation(int counter_id, int slot_id) const;
stats_table_unittest.cc 38 int slot_id = table.RegisterThread(thread_name); local
39 EXPECT_NE(slot_id, 0);
51 slot_id = table.RegisterThread("too many threads");
52 EXPECT_EQ(slot_id, 0);
  /external/dbus/dbus/
dbus-dataslot.c 93 _dbus_assert (allocator->allocated_slots[slot].slot_id == slot);
107 if (allocator->allocated_slots[slot].slot_id < 0)
109 allocator->allocated_slots[slot].slot_id = slot;
133 allocator->allocated_slots[slot].slot_id = slot;
140 _dbus_assert (allocator->allocated_slots[slot].slot_id == slot);
171 _dbus_assert (allocator->allocated_slots[*slot_id_p].slot_id == *slot_id_p);
186 allocator->allocated_slots[*slot_id_p].slot_id = -1;
252 _dbus_assert (allocator->allocated_slots[slot].slot_id == slot);
310 _dbus_assert (allocator->allocated_slots[slot].slot_id == slot);
dbus-dataslot.h 48 dbus_int32_t slot_id; /**< ID of this slot */ member in struct:DBusAllocatedSlot

Completed in 2561 milliseconds