Searched defs:value (Results 101 - 125 of 1381) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_parse.c47 int value, int min, int max)
49 if (value < min || value > max) {
50 logit("attempted to set value of %s for %s to %d, "
52 facility, cachename, value, min, max);
57 if ((addr != NULL) && (*addr != value)) {
61 facility, cachename, value);
62 *addr = value;
71 cachemgr_set_dl(admin_t *ptr, int value) argument
77 "Debug level", "cachemgr", value,
46 cachemgr_set_integer(int *addr, char *facility, char *cachename, int value, int min, int max) argument
81 cachemgr_set_ttl(ldap_stat_t *cache, char *name, int value) argument
[all...]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_set.c39 void *value; member in struct:_g_set_elt
65 int g_set_entry_add(g_set_elt *s, void *key, void *value) argument
73 first->value = value;
98 int g_set_entry_get(g_set_elt *s, void *key, void **value) argument
104 *value = p->value;
110 *value = NULL;
/illumos-gate/usr/src/tools/cscope-fast/
H A Dmouse.h44 char *value; member in struct:__anon4459
48 NONE, /* must be first value */
/illumos-gate/usr/src/tools/ctf/stabs/common/
H A Dfth_enum.c64 fth_enum_cb(const char *name, int value, void *arg) argument
66 (void) fprintf(out, "here ,\" %s\" %x\n", name, value);
/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_print.c205 long value; local
221 * the same value if there is no operator.
232 value = arg->n_int;
234 if ((value == 0) && strcmp(operator, "/") == 0)
239 (void) printf("%s %s %ldUL", name, operator, value);
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_lmr_util.c105 int32_t value = 0; local
112 value |= IB_ACCESS_LOCAL_WRITE;
115 value |= IB_ACCESS_REMOTE_READ;
118 value |= IB_ACCESS_REMOTE_WRITE;
121 value |= IBT_MR_DISABLE_RO;
123 return (value);
H A Ddapl_rmr_util.c105 int32_t value = 0; local
108 value |= IB_BIND_ACCESS_REMOTE_READ;
111 value |= IB_BIND_ACCESS_REMOTE_WRITE;
113 return (value);
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_capabilities.c68 * make sure the value we return is a whole multiple of
93 scsi_ifsetcap(struct scsi_address *ap, char *cap, int value, int whom) argument
98 rval = (*A_TO_TRAN(ap)->tran_setcap)(ap, cap, value, whom);
107 value;
/illumos-gate/usr/src/uts/common/ipp/ipgpc/
H A Dba_table.c75 * ba_retrieve(bataid, value, fid_table)
77 * searches for all filters matching value in bataid->table
79 * to value and then looking value up in bataid->table->masked_values.
84 ba_retrieve(ba_table_id_t *bataid, uint8_t value, ht_match_t *fid_table) argument
93 /* special case, if value == 0, no need to apply masks */
94 if (value == 0) {
95 /* masked value will always be 0 for this case */
105 /* apply each mask to the value and do the look up in the ba table */
107 masked_value = (uint8_t)(p->id) & value;
131 ba_remove(ba_table_id_t *bataid, int filter_id, uint8_t value, uint8_t mask) argument
[all...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dstack.c97 * get value on top of stack
108 * push value on to stack
112 stackpush(register STACK stack, void* value) argument
133 stack->position.block->stack[stack->position.index] = value;
138 * pop value off stack
/illumos-gate/usr/src/uts/intel/promif/
H A Dprom_prop.c44 prom_getprop(pnode_t nodeid, caddr_t name, caddr_t value) argument
46 return (promif_getprop(nodeid, name, value));
73 prom_bounded_getprop(pnode_t nodeid, caddr_t name, caddr_t value, int len) argument
/illumos-gate/usr/src/uts/intel/asm/
H A Dcpu.h131 __set_ds(selector_t value) argument
136 : "r" (value));
140 __set_es(selector_t value) argument
145 : "r" (value));
149 __set_fs(selector_t value) argument
154 : "r" (value));
158 __set_gs(selector_t value) argument
163 : "r" (value));
H A Dsunddi.h45 uint8_t value; local
48 "inb (%1)" /* value in %al */
49 : "=a" (value)
51 return (value);
58 uint16_t value; local
61 "inw (%1)" /* value in %ax */
62 : "=a" (value)
64 return (value);
71 uint32_t value; local
74 "inl (%1)" /* value i
81 outb(int port, uint8_t value) argument
92 outw(int port, uint16_t value) argument
103 outl(int port, uint32_t value) argument
[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/lp/lib/filters/
H A Dregex.c48 char * value
51 match (re, value)
53 register char * value;
66 ret = advance(value, re);
81 char * value,
85 replace (pp, result, value)
88 char * value;
122 SCPY (value);
78 replace( char ** pp, char * result, char * value, int nbra ) argument
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_xattr.c82 boolean_t value = B_FALSE; local
115 if (nvpair_value_boolean_value(pair, &value)) {
149 xoap->xoa_readonly = value;
154 xoap->xoa_hidden = value;
159 xoap->xoa_system = value;
164 xoap->xoa_archive = value;
175 xoap->xoa_reparse = value;
180 xoap->xoa_offline = value;
185 xoap->xoa_sparse = value;
/illumos-gate/usr/src/cmd/make/bin/
H A Dmacro.cc56 setvar_append(register Name name, register Name value) argument
69 macro_apx->body.macro_appendix.value = macro->body.macro.value;
81 if (value != NULL) {
86 if (value != NULL) {
87 APPEND_NAME(value,
89 (int) value->hash.length);
91 value = GETNAME(destination.buffer.start, FIND_LENGTH);
95 macro_apx->body.macro_appendix.value_to_append = value;
109 * envvar A list of environment vars with $ in value
119 String_rec value; local
[all...]
/illumos-gate/usr/src/lib/print/libprint/common/
H A Dns_cmn_kvp.c46 * kvp_create(const char *key, const void *value)
49 * - key for key/value pair
50 * const void *value
51 * - value for key/value pair
53 * ns_kvp_t * (return value)
54 * - pointer to structure containing the key/value pair
58 ns_kvp_create(const char *key, const char *value) argument
64 kvp->value = (char *)value;
134 void *value = string_to_value(key, kvp->value); local
149 void *value = NULL; local
223 ns_set_value(const char *key, const void *value, ns_printer_t *printer) argument
[all...]
/illumos-gate/usr/src/lib/fm/libdiskstatus/common/
H A Dlibdiskstatus.c142 disk_status_set_debug(boolean_t value) argument
144 ds_debug = value;
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derror_map.h19 * value: char *
27 char * value; member in struct:gsserrmap__element
49 (*free_value)(e->value);
64 /* Returns pointer to value, or null if key not found. */
70 return &e->value;
96 (*free_value)(e->value);
97 e->value = new_value;
108 e->value = new_value;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtrace.c100 (__m_return_int)(const char *s, int value) argument
102 __m_trace("%s returned %d", s, value);
104 return value;
/illumos-gate/usr/src/lib/libpkg/common/
H A Dckparam.c42 static int proc_name(char *param, char *value);
43 static int proc_arch(char *param, char *value);
44 static int proc_version(char *param, char *value);
45 static int proc_category(char *param, char *value);
46 static int bad_first_char(char *param, char *value);
55 char *value = strdup(val); local
56 int ret_val = 0; /* return value */
59 ret_val = proc_name(param, value);
62 ret_val = proc_arch(param, value);
65 ret_val = proc_version(param, value);
76 proc_name(char *param, char *value) argument
89 proc_arch(char *param, char *value) argument
108 proc_version(char *param, char *value) argument
122 proc_category(char *param, char *value) argument
141 bad_first_char(char *param, char *value) argument
[all...]
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dcpu.c65 uint_t *value; local
72 if ((value = (uint_t *)get_prop_val(prop)) == NULL) {
76 return (*value);
H A Ddisplay_sun4u.c63 void *value; /* used for opaque PROM data */ local
91 value = get_prop_val(find_prop(root, "clock-frequency"));
92 if (value != NULL) {
93 sys_clk = ((*((int *)value)) + 500000) / 1000000;
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dsetenv.c57 * Set the value of the environmental variable "name" to be
58 * "value". If rewrite is set, replace any current value.
60 setenv(const char *name, const char *value, int rewrite) { argument
66 if (*value == '=') /*%< no `=' in value */
67 ++value;
68 l_value = strlen(value);
73 while (*c++ = *value++);
99 if (!(environ[offset] = /*%< name + `=' + value */
[all...]

Completed in 144 milliseconds

1234567891011>>