Searched refs:rec (Results 51 - 75 of 132) sorted by relevance

123456

/opensolaris-onvv-gate/usr/src/cmd/sgs/pvs/common/
H A Dpvs.c223 match_rec_t *rec; local
226 rec = alist_append(&match_list, NULL, sizeof (match_rec_t),
228 if (rec == NULL) {
250 rec->opt_type = MATCH_OPT_NAME;
251 rec->value.name.version = lstr;
266 rec->opt_type = MATCH_OPT_NEED_VER;
267 rec->value.name.needobj = lstr;
268 rec->value.name.version = s1 + 1;
272 WS_SKIP_LIMIT(rec->value.name.version, s2);
273 WS_RSKIP_LIMIT(rec
344 match_rec_t *rec; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/krb5/kadm5/
H A Dkadm_rpc.h28 kadm5_principal_ent_rec rec; member in struct:cprinc_arg
36 kadm5_principal_ent_rec rec; member in struct:cprinc3_arg
58 kadm5_principal_ent_rec rec; member in struct:mprinc_arg
161 kadm5_principal_ent_rec rec; member in struct:gprinc_ret
167 kadm5_policy_ent_rec rec; member in struct:cpol_arg
180 kadm5_policy_ent_rec rec; member in struct:mpol_arg
194 kadm5_policy_ent_rec rec; member in struct:gpol_ret
/opensolaris-onvv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SSrvReg.java147 ServiceStore.ServiceRecord rec =
150 if (rec != null) {
154 Vector recScopes = (Vector)rec.getScopes().clone();
H A DServerDATable.java232 DARecord rec = (DARecord)daRecs.elementAt(i);
233 Vector daAddresses = rec.daAddresses;
436 ServiceStore.ServiceRecord rec =
442 if (rec == null) {
462 sreg.attrList = (Vector)rec.getAttrList().clone();
463 sreg.URLSignature = rec.getURLSignature();
464 sreg.attrSignature = rec.getAttrSignature();
H A DSunDATable.java151 DARecord rec = (DARecord)equivClasses.elementAt(i);
152 Vector daScopes = (Vector)rec.scopes.clone();
215 DARecord rec = (DARecord)cache.elementAt(i);
216 Vector daAddresses = rec.daAddresses;
H A DServiceStoreFactory.java434 ServiceStore.ServiceRecord rec =
436 ServiceURL url = rec.getServiceURL();
438 Vector attrs = (Vector)rec.getAttrList().clone();
439 Locale locale = rec.getLocale();
440 Vector scopes = rec.getScopes();
/opensolaris-onvv-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));
/opensolaris-onvv-gate/usr/src/tools/lintdump/
H A Dlnstuff.h93 union rec { union
/opensolaris-onvv-gate/usr/src/cmd/plockstat/
H A Dplockstat.c541 const dtrace_recdesc_t *rec; local
554 rec = aggsdata[0]->dtada_desc->dtagd_rec;
558 lock = (uintptr_t)*(uint64_t *)(data + rec[1].dtrd_offset);
560 stack = (uint64_t *)(data + rec[2].dtrd_offset);
699 chewrec(const dtrace_probedata_t *data, const dtrace_recdesc_t *rec, void *arg) argument
707 * A NULL rec indicates that we've processed the last record.
709 if (rec == NULL)
712 buf = data->dtpda_data - rec->dtrd_offset;
714 switch (rec->dtrd_action) {
716 (void) printf("\n%s\n\n", (char *)buf + rec
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ntfsprogs/
H A Dntfsundelete.c763 * @rec: the mft record of the possible parent
765 * Check that @rec is the parent of the file represented by @name.
766 * If @rec is a directory, but it is created after @name, then we
767 * can't determine whether @rec is really @name's parent.
769 * Return: @rec's filename, either same name space as @name or lowest space.
772 static FILE_NAME_ATTR* verify_parent(struct filename* name, MFT_RECORD* rec) argument
779 if (!name || !rec)
782 if (!(rec->flags & MFT_RECORD_IS_DIRECTORY)) {
786 ctx = ntfs_attr_get_search_ctx(NULL, rec);
832 MFT_RECORD* rec; local
900 ATTR_RECORD *rec; local
987 ATTR_RECORD *rec; local
[all...]
H A Dutils.c419 ATTR_RECORD *rec; local
432 rec = find_attribute(type, ctx);
434 if (rec)
438 return rec;
460 ATTR_RECORD *rec; local
488 while ((rec = find_attribute(AT_FILE_NAME, ctx))) {
490 attr = (FILE_NAME_ATTR *) ((char *) rec + le16_to_cpu(rec->u.res.value_offset));
782 ATTR_RECORD *rec; local
808 rec
[all...]
H A Dntfscluster.c288 ATTR_RECORD *rec; local
303 while ((rec = find_attribute(AT_UNUSED, a_ctx))) {
305 if (!rec->non_resident)
308 rl = ntfs_mapping_pairs_decompress(vol, rec, NULL);
391 ATTR_RECORD *rec; local
401 while ((rec = find_attribute(AT_UNUSED, ctx))) {
402 ntfs_log_info(" 0x%02x - ", rec->type);
403 if (rec->non_resident) {
405 runs = ntfs_mapping_pairs_decompress(vol, rec, NULL);
/opensolaris-onvv-gate/usr/src/cmd/sgs/elfdump/common/
H A Dmain.c239 * binary form, and store it in rec:
247 * On success, *rec is filled in with a MATCH_OPT_NDX or MATCH_OPT_RANGE
249 * of *rec are undefined, and (0) is returned.
252 process_index_opt(const char *str, match_rec_t *rec) argument
258 rec->value.ndx.start = strtol(str, &endptr, 10);
260 if ((str == endptr) || (rec->value.ndx.start < 0))
266 rec->opt_type = MATCH_OPT_NDX;
269 rec->opt_type = MATCH_OPT_RANGE;
272 rec->value.ndx.end = -1; /* Indicates "to end" */
274 rec
520 match_rec_t *rec; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libdtrace/common/
H A Ddt_map.c128 dtrace_recdesc_t *rec = &enabled->dtepd_rec[i]; local
130 if (!DTRACEACT_ISPRINTFLIKE(rec->dtrd_action))
133 if (rec->dtrd_format == 0)
136 if (rec->dtrd_format <= dtp->dt_maxformat &&
137 dtp->dt_formats[rec->dtrd_format - 1] != NULL)
141 fmt.dtfd_format = rec->dtrd_format;
161 while (rec->dtrd_format > (maxformat = dtp->dt_maxformat)) {
181 dtp->dt_formats[rec->dtrd_format - 1] =
182 rec->dtrd_action == DTRACEACT_PRINTA ?
188 if (dtp->dt_formats[rec
[all...]
H A Ddt_aggregate.c334 dtrace_recdesc_t *rec = agg->dtagd_rec; local
345 rec->dtrd_offset));
359 dtrace_recdesc_t *rec; local
428 rec = &agg->dtagd_rec[j];
429 roffs = rec->dtrd_offset;
431 switch (rec->dtrd_action) {
458 for (i = 0; i < rec->dtrd_size; i++)
475 rec = &agg->dtagd_rec[j];
476 roffs = rec->dtrd_offset;
478 for (i = 0; i < rec
1064 dtrace_recdesc_t *rec; local
1548 dtrace_recdesc_t *rec; local
1815 dtrace_recdesc_t *rec; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
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...]
H A DPrintfRecord.java128 addUnformattedElement(ScalarRecord rec) argument
130 records.add(rec);
/opensolaris-onvv-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);
/opensolaris-onvv-gate/usr/src/uts/common/xen/dtrace/
H A Dxdt.c693 xdt_process_rec(uint_t cpuid, struct t_rec *rec) argument
702 ASSERT(rec != NULL);
716 rec->event != TRC_SCHED_SWITCH &&
717 rec->event != TRC_LOST_RECORDS)
720 if (rec->cycles_included) {
721 data = rec->u.cycles.extra_u32;
722 tsc = (((uint64_t)rec->u.cycles.cycles_hi) << 32)
723 | rec->u.cycles.cycles_lo;
725 data = rec->u.nocycles.extra_u32;
731 switch (rec
1747 struct t_rec *rec; local
1794 struct t_rec *rec; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/awk/
H A Dlib.c39 int donefld; /* 1 = implies rec broken into fields */
415 refldbld(uchar *rec, uchar *fs) /* build fields from reg expr in FS */ argument
427 if (*rec == '\0')
430 len = strlen((char *)rec) + 1;
435 dprintf(("into refldbld, rec = <%s>, pat = <%s>\n", rec, fs));
444 if (nematch(pfa, rec)) {
447 (void) strncpy((char *)fr, (char *)rec, patbeg-rec);
448 fr += patbeg - rec
[all...]
/opensolaris-onvv-gate/usr/src/lib/libadm/common/
H A Dputdgrp.c422 ent->comment = FALSE; /* data rec */
471 * int _putdgrptabrec(stream, rec)
473 * struct dgrptabent *rec
476 * struct dgrptab structure <rec> to the current position of the
481 * rec The structure containing the information to write
490 struct dgrptabent *rec) /* Record to write */
502 if (rec->comment) count = fputs(rec->dataspace, stream);
510 size = (int)strlen(rec->name) + 1; /* "name:" */
511 if ((mem = rec
488 _putdgrptabrec( FILE *stream, struct dgrptabent *rec) argument
[all...]
/opensolaris-onvv-gate/usr/src/uts/i86pc/os/
H A Dtrap.c2041 trap_trace_rec_t *rec; local
2084 rec = (trap_trace_rec_t *)current;
2086 if (rec->ttr_stamp == 0)
2089 printf(fmt1, i, (uintptr_t)rec, rec->ttr_stamp);
2091 switch (rec->ttr_marker) {
2097 sys = &sysent32[rec->ttr_sysnum];
2098 switch (rec->ttr_marker) {
2100 sys = &sysent[rec->ttr_sysnum];
2103 sys = &sysent[rec
[all...]
/opensolaris-onvv-gate/usr/src/cmd/lockstat/
H A Dlockstat.c843 lsrec_fill(lsrec_t *lsrec, const dtrace_recdesc_t *rec, int nrecs, caddr_t data) argument
851 if (rec->dtrd_size != sizeof (uint64_t))
855 lsrec->ls_event = (uint32_t)*((uint64_t *)(data + rec->dtrd_offset));
856 rec++;
858 if (rec->dtrd_size != sizeof (uintptr_t))
862 lsrec->ls_lock = *((uintptr_t *)(data + rec->dtrd_offset));
863 rec++;
865 if (rec->dtrd_size != sizeof (uintptr_t))
869 lsrec->ls_caller = *((uintptr_t *)(data + rec->dtrd_offset));
870 rec
901 const dtrace_recdesc_t *rec; local
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/io/audio/drv/audiosolo/
H A Daudiosolo.c194 solo_engine_t rec; member in struct:solo_dev
388 uint32_t mon, rec; local
415 rec = dev->ctrls[CTL_RECSRC].val;
422 solo_setmixer(dev, 0x68, rec & (1 << INPUT_MIC) ? v : 0);
426 solo_setmixer(dev, 0x6e, rec & (1 << INPUT_LINE) ? v : 0);
430 solo_setmixer(dev, 0x6a, rec & (1 << INPUT_CD) ? v : 0);
434 solo_setmixer(dev, 0x6c, rec & (1 << INPUT_AUX) ? v : 0);
439 solo_setmixer(dev, 0x6f, rec & (1 << INPUT_MONO) ? v : 0);
1107 if (dev->rec.paddr != 0)
1108 (void) ddi_dma_unbind_handle(dev->rec
[all...]

Completed in 248 milliseconds

123456