Searched defs:value (Results 151 - 175 of 1381) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dspi_flash.c38 * Private function sends 8-bit value to the device and returns the 8-bit
39 * value in response.
222 unsigned value; local
256 value = pSPI->SPI_RDR;
257 value = pSPI->SPI_SR;
259 value = GetFlashStatus() & 0xFC;
261 if (value != 0xB4 && value != 0xAC)
262 printf(" Bad SPI status: 0x%x\n", value);
264 if (value !
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Ddevicename.c183 * Set currdev to suit the value being supplied in (value)
186 efi_setcurrdev(struct env_var *ev, int flags, const void *value) argument
191 rv = efi_parsedev(&ncurr, value, NULL);
196 env_setenv(ev->ev_name, flags | EV_NOHOOK, value, NULL, NULL);
/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/lib/print/libpapi-lpd/common/
H A Dprinter.c36 contains(char *value, char **list) argument
40 if ((value == NULL) || (list == NULL))
44 if (strcasecmp(value, list[i]) == 0)
/illumos-gate/usr/src/lib/fm/libfmd_log/common/
H A Dfmd_filter.c104 char *value = argt->nvarg_value; local
114 /* check value match for matching nvpair */
115 if ((value == NULL) ||
116 (nvpair_value_match_regex(nvp, ai, value, value_regex, NULL) == 1))
117 return (1); /* name/value filter pass */
119 return (0); /* value filter failure */
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsn2princ.c62 char * value = NULL; local
66 "rdns", 0, 0, &value);
70 if (value == 0)
73 use_rdns = _krb5_conf_boolean(value);
74 profile_release_string(value);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dlucid_context.c115 rep.value = &lctx;
137 gss_buffer_t value)
148 kctx = value->value;
133 gss_krb5int_free_lucid_sec_context( OM_uint32 *minor_status, const gss_OID desired_mech, const gss_OID desired_object, gss_buffer_t value) argument
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dconfig.c75 char *value; member in struct:configlist
186 [gctx->nconfiglist].value),
195 &(configlist[nconfiglist].value),
241 if (((struct configlist *)gctx->configlist)[i].value)
242 sasl_FREE(((struct configlist *)gctx->configlist)[i].value);
258 return clist[opt].value;
270 return configlist[opt].value;
/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/lib/libslp/javalib/com/sun/slp/
H A DServiceLocationAttributeV1.java64 * Translates the 6 bit value to the corresponding radix 64
93 * Translates a radix 64 representation to the 64 bit value which
415 String value = (String)values.elementAt(i);
419 Object o = evaluate(value, charCode);
464 static Object evaluate(String value, String charCode) argument
473 o = Integer.valueOf(value);
479 if (value.equalsIgnoreCase(TRUE) ||
480 value.equalsIgnoreCase(FALSE)) {
481 o = Boolean.valueOf(value);
487 String val = (String)value;
[all...]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dinfotocap.c106 in to the new value being built.
145 prepend a message to the beginning of the original value and
151 *infotocap(char *value, int *err) argument
157 if (strchr(value, '%') == NULLPTR)
158 return (value);
162 savevalue = value;
163 while (*value)
164 if (*value != '%')
165 *newvalue++ = *value++;
166 else if (lookat(value, "
[all...]
/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/lib/libeti/form/common/
H A Dty_enum.c162 char * value = x; local
168 value = x;
172 value = (char *) 0;
174 if (! value)
177 (void) set_field_buffer(f, 0, value);
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_util.h79 int value; member in struct:zjni_field_mapping
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dpdevinfo_sun4u.c131 int *value; local
136 if ((value = (int *)get_prop_val(find_prop(node, "upa-portid")))
141 if ((value = (int *)get_prop_val(find_prop(node, "portid")))
146 return (*value);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dmntent.c70 int value = 0; local
76 value *= 10;
77 value += *cp - '0';
86 return (value);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Decvt.c56 ecvt(double value, int ndigit, int *decpt, int *sign) argument
58 return (cvt(value, ndigit, decpt, sign, 0));
62 fcvt(double value, int ndigit, int *decpt, int *sign) argument
64 return (cvt(value, ndigit, decpt, sign, 1));
68 cvt(double value, int ndigit, int *decpt, int *sign, int f_flag) argument
75 if (IsNANorINF(value)) {
76 if (IsINF(value)) /* value is an INF, return "inf" */
78 else /* value is a NaN, return "NaN" */
84 if ((*sign = (value < 0.
[all...]
/illumos-gate/usr/src/lib/libc/port/rt/
H A Dclock_timer.c141 timer_gettime(timer_t timerid, itimerspec_t *value) argument
143 return (__timer_gettime(timerid, value));
147 timer_settime(timer_t timerid, int flags, const itimerspec_t *value, argument
150 return (__timer_settime(timerid, flags, value, ovalue));
/illumos-gate/usr/src/lib/libipmp/common/
H A Dipmp_mpathd.c116 * value in `*typep', `*lenp', and `*valuep' respectively, before the current
125 void *value; local
135 value = malloc(*lenp);
136 if (value == NULL) {
138 * Even though we cannot allocate space for the value, we
142 value = alloca(*lenp);
143 (void) ipmp_read(fd, value, *lenp, endtp);
147 retval = ipmp_read(fd, value, *lenp, endtp);
149 free(value);
153 *valuep = value;
187 ipmp_writetlv(int fd, ipmp_infotype_t type, size_t len, void *value) argument
[all...]
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5_byteswap.h95 uint32_t value; local
99 : "=r" (value)
102 return (value);
192 uint32_t value; \
195 : "=r" (value) \
197 return (value); \
/illumos-gate/usr/src/common/mpi/
H A Dmplogic.c126 mp_err mpl_set_bit(mp_int *a, mp_size bitNum, mp_size value) argument
143 if (value)
174 is bit lsbNum. Returns a negative value if error occurs.
203 returns 1 if value is zero.
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_prop.c60 static int ndmpd_config_update(ndmpd_cfg_param_t *cfg, char *value);
106 char *value; local
110 if ((ndmp_get_prop(cfg->sc_name, &value)) == -1) {
122 if ((cfg->sc_flags & NDMP_CF_DEFINED) || value) {
123 if (ndmpd_config_update(cfg, value)) {
124 free(value);
128 free(value);
136 * Updates the specified config param with the given value.
140 ndmpd_config_update(ndmpd_cfg_param_t *cfg, char *value) argument
146 if (value) {
[all...]
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DStatistic.java58 * Get the value of this statistic.
63 * Get the value of this statistic as a Long.
68 * Get the value of this statistic as a Double.
73 * Get the value of this statistic as a UnsignedInt64.
120 * The value of the statistic.
122 private final Object value; field in class:AbstractStatistic
145 * @param value The value of this statistic.
147 protected AbstractStatistic(Object value) argument
149 this(value, nul
162 AbstractStatistic(Object value, Date start, Date end) argument
230 DoubleStatistic(Double value) argument
244 DoubleStatistic(Double value, Date start, Date end) argument
332 LongStatistic(Long value, Date start, Date end) argument
419 UnsignedInt64Statistic(UnsignedInt64 value, Date start, Date end) argument
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dirm.c60 int value; local
69 if (mdb_vread(&value, sizeof (value), addr) != sizeof (value)) {
74 return (value);
/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);

Completed in 139 milliseconds

1234567891011>>