HomeSort by relevance Sort by last modified time
    Searched defs:record (Results 1 - 25 of 42) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/tnf/tnfdump/
state.h 39 * data structures for table of record pointers:
40 * time: timestamp of record
41 * record: handle on record
45 tnf_datum_t record; member in struct:entry
main.c 134 tnf_datum_t record; local
198 record = tnf_get_file_header(tnf);
200 describe_record(record);
205 while ((record = tnf_get_next_record(record)) != TNF_DATUM_NULL)
206 desc_func(record);
232 fail(0, gettext("illegal record at %x (%d)"),
  /onnv/onnv-gate/usr/src/lib/libadm/common/
devattr.c 73 * specified by <device>. If it finds a record corresponding to that
75 * extracts the value of the field <attr> from that record, if any.
80 * device whose record is to be looked for
104 struct devtabent *record; /* Retrieved record */ local
111 /* Get the record for the specified device */
112 if (!(record = _getdevrec(device))) {
117 /* Search the record for the specified attribute */
122 val = (record->alias != NULL) ? record->alias : ""
    [all...]
dgrpent.c 46 * _getdgrprec() Gets a specific record from the device table
85 * recnum Record number of next record to read
99 * _getdgrptabent() returns the first record in the device table.
192 * This function gets the next record from the input stream "oam_dgroup"
193 * and puts it in the device-group table record buffer (whose address is
195 * accommodate the record, the function allocates more space to the
201 * The address of the buffer containing the record.
206 * recbufsz Current size of the record buffer
207 * xtndcnt Number of times the record buffer has been extende
431 char *record; \/* Record just read *\/ local
    [all...]
devtab.c 45 * _getdevrec() Gets a specific record from the device table
83 * dtabrecnum Record number of the current record (0 to n-1)
88 * xtndcnt Number of malloc()/realloc() calls on record buffer
149 * _getdevtabent() returns the first record in the device table.
385 * This function gets the next record from the input stream "oam_devtab"
386 * and puts it in the device-table record buffer (whose address is in
388 * accommodate the record, the function allocates more space to the
394 * The address of the buffer containing the record.
399 * recbufsz Current size of the record buffe
683 char *record; \/* Ptr to the record just read *\/ local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/logging/
SysloglikeFormatter.java 50 * The date set for each published Record.
82 * the class generating the record, if possible. (default
88 * Flag to set whether log records should indicate the record's
96 * component of the record's logger name, if useLoggerName isn't
108 * Flag to set whether each record should be split into two
116 * @param record the log record to be formatted.
117 * @return a formatted log record.
119 public synchronized String format(LogRecord record)
123 date.setTime(record.getMillis())
    [all...]
SyslogHandler.java 65 * Flag whether stack traces should be output when a record's
81 * Flag to set whether log records should indicate the record's
88 * component of the record's logger name, if useLoggerName isn't
164 * Publishes the given record with its associated Severity (or
168 public void publish(LogRecord record)
172 if (record.getLevel() instanceof Severity)
173 severity = (Severity)record.getLevel();
175 severity = Severity.severityForLevel(record
189 String loggerName = record.getLoggerName();
193 message.append(record.getLoggerName())
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefswssize/
cachefswssize.c 56 void *record; local
116 while (record = stats_log_logfile_read(sc, NULL)) {
117 ar = stats_log_record_toascii(sc, record);
121 free(record);
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/
file.c 71 uint8_t record[sizeof (HfsExtentKey) local
74 HfsExtentKey* ret_key = (HfsExtentKey*) record;
76 (record + sizeof (HfsExtentKey));
87 record, sizeof (record), NULL))
file_plus.c 73 uint8_t record[sizeof (HfsPExtentKey) local
76 HfsPExtentKey* ret_key = (HfsPExtentKey*) record;
78 (record + sizeof (HfsPExtentKey));
90 record, sizeof (record), NULL))
advfs.c 72 /* read the first record immediatly inferior or egal to the given key */
144 /* send record reference if needed */
181 uint8_t record[sizeof (HfsExtentKey) local
184 HfsExtentKey* ret_key = (HfsExtentKey*) record;
186 (record + sizeof (HfsExtentKey));
200 record, sizeof (record), NULL)
advfs_plus.c 65 /* read the first record immediatly inferior or egal to the given key */
67 /* record_out _must_ be large enough to receive the whole record (key + data) */
150 /* send record reference if needed */
188 uint8_t record[sizeof (HfsPExtentKey) local
191 HfsPExtentKey* ret_key = (HfsPExtentKey*) record;
193 (record + sizeof (HfsPExtentKey));
209 record, sizeof (record), NULL)
  /onnv/onnv-gate/usr/src/lib/libbsm/common/
au_open.c 40 * Open an audit record = find a free descriptor and pass it back.
150 token_t *record; /* mbuf chain which is the record */ local
153 char *buffer; /* to build record into */
154 int byte_count; /* bytes in the record */
171 * If not to be written toss the record
175 record = dchain;
177 free(record->tt_data);
178 free(record);
185 * Count up the bytes used in the record
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/server/
DhcpHostsTable.java 167 DirectoryRow record = hostsTable.getRowInstance(); local
168 record.putColumn(addrColumn, "");
169 record.putColumn(cnameColumn, name);
170 record.putColumn(aliasesColumn, "");
171 record.putColumn(commentColumn, "");
173 record = hostsTable.getFirstRow(record);
175 address = record.getColumn(addrColumn);
193 DirectoryRow record = hostsTable.getRowInstance(); local
194 record.putColumn(addrColumn, address)
229 DirectoryRow record = hostsTable.getRowInstance(); local
252 DirectoryRow record = hostsTable.getRowInstance(); local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Aggregation.java 55 * results in an {@code Aggregation} named "a" with only a single record
127 * @throws IllegalArgumentException if any record has an empty
128 * tuple, unless it is the only record in the given collection (only
150 for (AggregationRecord record : records) {
151 map.put(record.getTuple(), record); local
218 * contains a record with the same tuple key as the given record
221 addRecord(AggregationRecord record)
223 Tuple key = record.getTuple()
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/lib/
dhcptab.c 294 * the record as a new instance of a Option
307 dt_rec_t record; local
344 (void) strlcpy(record.dt_key, key, sizeof (record.dt_key));
345 record.dt_type = DT_SYMBOL;
347 rcode = lookup_dd(handle, B_FALSE, query, 1, &record,
381 dt_rec_t record; local
432 rcode = lookup_dd(curHandle, B_FALSE, query, -1, &record,
446 /* For each row, write client record to new table */
448 /* Now add the record */
482 dt_rec_t record; local
586 dt_rec_t record; local
660 dt_rec_t record; local
    [all...]
network.c 479 dn_rec_t record; local
544 rcode = lookup_dd(curHandle, B_FALSE, query, -1, &record,
558 /* For each row, write client record to new table */
560 /* Now add the record */
601 dn_rec_t record; local
642 rcode = lookup_dd(handle, B_FALSE, query, -1, &record,
688 * Create a client record
741 /* Now add the record */
756 * Modify a client record. Supply both old and new record and table i
933 dn_rec_t record; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
TestMultiAggPrinta.java 74 List <Record> records = data.getRecords();
75 Record record; local
82 record = records.get(i);
83 if (record instanceof ValueRecord) {
84 value = ((ValueRecord)record).getValue();
90 buf.append(record);
92 } else if (record instanceof PrintaRecord) {
93 PrintaRecord printa = (PrintaRecord)record;
96 buf.append(record);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oawk/
lib.c 43 wchar_t record[RECSIZE]; variable
50 int donerec; /* 1 = record is valid (no flds have changed) */
52 static wchar_t L_record[] = L"$record";
57 { OCELL, CFLD, L_record, record, 0.0, STR|FLD},
90 record[0] = 0;
91 er = record + RECSIZE;
120 for (rr = record; /* dummy */; /* dummy */) {
125 error(FATAL, "record `%.20ws...' too long",
126 record);
136 error(FATAL, "record `%.20ws...' too long", record)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/usb/clients/usbser/usbser_keyspan/
usbser_keyspan.c 587 usbser_keyspan_fw_record_t *record = NULL; local
592 record = keyspan_usa49wlc_fw();
595 if (!record) {
612 /* Write until the last record of the firmware */
613 while (record->address != 0xffff) {
615 record->address, (uchar_t *)record->data,
616 record->data_len, KEYSPAN_REQ_SET) != USB_SUCCESS) {
622 record++;
  /onnv/onnv-gate/usr/src/cmd/zinject/
zinject.c 222 "\t\tClear the particular record (if given a numeric ID), or\n"
309 print_data_handler(int id, const char *pool, zinject_record_t *record,
314 if (record->zi_guid != 0 || record->zi_func[0] != '\0')
327 (u_longlong_t)record->zi_objset, (u_longlong_t)record->zi_object,
328 type_to_name(record->zi_type), record->zi_level);
330 if (record->zi_start == 0 &&
331 record->zi_end == -1ULL
549 zinject_record_t record = { 0 }; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/c2/
audit_io.c 62 * end of a record and the second table determines the state for a
63 * buffer which is the end of a record. The initial state is
133 * via softcall. Otherwise, defer by queueing the record onto the tad; at
144 /* If not to be written, toss the record. */
223 * If time of event is specified, use it in the record, otherwise use the
230 token_t *record; /* au_membuf chain == the record */ local
239 /* If not to be written, toss the record */
244 /* if auditing not enabled, then don't generate an audit record */
251 * an audit record
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
JDTrace.java 244 Record record = null; local
246 List <Record> records = data.getRecords();
247 Iterator <Record> itr = records.iterator();
249 record = itr.next();
251 if (record instanceof ExitRecord) {
252 exitStatus = ((ExitRecord)record).getStatus();
253 } else if (record instanceof ScalarRecord) {
254 ScalarRecord scalar = (ScalarRecord)record;
257 out.print(record.toString())
    [all...]
  /onnv/onnv-gate/usr/src/cmd/awk/
lib.c 36 uchar *record; variable
40 int donerec; /* 1 = record is valid (no flds have changed) */
124 if (c != 0 || buf[0] != '\0') { /* normal record */
125 if (bufp == &record) {
128 recloc->sval = record;
150 readrec(uchar **bufp, size_t *sizep, FILE *inf) /* read one record into buf */
235 r = recloc->sval; /* was record! */
289 /* clean out junk from previous record */
330 ERROR "accessing invalid field", record FATAL;
475 expand_buf(&record, &record_size, cnt + len + olen)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
esclex.c 86 static int record(int tok, const char *s);
266 /* record start time */
306 return (record(EOF, NULL));
349 return (record(c, NULL));
417 return (record(c, NULL));
462 return (record(c, NULL));
491 return (record(QUOTE, stable(Tok)));
497 return (record(AND, NULL));
500 return (record(c, NULL));
509 return (record(OR, NULL))
685 record(int tok, const char *s) function
    [all...]

Completed in 4559 milliseconds

1 2