Searched defs:rec (Results 1 - 25 of 69) sorted by relevance

123

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMultiAggPrinta.java44 printaRecordString(PrintaRecord rec) argument
49 buf.append(rec.getAggregations());
51 buf.append(rec.getFormattedStrings());
53 buf.append(rec.getTuples());
55 buf.append(rec.getOutput());
/illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/
H A Dovload.c127 osa_princ_ent_t rec; local
143 if((rec = (osa_princ_ent_t) malloc(sizeof(osa_princ_ent_rec))) == NULL)
145 memset(rec, 0, sizeof(osa_princ_ent_rec));
155 if((rec->policy = (char *) malloc(strlen(cp)+1)) == NULL) {
159 strcpy(rec->policy, cp);
160 } else rec->policy = NULL;
167 rec->aux_attributes = strtol(cp, (char **)NULL, 16);
173 rec->old_key_len = atoi(cp);
179 rec->old_key_next = atoi(cp);
185 rec
[all...]
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_mem.c118 * au_buff_t *rec; start of the record chain
123 au_append_rec(au_buff_t *rec, au_buff_t *buf, int pack) argument
125 if (!rec)
128 while (rec->next_buf)
129 rec = rec->next_buf;
130 if (((int)(rec->len + buf->len) <= AU_BUFSIZE) && pack) {
131 bcopy(buf->buf, (char *)(rec->buf + rec->len),
133 rec
[all...]
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DPrintfRecord.java128 addUnformattedElement(ScalarRecord rec) argument
130 records.add(rec);
H A DAggregate.java301 addRecord(String aggregationName, long aggid, AggregationRecord rec) argument
303 rec.setOrdinal(recordSequence++);
311 aggregation.addRecord(rec);
H A DProbeData.java223 Record rec = null;
224 for (; ((rec = nativeElements.get(i)) == null) && (i < len); ++i);
225 records.add(rec);
235 Record rec = null;
236 for (; ((rec = nativeElements.get(i)) == null) && (i < len); ++i);
237 SymbolValueRecord symbol = SymbolValueRecord.class.cast(rec);
255 Record rec = null;
256 for (; ((rec = nativeElements.get(i)) == null) && (i < len); ++i);
257 StackValueRecord stack = StackValueRecord.class.cast(rec);
307 AggregationRecord rec)
306 addAggregationRecord(String aggregationName, long aggid, AggregationRecord rec) argument
[all...]
/illumos-gate/usr/src/lib/libtnf/
H A Darray.c143 tnf_ref32_t *rec; local
147 rec = _GET_REF32(tnf, (tnf_ref32_t *)
150 return ((rec == TNF_NULL)? TNF_DATUM_NULL :
151 RECORD_DATUM(tnf, rec));
H A Dstruct.c111 tnf_ref32_t *rec; local
115 rec = _GET_REF32(tnf, (tnf_ref32_t *)
118 return ((rec == TNF_NULL)? TNF_DATUM_NULL :
119 RECORD_DATUM(tnf, rec));
/illumos-gate/usr/src/cmd/powertop/common/
H A Dcpuidle.c217 dtrace_recdesc_t *rec; local
221 rec = &aggdesc->dtagd_rec[1];
227 rec->dtrd_offset);
232 rec->dtrd_offset);
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dipft_sn.c98 static int snoop_read_rec(rec)
99 struct snooppkt *rec;
103 if (read(sfd, (char *)rec, sizeof(*rec)) != sizeof(*rec))
106 ilen = (int)ntohl(rec->sp_ilen);
107 plen = (int)ntohl(rec->sp_plen);
108 if (ilen > plen || plen < sizeof(*rec))
111 plen -= sizeof(*rec);
129 struct snooppkt rec; local
159 struct snooppkt rec; local
[all...]
H A Dipft_pc.c160 static int pcap_read_rec(rec)
161 struct pcap_pkthdr *rec;
165 if (read(pfd, (char *)rec, sizeof(*rec)) != sizeof(*rec))
169 rec->ph_clen = SWAPLONG(rec->ph_clen);
170 rec->ph_len = SWAPLONG(rec->ph_len);
171 rec
192 struct pcap_pkthdr rec; local
222 struct pcap_pkthdr rec; local
[all...]
/illumos-gate/usr/src/cmd/make/bin/
H A Drep.cc324 String_rec rec; local
339 INIT_STRING_FROM_STACK(rec, rec_buf);
340 APPEND_NAME(np, &rec, FIND_LENGTH);
341 append_char((int) colon_char, &rec);
342 append_char((int) space_char, &rec);
362 APPEND_NAME(recursive_name, &rec,
364 append_char((int) space_char, &rec);
366 &rec, FIND_LENGTH);
367 append_char((int) space_char, &rec);
369 &rec, FIND_LENGT
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dmultilink.c98 TDB_DATA key, pid, rec; local
161 rec = tdb_fetch(pppdb, pid);
162 if (rec.dptr != NULL) {
164 parse_num(rec.dptr, "IFNAME=ppp", &unit);
166 if (!parse_num(rec.dptr, "PPPD_PID=", &pppd_pid)
170 free(rec.dptr);
/illumos-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_archive.c46 DBT rec; local
84 memset(&rec, 0, sizeof(rec));
86 F_SET(&rec, DB_DBT_MALLOC);
87 if ((ret = log_get(dblp, &stable_lsn, &rec, DB_LAST)) != 0)
90 __os_free(rec.data, rec.size);
186 DBT rec; local
199 memset(&rec, 0, sizeof(rec));
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_map.c40 dt_strdata_add(dtrace_hdl_t *dtp, dtrace_recdesc_t *rec, void ***data, int *max) argument
46 if (rec->dtrd_format == 0)
49 if (rec->dtrd_format <= *max &&
50 (*data)[rec->dtrd_format - 1] != NULL) {
55 fmt.dtfd_format = rec->dtrd_format;
70 while (rec->dtrd_format > (maxformat = *max)) {
88 switch (rec->dtrd_action) {
105 (*data)[rec->dtrd_format - 1] = result;
200 dtrace_recdesc_t *rec = &enabled->dtepd_rec[i]; local
202 if (DTRACEACT_ISPRINTFLIKE(rec
[all...]
/illumos-gate/usr/src/cmd/rm/
H A Drm.c71 static struct dlist *cur, *rec; variable in typeref:struct:
172 while (rm(*argv, rec = cur = &top) != 0)
221 while (rec != NULL && (rec->flags & DIR_CANTCLOSE) != 0)
222 rec = rec->down;
223 if (rec == NULL || rec == cur || rec->dp == NULL)
225 rec
[all...]
/illumos-gate/usr/src/cmd/mdb/intel/kmdb/
H A Dkvm_cpu_p4.c134 uint64_t rec = kmdb_dpi_msr_get_by_cpu(cpuid, local
137 kmt_p4_branch((rec & 0xffffffff), rec >> 32, verbose);
/illumos-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java433 printStack(StackValueRecord rec) argument
435 StackFrame[] frames = rec.getStackFrames();
/illumos-gate/usr/src/cmd/listen/
H A Dnstoa.c78 int rec = 0; /* Recursion level */ variable
489 rec = sbp = 0;
514 if (rec++ == MAXRLEVEL) {
516 level past %d on shell escape\n", rec);
/illumos-gate/usr/src/tools/lintdump/
H A Dlintdump.c185 union rec rec; local
193 if (fread(&rec, sizeof (rec), 1, fp) != 1)
196 line = rec.l;
460 union rec rec; local
466 if (fread(&rec, sizeof (rec), 1, fp) != 1)
469 if (rec
[all...]
H A Dlnstuff.h93 union rec { union
/illumos-gate/usr/src/uts/common/io/usb/usba/
H A Dusba_devdb.c138 usba_devdb_get_conf_rec(struct _buf *file, usba_configrec_t **rec) argument
285 *rec = cfgrec;
298 usba_devdb_free_rec(usba_configrec_t *rec) argument
300 if (rec->selection) {
301 kobj_free_string(rec->selection, strlen(rec->selection) + 1);
303 if (rec->serialno) {
304 kobj_free_string(rec->serialno, strlen(rec->serialno) + 1);
306 if (rec
[all...]
/illumos-gate/usr/src/lib/libadm/common/
H A Dputdev.c452 devtabent->comment = FALSE; /* data rec */
619 * int _putdevtabrec(stream, rec)
621 * struct devtabent *rec
624 * devtab structure <rec> to the current position of the standard I/O
629 * rec The structure containing the information to write
638 struct devtabent *rec) /* Record to write */
649 if (rec->comment) {
656 size = (strlen(rec->attrstr)*2)+1; /* Max rec size */
659 p = strcatesc(buf, rec
636 _putdevtabrec( FILE *stream, struct devtabent *rec) argument
[all...]
H A Dputdgrp.c434 ent->comment = FALSE; /* data rec */
483 * int _putdgrptabrec(stream, rec)
485 * struct dgrptabent *rec
488 * struct dgrptab structure <rec> to the current position of the
493 * rec The structure containing the information to write
502 struct dgrptabent *rec) /* Record to write */
514 if (rec->comment)
515 count = fputs(rec->dataspace, stream);
523 size = (int)strlen(rec->name) + 1; /* "name:" */
524 if ((mem = rec
500 _putdgrptabrec( FILE *stream, struct dgrptabent *rec) argument
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Deventlog_svc.c434 DWORD recno, logr_record_t *rec)
454 rec->Length1 = sizeof (logr_record_t);
455 rec->Reserved = LOGR_RECORD_SIGNATURE;
456 rec->RecordNumber = recno;
457 rec->TimeGenerated = le->le_timestamp.tv_sec;
458 rec->TimeWritten = le->le_timestamp.tv_sec;
459 logr_set_event_typeid(le->le_pri, &rec->EventType, &rec->EventID);
460 rec->NumStrings = 1;
461 rec
433 logr_set_logrecord(char *src_name, logr_entry_t *le, DWORD recno, logr_record_t *rec) argument
498 logr_record_t *rec; local
[all...]

Completed in 133 milliseconds

123