Searched defs:datas (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpCachedData.java64 * @param datas The table datas, sorted according to the
65 * order in <code>indexes</code>: <code>datas[i]</code>
70 Object datas[]) {
73 this.datas = datas;
103 this.datas = new Object[size];
107 indexMap.values().toArray(this.datas);
109 indexMap.values().toArray(this.datas);
124 * The table datas, sorte
69 SnmpCachedData(long lastUpdated, SnmpOid indexes[], Object datas[]) argument
128 public final Object datas[]; field in class:SnmpCachedData
[all...]
H A DSnmpTableCache.java59 protected transient WeakReference<SnmpCachedData> datas; field in class:SnmpTableCache
77 if (datas == null) return null;
78 final SnmpCachedData cached = datas.get();
101 if (validity != 0) datas = new WeakReference<SnmpCachedData>(computedDatas);
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmMemGCTableMetaImpl.java84 public SnmpOid getNext(SnmpCachedData datas, SnmpOid index) { argument
94 final int insertion = (index==null)?-1:datas.find(index);
108 for (;next<datas.indexes.length;next++) {
110 final Object value = datas.datas[next];
118 return datas.indexes[next];

Completed in 24 milliseconds