Searched refs:value (Results 176 - 200 of 2564) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwrefresh.c56 int value; local
62 value = clearok(__m_screen->_newscr, TRUE);
64 value = wnoutrefresh(w);
66 if (value == OK)
67 value = doupdate();
69 return __m_return_code("wrefresh", value);
82 int wy, wx, ny, nx, dx, value; local
89 value = (w->_flags & W_IS_PAD) ? ERR : OK;
91 if (value == OK) {
176 return __m_return_code("wnoutrefresh", value);
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwrefresh.c60 int value; local
63 value = clearok(__m_screen->_newscr, TRUE);
65 value = wnoutrefresh(w);
67 if (value == OK)
68 value = doupdate();
70 return (value);
82 int wy, wx, ny, nx, dx, value; local
89 value = (w->_flags & W_IS_PAD) ? ERR : OK;
91 if (value == OK) {
182 return (value);
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/pkgparam/
H A Dpkgparam.c78 char *value, *pkginst; local
155 value = pkgparam(pkginst, param);
156 if (value == NULL) {
163 * some other error besides no value for this
175 print_entry(param, value);
185 print_entry(char *param, char *value) argument
189 while (*value) {
190 if (*value == '\'') {
192 value++;
194 (void) putchar(*value
[all...]
/illumos-gate/usr/src/uts/intel/ia32/krtld/
H A Ddoreloc.c109 * Write a single relocated value to its reference location.
110 * We assume we wish to add the relocation amount, value, to the
111 * value of the address already present at the offset.
158 * S the value of the symbol
187 do_reloc_krtld(uchar_t rtype, uchar_t *off, Xword *value, const char *sym, argument
192 do_reloc_ld(Rel_desc *rdesc, uchar_t *off, Xword *value,
197 do_reloc_rtld(uchar_t rtype, uchar_t *off, Xword *value, const char *sym,
212 *((uchar_t *)off) += (uchar_t)(*value);
218 *((Half *)off) += (Half)(*value);
226 v += *value;
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/xml/
H A Dxml_convert.c89 * A function to validate and set the XML attribute value in
95 * @param value
96 * the value of the XML attribute
98 * @return 0 if the given value was valid and set
101 int (*validate_set)(devconfig_t *device, char *name, char *value);
104 * A function to get the XML attribute value in the given
110 * @param value
111 * the value of the XML attribute
113 * @return 0 if the given value was retrieved
116 int (*get_as_string)(devconfig_t *device, char *name, char **value);
870 char *value; local
1056 char *value = (char *) local
1326 strtobool( char *str, boolean_t *value) argument
1434 validate_set_size( devconfig_t *volume, char *attr, char *value) argument
1467 validate_set_size_in_blocks( devconfig_t *slice, char *attr, char *value) argument
1667 validate_set_slice_start_block( devconfig_t *slice, char *attr, char *value) argument
1724 validate_set_stripe_interlace( devconfig_t *stripe, char *attr, char *value) argument
1758 validate_set_stripe_mincomp( devconfig_t *stripe, char *attr, char *value) argument
1793 validate_set_stripe_maxcomp( devconfig_t *stripe, char *attr, char *value) argument
1828 validate_set_volume_usehsp( devconfig_t *volume, char *attr, char *value) argument
1863 validate_set_mirror_nsubmirrors( devconfig_t *mirror, char *attr, char *value) argument
1898 validate_set_mirror_read( devconfig_t *mirror, char *attr, char *value) argument
1941 validate_set_mirror_write( devconfig_t *mirror, char *attr, char *value) argument
1980 validate_set_mirror_passnum( devconfig_t *mirror, char *attr, char *value) argument
2015 validate_set_volume_redundancy( devconfig_t *volume, char *attr, char *value) argument
2050 validate_set_volume_datapaths( devconfig_t *volume, char *attr, char *value) argument
2096 get_as_string_name( devconfig_t *device, char *attr, char **value) argument
2130 get_as_string_mirror_passnum( devconfig_t *mirror, char *attr, char **value) argument
2162 get_as_string_mirror_read( devconfig_t *mirror, char *attr, char **value) argument
2197 get_as_string_mirror_write( devconfig_t *mirror, char *attr, char **value) argument
2232 get_as_string_size_in_blocks( devconfig_t *device, char *attr, char **value) argument
2264 get_as_string_slice_start_block( devconfig_t *slice, char *attr, char **value) argument
2296 get_as_string_stripe_interlace( devconfig_t *stripe, char *attr, char **value) argument
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c132 char *value; local
144 if ((retval = profile_node_iterator(&state, 0, 0, &value)))
146 if (value)
147 add_to_list(&values, value);
164 * This function only gets the first value from the file; it is a
172 char *value; local
179 if ((retval = profile_node_iterator(&state, 0, 0, &value)))
182 if (value)
183 *ret_value = value;
197 const char *value; local
228 const char *value; local
309 const char *value; local
420 char *name, *value; local
[all...]
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_reass.c72 * Get the value in the content-length field and add it to the header length
79 int value = 0; local
107 value = (value * base) + digits;
116 value += hlen;
118 return (value);
130 int value; local
155 value = sip_get_msglen(msg, *msglen);
156 if (value == *msglen) {
174 value
[all...]
/illumos-gate/usr/src/cmd/gss/gsscred/
H A Dgsscred_utils.c99 nameOut->value = NULL;
106 oidStr.value = (void *)nameOidStr;
118 aName.value = (void*)name;
171 if ((outNameHdr->value = (void*)malloc(outNameHdr->length)) == NULL) {
177 buf = (unsigned char *) outNameHdr->value;
178 (void) memset(outNameHdr->value, '\0', outNameHdr->length);
195 free(outNameHdr->value);
223 out = (char *)dataOut->value;
224 in = (char *)dataIn->value;
233 dataOut->length = out - (char *)dataOut->value;
[all...]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Depoll.c28 #error value of EPOLLIN does not match value of POLLIN
32 #error value of EPOLLPRI does not match value of POLLPRI
36 #error value of EPOLLOUT does not match value of POLLOUT
40 #error value of EPOLLRDNORM does not match value of POLLRDNORM
44 #error value of EPOLLRDBAND does not match value o
[all...]
/illumos-gate/usr/src/uts/common/io/nxge/npi/
H A Dnpi_txdma.c132 uint64_t value, offset; local
151 TXDMA_REG_READ64(handle, tdc_dmc_offset[i], tdc, &value);
157 value));
183 uint64_t value; local
192 NXGE_REG_RD64(handle, (uint32_t)tx_fzc_offset[i], &value);
194 NXGE_REG_RD64(handle, tx_fzc_offset[i], &value);
199 tx_fzc_name[i], value));
210 uint64_t value; local
227 value = 0;
229 TXDMA_REG_WRITE64(handle, tdc_dmc_offset[i], tdc, value);
1172 uint64_t value; local
[all...]
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_kstats.c547 statsp->opackets = tdc_kstatsp->opackets.value.ull;
548 statsp->obytes = tdc_kstatsp->obytes.value.ull;
549 statsp->oerrors = tdc_kstatsp->oerrors.value.ull;
550 statsp->mbox_err = tdc_kstatsp->mbox_err.value.ul;
551 statsp->pkt_size_err = tdc_kstatsp->pkt_size_err.value.ul;
552 statsp->tx_ring_oflow = tdc_kstatsp->tx_ring_oflow.value.ul;
554 tdc_kstatsp->pref_buf_ecc_err.value.ul;
555 statsp->nack_pref = tdc_kstatsp->nack_pref.value.ul;
556 statsp->nack_pkt_rd = tdc_kstatsp->nack_pkt_rd.value.ul;
557 statsp->conf_part_err = tdc_kstatsp->conf_part_err.value
2275 nxge_m_stat(void *arg, uint_t stat, uint64_t *value) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dunique.c73 uint64_t value = unique_insert(0); local
74 unique_remove(value);
75 return (value);
79 unique_insert(uint64_t value) argument
84 un->un_value = value;
103 unique_remove(uint64_t value) argument
108 un_tofind.un_value = value;
/illumos-gate/usr/src/uts/i86pc/ml/
H A Dkdi_subr.s80 kdi_setdr0(ulong_t value)
85 kdi_setdr1(ulong_t value)
90 kdi_setdr2(ulong_t value)
95 kdi_setdr3(ulong_t value)
100 kdi_setdr4(ulong_t value)
105 kdi_setdr6(ulong_t value)
110 kdi_setdr7(ulong_t value)
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge_kstats.c222 knp->value.ui64 = bstp->a[ksip->index];
225 (knp++)->value.ui64 = (uint64_t)(pstats->ifHCOutOctets);
226 (knp++)->value.ui64 = (uint64_t)(pstats->etherStatsCollisions);
227 (knp++)->value.ui64 = (uint64_t)(pstats->outXonSent);
228 (knp++)->value.ui64 = (uint64_t)(pstats->outXoffSent);
229 (knp++)->value.ui64 =
231 (knp++)->value.ui64 =
233 (knp++)->value.ui64 =
235 (knp++)->value.ui64 =
237 (knp++)->value
[all...]
/illumos-gate/usr/src/lib/nsswitch/user/common/
H A Dgetprinter.c46 char *value = NULL; local
49 if ((value = strpbrk(entry, "\t ")) != NULL) {
50 *value = NULL; value++;
52 while ((*value != NULL) && (isspace(*value) != 0))
53 value++;
55 if ((key = strpbrk(value, "\n\t ")) != NULL)
60 if ((value == NULL) || (*value
[all...]
/illumos-gate/usr/src/cmd/tip/
H A Dremote.c104 boolean(value(RAISE)) = 1;
106 boolean(value(ECHOCHECK)) = 1;
108 boolean(value(BEAUTIFY)) = 1;
110 boolean(value(BEAUTIFY)) = 0;
112 boolean(value(SCRIPT)) = 1;
114 boolean(value(TABEXPAND)) = 1;
116 boolean(value(VERBOSE)) = 1;
118 boolean(value(VERBOSE)) = 0;
120 boolean(value(TAND)) = 1;
122 boolean(value(TAN
[all...]
H A Dtipout.c56 if (boolean(value(SCRIPT)) && fscript != NULL)
59 boolean(value(SCRIPT)) = FALSE;
66 boolean(value(SCRIPT)) = TRUE;
77 if (boolean(value(SCRIPT)) && fscript != NULL)
86 boolean(value(BEAUTIFY)) = !boolean(value(BEAUTIFY));
154 if (boolean(value(SCRIPT)) && fscript != NULL) {
155 if (!boolean(value(BEAUTIFY))) {
160 any(*cp, value(EXCEPTIONS)))
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAggregationRecord.java35 * A single key-value pair in a DTrace aggregation.
50 new String[] {"tuple", "value", "ordinal"})
77 private AggregationValue value; field in class:AggregationRecord
83 * Creates an aggregation record with the given key and value.
97 value = recordValue;
102 * Creates an aggregation record with the given key, value, and
106 * Tuple#EMPTY}) to indicate that this record's value belongs to an
109 * @param recordValue aggregated value associated with the given
113 * @throws NullPointerException if the given key or value is
121 value
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/scsi_vhci/
H A Dscsi_vhci.c148 struct mdi_client value; local
155 if (mdb_vread(&value, sizeof (struct mdi_client), addr)
161 dump_string((uintptr_t)value.ct_guid, "GUID (ct_guid)");
162 dump_string((uintptr_t)value.ct_drvname, "Driver Name (ct_drvname)");
163 dump_state_str("Load Balance (ct_lb)", value.ct_lb, client_lb_str);
166 value.ct_hnext);
168 value.ct_hprev);
169 mdb_printf("ct_dip: %28l#r::print struct dev_info\n", value.ct_dip);
170 mdb_printf("ct_vhci: %27l#r::print struct mdi_vhci\n", value.ct_vhci);
171 mdb_printf("ct_cprivate: %23l#r\n", value
537 scsi_vhci_lun_t value; local
[all...]
/illumos-gate/usr/src/cmd/mdb/sun4u/modules/lw8/sgenv/
H A Dsgenv.c156 env_sensor_t value; local
165 rv = mdb_vread(&value, sizeof (env_sensor_t), addr);
173 mdb_printf("sd_id: %29ll#x\n", value.sd_id);
174 mdb_printf("sd_value: %26lld\n", value.sd_value);
175 mdb_printf("sd_lo: %29lld\n", value.sd_lo);
176 mdb_printf("sd_hi: %29lld\n", value.sd_hi);
177 mdb_printf("sd_lo_warn: %24lld\n", value.sd_lo_warn);
178 mdb_printf("sd_hi_warn: %24lld\n", value.sd_hi_warn);
179 mdb_printf("sd_status: %25ll#x\n", value.sd_status);
/illumos-gate/usr/src/lib/libadm/common/
H A Dckrange.c78 long value; local
80 value = strtol(input, &ptr, base);
81 if ((*ptr != '\0') || (value < lower) || (value > upper))
91 long value; local
140 value = strtol(input, &ptr, base);
142 valid = ((value >= lower) && (value <= upper));
149 *rngval = value;
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A Dfpsetmask.s49 st %fsr, [%sp+ARGPUSH] ! get fsr value
51 and %o1, %o4, %o1 ! generate new fsr value
54 st %o1, [%sp+ARGPUSH] ! move new fsr value to memory
55 ld [%sp+ARGPUSH], %fsr ! load fsr with new value
57 srl %o0, 23, %o0 ! return old trap enable value
H A Dfpsetrnd.s40 st %fsr, [%sp+ARGPUSH] ! get fsr value
42 and %o1, %o4, %o1 ! generate new fsr value
45 st %o1, [%sp+ARGPUSH] ! move new fsr value to memory
46 ld [%sp+ARGPUSH], %fsr ! load fsr with new value
47 srl %o0, 30, %o0 ! return old round control value
H A Dfpsetsticky.s40 st %fsr, [%sp+ARGPUSH] ! get fsr value
42 and %o1, %o4, %o1 ! generate new fsr value
45 st %o1, [%sp+ARGPUSH] ! move new fsr value to memory
46 ld [%sp+ARGPUSH], %fsr ! load fsr with new value
48 srl %o0, 5, %o0 ! return old accrued exception value
/illumos-gate/usr/src/lib/libc/sparcv9/fp/
H A Dfpsetmask.s49 st %fsr, [%sp+STACK_BIAS+ARGPUSH] ! get fsr value
51 and %o1, %o4, %o1 ! generate new fsr value
54 st %o1, [%sp+STACK_BIAS+ARGPUSH] ! move new fsr value to memory
55 ld [%sp+STACK_BIAS+ARGPUSH], %fsr ! load fsr with new value
57 srl %o0, 23, %o0 ! return old trap enable value

Completed in 209 milliseconds

1234567891011>>