Searched refs:value (Results 51 - 75 of 2564) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dtgetstr.c63 char *value = (char *) -1; local
67 value = cur_term->_str[i];
69 *area += strlen(strcpy(*area, value));
74 return (value);
H A Dclrbot.c58 int x, value; local
61 value = __m_cc_erase(stdscr,
64 return ((value == 0) ? OK : ERR);
H A Dclreol.c58 int x, value; local
61 value = __m_cc_erase(stdscr,
64 return ((value == 0) ? OK : ERR);
H A Dtgetflag.c56 int value = -1; local
64 value = cur_term->_bool[(int)(p - boolcodes)];
68 return (value);
H A Dtgetnum.c56 int value = -2; local
64 value = cur_term->_num[(int)(p - numcodes)];
69 return (value);
H A Dtigetfla.c56 int value = -1; local
64 value = cur_term->_bool[(int)(p - boolnames)];
69 return (value);
H A Dtigetnum.c56 int value = -2; local
64 value = cur_term->_num[(int)(p - numnames)];
69 return (value);
H A Dtouched.c68 int y, value; local
71 if ((value = (0 <= w->_last[y])) != 0)
74 return (value);
H A Dbaudrate.c53 int value; member in struct:__anon4221
84 speed_t value; local
86 value = cfgetospeed(PTERMIOS(_prog));
89 if (speeds[i].speed == value)
92 return (speeds[i].value);
/illumos-gate/usr/src/tools/protocmp/
H A Dstdusers.c90 return (list->value);
97 stdfindbyvalue(int value, const struct stdlist *list) argument
100 if (value == list->value)
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Drel_buffer.c53 if (buffer->value) {
54 free(buffer->value);
56 buffer->value = NULL;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtgetflag.c52 int value = -1; local
60 value = cur_term->_bool[(int)(p - __m_boolcodes)];
65 return __m_return_int("tgetflag", value);
H A Dtgetnum.c52 int value = -2; local
60 value = cur_term->_num[(int)(p - __m_numcodes)];
65 return __m_return_int("tgetnum", value);
H A Dtigetfla.c52 int value = -1; local
60 value = cur_term->_bool[(int)(p - __m_boolnames)];
65 return __m_return_int("tigetflag", value);
H A Dtigetnum.c52 int value = -2; local
60 value = cur_term->_num[(int)(p - __m_numnames)];
65 return __m_return_int("tigetnum", value);
H A Dtigetstr.c52 char *value = (char *) -1; local
60 value = cur_term->_str[(int)(p - __m_strnames)];
65 return __m_return_pointer("tigetstr", value);
H A Dbaudrate.c48 int value; member in struct:__anon4208
79 speed_t value; local
85 value = cfgetospeed(&cur_term->_prog);
88 if (speeds[i].speed == value)
91 return __m_return_int("baudrate", speeds[i].value);
/illumos-gate/usr/src/uts/common/gssapi/
H A Dgss_release_buffer.c47 if ((buffer->length) && (buffer->value)) {
48 FREE(buffer->value, buffer->length);
50 buffer->value = NULL;
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_common.kshlib34 # Check if the user property is identical to the expected value.
46 typeset value=$(zfs get -H -o value $prop $dtst)
49 if [[ "$expect_value" == "$value" ]]; then
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DValue.java30 * The <code>Value</code> class represents a pools value.
38 * @param pointer A pointer to a C value.
47 * @param name The name of the value.
49 * allocating the value.
60 * @param name The name of the value.
61 * @param value The value of the value.
63 * allocating the value.
65 public Value(String name, long value) throw argument
79 Value(String name, long value, boolean s) argument
92 Value(String name, String value) argument
105 Value(String name, boolean value) argument
118 Value(String name, double value) argument
200 setValue(long value) argument
211 setValue(long value, boolean s) argument
224 setValue(String value) argument
236 setValue(boolean value) argument
249 setValue(double value) argument
[all...]
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_status_tbl.c49 if (key->value == row->value)
51 if (key->value < row->value)
57 * Translate an ntstatus value to a meaningful text string. If there isn't
59 * status value is returned. This uses a static buffer so there is a
61 * while but it should be harmless and really remote since the value will
71 key.value = ntstatus;
/illumos-gate/usr/src/uts/sparc/zfs/
H A Dspa_boot.c41 char *value; local
47 value = kmem_zalloc(proplen, KM_SLEEP);
48 if (BOP_GETPROP(bootops, propname, value) == -1) {
49 kmem_free(value, proplen);
53 return (value);
/illumos-gate/usr/src/lib/libwrap/
H A Doptions.c91 static void setenv_option(); /* execute "setenv name value" */
93 static void severity_option(); /* execute "severity value" */
144 char *value; local
154 * Separate the option into name and value parts. For backwards
155 * compatibility we ignore exactly one '=' between name and value.
158 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
159 if (*value != '=') {
160 *value++ = 0;
161 value += strspn(value, whitespac
455 int value; member in struct:syslog_names
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dmallopt.c36 mallopt(int cmd, int value) argument
43 if (value < 0)
45 __mallinfo.mxfast = value;
49 if (value <= 0)
51 __mallinfo.nlblks = value;
55 if (value <= 0)
58 __mallinfo.grain = roundup(value, ALIGNSIZ);
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_item.cc56 if ((value = new char[len]) == NULL)
59 (void) memcpy(value, str, len);
67 if ((value = new char[len]) == NULL)
71 (void) memcpy(value, model->value, len);
80 putchar(value[i]);
89 (!strncasecmp(value, other->value, len)));
92 (!memcmp(value, other->value, le
[all...]

Completed in 135 milliseconds

1234567891011>>