Searched refs:table (Results 1 - 25 of 43) sorted by relevance

12

/dalvik/vm/alloc/
H A DHeapTable.c66 LargeHeapRefTable *table; local
71 /* Make sure that a table with a free slot is
75 table = *tableP;
81 while (table != NULL && heapRefTableIsFull(&table->refs)) {
82 prevTable = table;
83 table = table->next;
85 if (table != NULL) {
87 /* Move the table t
134 LargeHeapRefTable *table; local
156 dvmHeapFreeLargeTable(LargeHeapRefTable *table) argument
168 LargeHeapRefTable *table; local
200 dvmHeapMarkLargeTableRefs(LargeHeapRefTable *table, bool stripLowBits) argument
[all...]
H A DHeapTable.h32 void dvmHeapFreeLargeTable(LargeHeapRefTable *table);
35 void dvmHeapMarkLargeTableRefs(LargeHeapRefTable *table, bool stripLowBits);
50 dvmRemoveFromReferenceTable((refs), (refs)->table, (ptr))
/dalvik/libcore/sql/src/main/java/SQLite/
H A DBusyHandler.java10 * Invoked when a table is locked by another process
12 * until the table becomes unlocked, or false in order
15 * @param table the name of the locked table
16 * @param count number of times the table was locked
19 public boolean busy(String table, int count); argument
H A DShell.java343 pw.println(".schema ?PATTERN? List table schema");
345 pw.println(".tables ?PATTERN? List table names");
380 "WHERE type='table' AND " +
390 "WHERE type='table' ORDER BY name");
629 if (args[1].compareTo("table") == 0) {
H A DDatabase.java171 * an SQLite table is locked.
185 * Set the timeout for waiting for an SQLite table to become
498 * @param table table name
505 public Blob open_blob(String db, String table, String column, argument
509 _open_blob(db, table, column, row, rw, blob);
552 * @param table table name
559 private native void _open_blob(String db, String table, String column, argument
/dalvik/libcore/luni/src/main/java/java/lang/
H A DThreadLocal.java57 Object[] table = values.table;
59 if (this.reference == table[index]) {
60 return (T) table[index + 1];
133 * (hash & (table.length - 1)) points to a key and not a value.
159 private Object[] table; field in class:ThreadLocal.Values
189 this.table = fromParent.table.clone();
204 Object[] table = this.table;
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DListResourceBundle.java30 Hashtable<String, Object> table; field in class:ListResourceBundle
60 if (table == null) {
64 return table.keys();
67 Enumeration<String> local = table.keys();
79 if (!table.containsKey(next)) {
111 if (table == null) {
114 return table.get(key);
118 if (table == null) {
120 table = new Hashtable<String, Object>(contents.length / 3 * 4 + 3);
122 table
[all...]
/dalvik/vm/
H A DReferenceTable.c17 * Reference table management.
30 pRef->table = (Object**) malloc(initialCount * sizeof(Object*));
31 if (pRef->table == NULL)
34 memset(pRef->table, 0xdd, initialCount * sizeof(Object*));
36 pRef->nextEntry = pRef->table;
48 free(pRef->table);
49 pRef->table = pRef->nextEntry = NULL;
60 assert(pRef->table != NULL);
62 if (pRef->nextEntry == pRef->table + pRef->maxEntries) {
65 } else if (pRef->nextEntry == pRef->table
[all...]
H A DReferenceTable.h17 * Maintain a table of references. Used for internal local references,
20 * None of the table functions are synchronized.
31 * If "allocEntries" is not equal to "maxEntries", the table may expand when
33 * pointers into "table" rather than offsets, use a fixed-size table.
36 * table/nextEntry is allowed.)
39 Object** table; /* top of the list */ member in struct:ReferenceTable
49 * If "initialCount" != "maxCount", the table will expand as required.
51 * Returns "false" if table allocation fails.
60 * You must call dvmInitReferenceTable() before you can re-use this table
[all...]
H A DJniInternal.h102 (int)(saveArea->xtra.localRefTop - self->jniLocalRefTable.table));
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Extensions.java159 private OrderedTable table = new OrderedTable(); field in class:X509Extensions
222 table.add(key, value);
228 * constructor from a table of extensions.
230 * it's is assumed the table contains OID/String pairs.
239 * Constructor from a table of extensions with ordering.
241 * It's is assumed the table contains OID/String pairs.
263 table.add(oid, ext);
288 table.add(oid, ext);
300 return table.getKeys();
314 return (X509Extension)table
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERUniversalString.java13 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERUniversalString
81 buf.append(table[(string[i] >>> 4) % 0xf]);
82 buf.append(table[string[i] & 0xf]);
H A DDERBitString.java10 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERBitString
278 buf.append(table[(string[i] >>> 4) % 0xf]);
279 buf.append(table[string[i] & 0xf]);
/dalvik/dx/src/com/android/dx/dex/file/
H A DCatchStructs.java49 * null-ok; the underlying table; set in
52 private CatchTable table; field in class:CatchStructs
79 this.table = null;
89 if (table == null) {
90 table = code.getCatches();
101 return table.size();
123 int size = table.size();
132 handlerOffsets.put(table.get(i).getHandlers(), null);
199 int tableSize = table.size();
207 CatchTable.Entry one = table
[all...]
/dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DmySSLSession.java26 private Hashtable table; field in class:mySSLSession
37 table = new Hashtable();
128 Object obj1 = table.put(s, obj);
142 Object obj = table.remove(s);
153 return table.get(s);
159 Enumeration enumeration = table.keys();
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJDKKeyStore.java77 protected Hashtable table = new Hashtable(); field in class:JDKKeyStore
488 return table.keys();
494 return (table.get(alias) != null);
501 Object entry = table.get(alias);
508 table.remove(alias);
514 StoreEntry entry = (StoreEntry)table.get(alias);
539 Enumeration e = table.elements();
570 StoreEntry entry = (StoreEntry)table.get(alias);
582 StoreEntry entry = (StoreEntry)table.get(alias);
597 StoreEntry entry = (StoreEntry)table
[all...]
/dalvik/libcore/sql/src/main/java/java/sql/
H A DDatabaseMetaData.java171 * key by some other table. Used for the column {@code UPDATE_RULE}.
295 * States that this table index is a clustered index.
302 * States that this table index is a hashed index.
309 * States this table's index is neither a clustered index, not a hashed
310 * index, and not a table statistics index; i.e. it is something else.
317 * States this column has the table's statistics, and that it is returned in
318 * conjunction with the table's index description.
516 * <li>ORDINAL_POSITION - int - The index of the column in the table (where
521 * this gives the catalog of the table corresponding to the attribute's scope.
524 * this gives the schema of the table correspondin
621 getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) argument
701 getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) argument
1080 getExportedKeys(String catalog, String schema, String table) argument
1193 getImportedKeys(String catalog, String schema, String table) argument
1267 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument
1577 getPrimaryKeys(String catalog, String schema, String table) argument
2221 getVersionColumns(String catalog, String schema, String table) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DNamespaceSupport.java648 Hashtable table;
653 // Select the appropriate table.
655 table = attributeNameTable;
657 table = elementNameTable;
663 name = (String[])table.get(qName);
712 table.put(name[2], name);
/dalvik/vm/mterp/armv5te/
H A DOP_NEW_ARRAY.S52 mov r2, #ALLOC_DONT_TRACK @ don't track in local refs table
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java70 // to the allSupported table then increment the count of the
139 * @param table
142 private void addOrIncrementTable(Hashtable<String, Integer> table, String key) { argument
143 if (table.containsKey(key)) {
144 Integer before = (Integer) table.get(key);
145 table.put(key, new Integer(before.intValue() + 1));
147 table.put(key, new Integer(1));
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCDatabaseMetaData.java529 sb.append("(type = 'table' or type = 'view')");
675 String table,
716 String table, int scope,
726 SQLite.Shell.sql_quote(table) + ")"));
729 SQLite.Shell.sql_quote(table) + ")"));
826 String table) throws SQLException {
845 String table) throws SQLException {
851 SQLite.Shell.sql_quote(table) + ")"));
906 row[2] = table;
922 SQLite.Shell.sql_quote(table)
674 getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) argument
715 getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) argument
825 getVersionColumns(String catalog, String schema, String table) argument
844 getPrimaryKeys(String catalog, String schema, String table) argument
962 internalImportedKeys(String table, String pktable, JDBCResultSet in, TableResultX out) argument
1005 getImportedKeys(String catalog, String schema, String table) argument
1042 getExportedKeys(String catalog, String schema, String table) argument
1236 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/kxml2/wap/
H A DWbxmlParser.java606 private final void setTable(int page, int type, String[] table) { argument
613 tables.setElementAt(table, page*3+type);
1024 * Sets the tag table for a given page.
1028 public void setTagTable(int page, String[] table) { argument
1029 setTable(page, TAG_TABLE, table);
1045 String[] table) {
1047 setTable(page, ATTR_START_TABLE, table);
1057 String[] table) {
1059 setTable(page, ATTR_VALUE_TABLE, table);
1043 setAttrStartTable( int page, String[] table) argument
1055 setAttrValueTable( int page, String[] table) argument
/dalvik/vm/mterp/x86/
H A DOP_EXECUTE_INLINE.S6 * We will be calling through a function table:
64 sall $$4,%eax # index *= sizeof(table entry)
/dalvik/libcore/text/src/main/java/java/text/
H A DDateFormat.java881 private static Hashtable<Integer, Field> table = new Hashtable<Integer, Field>(); field in class:DateFormat.Field
1036 && table.get(new Integer(calendarField)) == null) {
1037 table.put(new Integer(calendarField), this);
1069 return table.get(new Integer(calendarField));
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java21 * A hash table supporting full concurrency of retrievals and
27 * and there is <em>not</em> any support for locking the entire table
39 * Enumerations return elements reflecting the state of the hash table
48 * table is internally partitioned to try to permit the indicated
52 * threads as will ever concurrently modify the table. Using a
77 * The basic strategy is to subdivide the table among Segments,
78 * each of which itself is a concurrently readable hash table.
84 * The default initial number of table slots for this table.
98 * The default load factor for this table
233 transient HashEntry[] table; field in class:ConcurrentHashMap.Segment
[all...]

Completed in 722 milliseconds

12