| /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
| PrintfRecord.java | 50 new String[] {"records", "formattedString"}) 75 private List <ValueRecord> records; field in class:PrintfRecord 82 records = new ArrayList <ValueRecord> (); 101 records = new ArrayList <ValueRecord> (v.size()); 102 records.addAll(v); 112 if (records == null) { 115 for (ValueRecord r : records) { 130 records.add(rec); 170 return Collections. <ValueRecord> unmodifiableList(records); 188 return records.size() [all...] |
| Aggregation.java | 51 * results in an {@code Aggregation} named "counts" containing records 82 new String[] {"name", "ID", "records"}) 116 * Creates an aggregation with the given name, ID, and records. 123 * @param aggregationRecords unordered collection of records 126 * records is {@code null} 145 mapRecords(Collection <AggregationRecord> records) 147 int capacity = (int)(((float)records.size() * 3.0f) / 2.0f); 150 for (AggregationRecord record : records) { 195 * Gets an unordered list of this aggregation's records. The list is 202 * records by reference in no particular orde 320 List <AggregationRecord> records = (List)s.readObject(); local [all...] |
| ProbeData.java | 84 "enabledProbeDescription", "flow", "records"}); 96 DEFAULT_CMP = ProbeData.getComparator(KeyField.RECORDS, 113 // element, cleared after records list is fully populated. 116 private List <Record> records; field in class:ProbeData 131 RECORDS 146 records = new ArrayList <Record> (); 152 * of records. Supports XML persistence. 164 * @param recordList list of records generated by D actions in the 167 * list of records is {@code null} 177 records = new ArrayList <Record> (recordList.size()) [all...] |
| /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/binfiles/ |
| dhcptab.c | 209 dt_rec_list_t *records, *new_records; local 221 records = NULL; 238 * records, not the records themselves; continue. 288 new_records = add_dtrec_to_list(recordp, records); 296 records = new_records; 303 *recordsp = records; 307 if (records != NULL) 308 free_dtrec_list(records); 569 * is so one can delete records that were not looked up) [all...] |
| dhcp_network.c | 43 * array of records. In order to provide fast client IP lookup, the array 44 * of records is directly indexed by client IP address (using a simple 48 * lookups, we can restrict our search to only the in-use records by merely 63 * records | unused | hashN | hash1 <- hash1 | | 66 * | : :: : [ more records... ] : | 127 * mapping of client IP addresses to records. In particular, unless the 325 dn_rec_list_t *records, *new_records; local 358 records = NULL; 416 * No more records; bail. 448 * records, not the records themselves; continue [all...] |
| /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/files0/ |
| dhcptab.c | 119 dt_rec_list_t *records, *new_records; local 126 records = NULL; 174 * records, not the records themselves; continue. 221 new_records = add_dtrec_to_list(recordp, records); 228 records = new_records; 237 *recordsp = records; 241 if (records != NULL) 242 free_dtrec_list(records);
|
| dhcp_network.c | 122 dn_rec_list_t *records, *new_records; local 129 records = NULL; 204 * records, not the records themselves; continue. 241 new_records = add_dnrec_to_list(recordp, records); 249 records = new_records; 258 *recordsp = records; 262 if (records != NULL) 263 free_dnrec_list(records);
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
| TestMultiAggPrinta.java | 72 buf.append(", records = "); 74 List <Record> records = data.getRecords(); local 78 for (int i = 0; i < records.size(); ++i) { 82 record = records.get(i); 115 List <Record> records = data.getRecords(); 116 for (Record r : records) {
|
| /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/ |
| ExtendEntityManager.h | 37 enum Records { 44 Records records; member in struct:SP_NAMESPACE::StorageObjectSpec
|
| /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/files/ |
| dhcp_network.c | 175 dn_rec_list_t *records, *new_records; local 211 records = NULL; 275 * records, not the records themselves; continue. 311 new_records = add_dnrec_to_list(recordp, records); 319 records = new_records; 328 *recordsp = records; 332 if (records != NULL) 333 free_dnrec_list(records); 523 * is zero, so that records that weren't looked up can be deleted [all...] |
| dhcptab.c | 153 dt_rec_list_t *records, *new_records; local 160 records = NULL; 210 * records, not the records themselves; continue. 256 new_records = add_dtrec_to_list(recordp, records); 263 records = new_records; 272 *recordsp = records; 276 if (records != NULL) 277 free_dtrec_list(records); 384 * is zero, so that records can be deleted that weren't looked u [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.dhcpd/ |
| misc.c | 390 uint_t records = 0; local 421 records++; 446 *lrecords = records; 454 * dhcp_lookup_dd_classify: perform lookup_dd(), or use existing records 462 * S_FREE A search for free records. Only examine first 464 * S_LRU A search for lru records. Perform sort if needed, 481 dn_rec_list_t *m_lp = NULL; /* list of manual records */ 487 * Lookup records matching the specified criteria, or use 488 * records from a previous lookup supplied for classification. 523 * For LRU classification, sort returned records base [all...] |
| dhcptab.c | 192 uint_t records; local 300 records = 0; 312 records++; 320 records, ctime(&mtable_time));
|
| /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/fruaccess/ |
| piclsmc.c | 95 uint8_t records; /* multirecord area */ member in struct:__anon1256 254 offset->records = data[5] * 8;
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/ |
| JDTrace.java | 246 List <Record> records = data.getRecords(); local 247 Iterator <Record> itr = records.iterator();
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/ |
| ColumnListCanvas.java | 103 int records; // # of active records field in class:ColumnListCanvas 153 records = 0; 438 if (row < 0 || row >= records) 458 if (row < 0 || row >= records) 577 return new Dimension(totalWidth, rowHeight * records); 615 // initialize all intermediate records 616 while (row > records) { 617 Object[] labelRow = (Object[]) labels.elementAt(records); 621 rowColors.setElementAt(new Integer(COLOR_NONE), records); [all...] |
| /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/ |
| ExtendEntityManager.cxx | 214 static const char *recordsName(StorageObjectSpec::Records records); 217 StorageObjectSpec::Records value; 235 Boolean lookupRecords(const StringC &token, StorageObjectSpec::Records &); 782 switch (spec.records) { 1171 || parsedSysid_[i].records == StorageObjectSpec::asis) { 1173 if (parsedSysid_[i].records != StorageObjectSpec::asis) { 1508 StorageObjectSpec::Records records; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libzfs/common/ |
| libzfs_pool.c | 3057 nvlist_t **records = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
| ServiceStoreInMemory.java | 130 // records already seen. 131 private Vector attrTags = null; // tags to match against records 163 * collector for the collecting records if scopes match. 172 private Vector records = null; // for returns. field in class:ServiceStoreInMemory.ScopeBVCollector 175 ScopeBVCollector(Vector records, Vector scopes) { 176 this.records = records; 189 records.addElement(rec); 201 records.addElement(rec); 213 * collector for collecting all records 220 private Vector records = null; \/\/ for returns. field in class:ServiceStoreInMemory.AllBVCollector 2346 Vector records = new Vector(); local [all...] |
| /onnv/onnv-gate/usr/src/cmd/zpool/ |
| zpool_main.c | 3772 nvlist_t **records; local [all...] |