Lines Matching refs:slot
42 int slot;
93 /* minus 1 to make sure we can never reach the last slot */
99 /* dispatch to the last slot, which is reserved for no-op */
107 stub->slot = -1;
149 int slot)
153 if (table[i].slot == slot)
160 stub_find_by_slot(int slot)
163 search_table_by_slot(public_stubs, ARRAY_SIZE(public_stubs), slot);
166 return search_table_by_slot(dynamic_stubs, num_dynamic_stubs, slot);
172 int slot;
174 if (stub->slot >= 0)
178 slot = alias->slot;
180 slot = next_dynamic_slot++;
182 entry_patch(stub->addr, slot);
183 stub->slot = slot;
204 * Return the slot of a stub.
209 return stub->slot;
218 assert(stub->addr || (unsigned int) stub->slot < MAPI_TABLE_NUM_STATIC);
219 return (stub->addr) ? stub->addr : entry_get_public(stub->slot);