Searched defs:records (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | 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 [all...] |
H A D | 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) argument 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 b [all...] |
H A D | ProbeData.java | 84 "enabledProbeDescription", "flow", "records"}); 113 // element, cleared after records list is fully populated. 116 private List <Record> records; field in class:ProbeData 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()); 178 records.addAll(recordList); 189 if (records [all...] |
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/fruaccess/ |
H A D | piclsmc.c | 95 uint8_t records; /* multirecord area */ member in struct:__anon1227 254 offset->records = data[5] * 8;
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | 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) { argument 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 222 AllBVCollector(Vector records) argument [all...] |
/illumos-gate/usr/src/lib/libzfs/common/ |
H A D | libzfs_pool.c | 3659 * into 'records'. 'leftover' is set to the number of bytes that weren't 3664 nvlist_t ***records, uint_t *numrecords) 3688 *records = realloc(*records, 3691 (*records)[*numrecords - 1] = nv; 3707 nvlist_t **records = NULL; local 3726 &leftover, &records, &numrecords)) != 0) 3749 records, numrecords) == 0); 3752 nvlist_free(records[i]); 3753 free(records); 3663 zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover, nvlist_t ***records, uint_t *numrecords) argument [all...] |
/illumos-gate/usr/src/cmd/zpool/ |
H A D | zpool_main.c | 4337 "\tor ignore the intent log records by running " 4977 nvlist_t **records; local 4990 &records, &numrecords) == 0); 4992 nvlist_t *rec = records[i]; 4999 tsec = fnvlist_lookup_uint64(records[i],
|
Completed in 105 milliseconds