Searched defs:records (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DPrintfRecord.java50 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 DAggregation.java51 * 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 DProbeData.java84 "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...]
/osnet-11/usr/src/grub/grub2/grub-core/io/
H A Dxzio.c134 grub_uint64_t records; local
159 if (read_vli (xzio->file, &records) <= 0)
162 for (; records != 0; records--)
/osnet-11/usr/src/lib/libdhcpsvc/modules/binfiles/
H A Ddhcptab.c209 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 tha
[all...]
H A Ddhcp_network.c43 * 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, no
[all...]
/osnet-11/usr/src/lib/libdhcpsvc/modules/files/
H A Ddhcptab.c153 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 ca
[all...]
H A Ddhcp_network.c175 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 tha
[all...]
/osnet-11/usr/src/lib/libdhcpsvc/modules/files0/
H A Ddhcptab.c119 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);
H A Ddhcp_network.c122 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);
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java130 // 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...]
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_pool.c3722 * into 'records'. 'leftover' is set to the number of bytes that weren't
3727 nvlist_t ***records, uint_t *numrecords)
3751 *records = realloc(*records,
3754 (*records)[*numrecords - 1] = nv;
3771 nvlist_t **records = NULL; local
3787 &leftover, &records, &numrecords)) != 0)
3797 records, numrecords) == 0);
3800 nvlist_free(records[i]);
3801 free(records);
3726 zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover, nvlist_t ***records, uint_t *numrecords) argument
[all...]

Completed in 826 milliseconds