Searched refs:SlotTable (Results 1 - 4 of 4) sorted by relevance

/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/interceptors/
H A DSlotTableStack.java41 * SlotTableStack is the container of SlotTable instances for each thread
48 // Contains a list of reusable SlotTable
49 private SlotTable[] pool;
53 // not put SlotTable to the pool.
56 // currentIndex points to the last SlotTable in the list
60 pool = new SlotTable[HIGH_WATER_MARK];
65 * Puts SlotTable to the re-usable pool.
67 void putSlotTable( SlotTable table ) {
79 * Gets SlotTable from the re-usable pool.
81 SlotTable getSlotTabl
[all...]
H A DPICurrent.java60 // ThreadLocal contains a stack of SlotTable which are used
65 SlotTable table = new SlotTable( myORB, slotCounter );
95 * This method gets the SlotTable which is on the top of the
98 SlotTable getSlotTable( ) {
99 SlotTable table = (SlotTable)
105 * This method pushes a SlotTable on the SlotTableStack. When there is
116 * This method pops a SlotTable on the SlotTableStack.
H A DSlotTable.java35 * SlotTable is used internally by PICurrent to store the slot information.
37 public class SlotTable { class
44 // The flag to check whether there are any updates in the current SlotTable.
52 SlotTable( ORB orb, int slotSize ) { method in class:SlotTable
H A DRequestInfoImpl.java166 // PICurrent's SlotTable
167 protected SlotTable slotTable;
920 void setSlotTable(SlotTable slotTable)

Completed in 46 milliseconds