Lines Matching refs:table
18 * Maintain a table of references. Used for internal local references,
21 * None of the table functions are synchronized.
27 * Table definition.
32 * If "allocEntries" is not equal to "maxEntries", the table may expand when
34 * pointers into "table" rather than offsets, use a fixed-size table.
37 * table/nextEntry is allowed.)
41 Object** table; /* bottom of the list */
50 * If "initialCount" != "maxCount", the table will expand as required.
52 * Returns "false" if table allocation fails.
61 * You must call dvmInitReferenceTable() before you can re-use this table.
70 return pRef->nextEntry - pRef->table;
74 * Returns "true" if the table is full. The table is considered full if
87 * Returns "false" if the table is full.
93 * "bottom". To include the entire table, pass in "pRef->table" as the
113 * Dump the contents of a reference table to the log file.