/titanic_50/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | PrintfRecord.java | 75 private List <ValueRecord> records; field in PrintfRecord 82 records = new ArrayList <ValueRecord> (); in PrintfRecord() 101 records = new ArrayList <ValueRecord> (v.size()); in PrintfRecord() 102 records.addAll(v); in PrintfRecord() 112 if (records == null) { in validate() 115 for (ValueRecord r : records) { in validate() 130 records.add(rec); in addUnformattedElement() 170 return Collections. <ValueRecord> unmodifiableList(records); in getRecords() 188 return records.size(); in getRecordCount() 206 return records.get(i); in getRecord() [all …]
|
H A D | ProbeData.java | 116 private List <Record> records; field in ProbeData 146 records = new ArrayList <Record> (); in ProbeData() 177 records = new ArrayList <Record> (recordList.size()); in ProbeData() 178 records.addAll(recordList); in ProbeData() 189 if (records == null) { in validate() 209 records.add(record); in addRecord() 225 records.add(rec); in addTraceRecord() 245 records.add(symbol); in addSymbolRecord() 266 records.add(stack); in addStackRecord() 275 records.add(new PrintfRecord()); in addPrintfRecord() [all …]
|
H A D | Aggregation.java | 145 mapRecords(Collection <AggregationRecord> records) in mapRecords() argument 147 int capacity = (int)(((float)records.size() * 3.0f) / 2.0f); in mapRecords() 150 for (AggregationRecord record : records) { in mapRecords() 320 List <AggregationRecord> records = (List)s.readObject(); in readObject() local 322 mapRecords(records); in readObject()
|
/titanic_50/usr/src/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.MultiAggPrinta.ksh.out | 1 …low = null, records = [org.opensolaris.os.dtrace.PrintaRecord[aggregations = [org.opensolaris.os.d… 5 …d[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = , id = 1, records = [org.opensolari… 7 …[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = a, id = 2, records = [org.opensolari… 13 …records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris… 21 …= 4, records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [], value = 3]], org.opensolar… 23 …= 4, records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [], value = 3]], org.opensolar… 25 …[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = c, id = 4, records = [org.opensolari… 27 …records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris… 33 …records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris… 39 …records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris… [all …]
|
H A D | tst.Bean.ksh.out | 42 …serialized: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolari… 53 …deserialized: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensola… 65 …encoded: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolaris.o… 76 …decoded: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolaris.o… 186 …egations = [org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolari… 196 ], value = 7]], org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensol… 227 …egations = [org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolari… 237 ], value = 7]], org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensol… 269 …egations = [org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolari… 279 ], value = 7]], org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensol… [all …]
|
/titanic_50/usr/src/lib/libshell/common/scripts/ |
H A D | crawlsrccomments.sh | 603 nameref records="$1" 610 records[${filename}]=( 622 records[${filename}].hashsum["md5"]="$(sum -x md5 < "$filename")" 623 records[${filename}].hashsum["sha1"]="$(sum -x sha1 < "$filename")" 626 records[${filename}].fileformat_found="true" 627 records[${filename}].file_format="$datatype" 635 records[${filename}].comments_parsed=true 639 records[${filename}].comments_parsed=true 643 records[${filename}].comments_parsed=true 851 nameref records=$1 [all …]
|
/titanic_50/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestMultiAggPrinta.java | 74 List <Record> records = data.getRecords(); in probeDataString() local 78 for (int i = 0; i < records.size(); ++i) { in probeDataString() 82 record = records.get(i); in probeDataString() 115 List <Record> records = data.getRecords(); in main() 116 for (Record r : records) { in main()
|
/titanic_50/usr/src/lib/libdtrace_jni/java/docs/examples/ |
H A D | TestAPI2.java | 51 java.util.List < Record > records = data.getRecords(); in main() 52 for (Record r : records) { in main()
|
/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ServiceStoreInMemory.java | 172 private Vector records = null; // for returns. field in ServiceStoreInMemory.ScopeBVCollector 175 ScopeBVCollector(Vector records, Vector scopes) { in ScopeBVCollector() argument 176 this.records = records; in ScopeBVCollector() 189 records.addElement(rec); in setReturn() 201 records.addElement(rec); in setReturn() 220 private Vector records = null; // for returns. field in ServiceStoreInMemory.AllBVCollector 222 AllBVCollector(Vector records) { in AllBVCollector() argument 223 this.records = records; in AllBVCollector() 231 if (!records.contains(rec)) { in setReturn() 232 records.addElement(rec); in setReturn() [all …]
|
/titanic_50/usr/src/pkg/manifests/ |
H A D | system-tnf.mf | 28 …he kernel and in applications, that can generate Trace Normal Format (TNF) records in a trace file" 64 … kernel and in applications, that can generate Trace Normal Format (TNF) records in a trace file" \
|
/titanic_50/usr/src/cmd/praudit/ |
H A D | print_audit.txt | 78 Print records in their raw form. Times, UIDs, GIDs, 84 Print records in their short form. All numeric fields 91 Print records in XML format. "tags" are included in the
|
/titanic_50/usr/src/psm/stand/bootblks/ufs/common/ |
H A D | ufs.fth | 382 #opens /file-record * constant /file-records 384 /file-records instance buffer: file-records 387 : fd>record ( fd -- record ) /file-record * file-records + ; 462 file-records /file-records erase
|
/titanic_50/usr/src/psm/stand/bootblks/hsfs/common/ |
H A D | hsfs.fth | 420 #opens /file-record * constant /file-records 422 /file-records instance buffer: file-records 426 : fd>record ( fd -- record ) /file-record * file-records + ; 495 file-records /file-records erase
|
/titanic_50/usr/src/cmd/sendmail/cf/cf/ |
H A D | sendmail.mc | 14 # if MX records are unavailable. A short-cut rule is also defined, which
|
/titanic_50/usr/src/cmd/sendmail/cf/feature/ |
H A D | ldap_routing.m4 | 23 # LDAP records
|
/titanic_50/usr/src/lib/libsqlite/test/ |
H A D | btree3.test | 41 # Insert a few one records
|
H A D | btree3rb.test | 39 # Insert a few one records
|
H A D | intpkey.test | 54 # Insert some records into the new table. Specify the primary key 103 # A ROWID is automatically generated for new records that do not specify
|
H A D | bigrow.test | 34 # Make a table into which we can insert some but records.
|
/titanic_50/usr/src/lib/libzfs/common/ |
H A D | libzfs_pool.c | 3618 nvlist_t ***records, uint_t *numrecords) in zpool_history_unpack() argument 3642 *records = realloc(*records, in zpool_history_unpack() 3645 (*records)[*numrecords - 1] = nv; in zpool_history_unpack() 3661 nvlist_t **records = NULL; in zpool_get_history() local 3680 &leftover, &records, &numrecords)) != 0) in zpool_get_history() 3703 records, numrecords) == 0); in zpool_get_history() 3706 nvlist_free(records[i]); in zpool_get_history() 3707 free(records); in zpool_get_history()
|
/titanic_50/usr/src/cmd/cmd-inet/etc/ |
H A D | ipqosconf.2.sample | 134 # Limit number of flow records in the table to 2K.
|
/titanic_50/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/fruaccess/ |
H A D | piclsmc.c | 95 uint8_t records; /* multirecord area */ member 254 offset->records = data[5] * 8; in read_common_header()
|
/titanic_50/usr/src/cmd/oawk/ |
H A D | README | 55 3. Multi-line records are now supported more
|
/titanic_50/usr/src/cmd/dtrace/test/cmd/jdtrace/ |
H A D | JDTrace.java | 245 List <Record> records = data.getRecords(); in consumeProbeData() local 246 Iterator <Record> itr = records.iterator(); in consumeProbeData()
|
/titanic_50/usr/src/cmd/sendmail/lib/ |
H A D | helpfile | 112 -bt /mx host :returns the MX records for `host'.
|