HomeSort by relevance Sort by last modified time
    Searched defs:prop (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/usba/
usba.c 52 ddi_prop_t prop; local
55 if (mdb_vread(&prop, sizeof (prop), p) == -1) {
60 (uintptr_t)prop.prop_name) == -1) {
69 p = (uintptr_t)prop.prop_next;
  /onnv/onnv-gate/usr/src/lib/fm/topo/libtopo/common/
topo_protocol.c 43 nvlist_t *prop, *ap; local
46 TOPO_PROP_ASRU, priv, &prop, err) < 0)
49 if (nvlist_lookup_nvlist(prop, TOPO_PROP_VAL_VAL, &ap) != 0 ||
52 nvlist_free(prop);
56 nvlist_free(prop);
64 nvlist_t *prop, *fp; local
67 priv, &prop, err) < 0)
70 if (nvlist_lookup_nvlist(prop, TOPO_PROP_VAL_VAL, &fp) != 0 ||
73 nvlist_free(prop);
77 nvlist_free(prop);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/isns/isnsd/
config.c 63 scf_property_t *prop = NULL; local
78 prop = scf_property_create(handle);
84 prop == NULL || value == NULL || value_iter == NULL) {
120 if (scf_pg_get_property(pg, CONFIG_ESI_THRESHOLD, prop) == -1) {
126 if (scf_property_get_value(prop, value) == -1) {
150 if (scf_pg_get_property(pg, CONFIG_MGMT_SCN, prop) == -1) {
156 if (scf_property_get_value(prop, value) == -1) {
174 if (scf_pg_get_property(pg, CONFIG_DATA_STORE, prop) == -1) {
180 if (scf_property_get_value(prop, value) == -1) {
198 if (scf_pg_get_property(pg, CONFIG_CONTROL_NODES, prop) == -1)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libprtdiag/common/
cpu.c 64 Prop *prop; local
68 if ((prop = find_prop(pnode, "clock-frequency")) == NULL) {
72 if ((value = (uint_t *)get_prop_val(prop)) == NULL) {
  /onnv/onnv-gate/usr/src/lib/libtnf/
util.c 36 tag_props_t prop; member in struct:ntop
83 props |= p->prop;
  /onnv/onnv-gate/usr/src/common/zfs/
zfs_deleg.c 88 zfs_prop_t prop; local
95 prop = zfs_name_to_prop(perm);
96 if (prop != ZPROP_INVAL && zfs_prop_delegatable(prop))
97 return (zfs_prop_to_name(prop));
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/filesystems/wbem_nfs/common/
createprop_methods.c 66 CCIMProperty *prop; local
71 prop = cim_createProperty(pName, pType, pValue, NULL, pIsKey);
73 prop = cim_createReferenceProperty(pName, pOP, pIsKey);
76 if (prop == NULL) {
83 if (cim_addProperty(pInst, prop) == cim_false) {
87 cim_freeProperty(prop);
126 CCIMProperty *prop; local
131 prop = cim_createProperty(pName, pType, pValue, NULL, pIsKey);
133 prop = cim_createReferenceProperty(pName, pOP, pIsKey);
139 if (prop == NULL)
    [all...]
nfsprov_methods.c 65 CCIMProperty *prop = NULL; local
83 prop = cim_createProperty("outParams", string_array,
86 prop = cim_createProperty("outParams", string, single_value,
90 if (prop == NULL) {
99 outParams = cim_addPropertyToPropertyList(outParams, prop);
  /onnv/onnv-gate/usr/src/lib/libiscsitgt/common/
gen.c 187 scf_simple_prop_t *prop; local
191 if ((prop = scf_simple_prop_get(NULL, service, "application",
195 if ((ret = scf_simple_prop_next_boolean(prop)) != NULL)
198 scf_simple_prop_free(prop);
  /onnv/onnv-gate/usr/src/lib/libnsl/common/
daemon_utils.c 228 scf_simple_prop_t *prop; local
232 prop = scf_simple_prop_get(NULL, fmri, "application", "auto_enable");
233 if (!prop)
235 ret = scf_simple_prop_next_boolean(prop);
237 scf_simple_prop_free(prop);
  /onnv/onnv-gate/usr/src/uts/common/io/bge/
bge_ndd.c 64 * If there is a driver.conf setting for the prop, we use
127 char **options, *prop; local
154 prop = options[noptions-1];
155 if (strstr(prop, "ethernet") == NULL)
157 if (strstr(prop, "1000")) {
158 if (strstr(prop, "auto")) {
162 } else if (strstr(prop, "full"))
164 else if (strstr(prop, "half"))
166 } else if (strstr(prop, "100")) {
167 if (strstr(prop, "auto"))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/sparc/sys/
uadmin.c 104 scf_simple_prop_t *prop = NULL; local
121 prop = real_scf_simple_prop_get(NULL, fmri, "config",
123 if (prop) {
124 if ((ret_val = real_scf_simple_prop_next_boolean(prop)) !=
128 real_scf_simple_prop_free(prop);
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/netstrategy/
netstrategy.c 140 const char **prop = required_properties; local
151 while (*prop != NULL) {
153 dn, *prop, &prop_value) != 1) {
157 prop++;
  /onnv/onnv-gate/usr/src/cmd/iscsi/iscsitgtd/
mgmt_remove.c 103 char *prop = NULL; local
149 if (tgt_find_value_str(x, XML_ELEMENT_TPGT, &prop) == True) {
150 if (prop == NULL) {
164 c = tgt_node_alloc(XML_ELEMENT_TPGT, String, prop);
184 free(prop);
185 prop = NULL;
189 if (tgt_find_value_str(x, XML_ELEMENT_ACL, &prop) == True) {
190 if (prop == NULL) {
203 c = tgt_node_alloc(XML_ELEMENT_INIT, String, prop);
217 free(prop);
273 char *prop = NULL; local
460 char *prop = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/filesystems/wbem_nfs/lib/
libDispatch.c 219 CCIMProperty* prop = NULL; local
248 prop = cim_getProperty(inst, pPropName);
254 return ((CCIMProperty *)prop);
407 CCIMProperty *prop; local
428 prop = (*cpInvokeMethodTable[index])
431 return ((CCIMProperty*)prop);
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/wbem_disk/common/
util.c 131 CCIMProperty *prop; local
135 prop = cim_createProperty(name, type, value, NULL, is_key);
136 if (prop == NULL) {
140 if ((cim_addProperty(inst, prop)) == cim_false) {
141 cim_freeProperty(prop);
152 CCIMProperty *prop; local
155 prop = cim_createReferenceProperty(role, obj, isKey);
156 if (prop == NULL) {
160 if (cim_addProperty(inst, prop) == cim_false) {
161 cim_freeProperty(prop);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/c/wbem_disk/lib/
libDispatch.c 218 CCIMProperty* prop = NULL; local
247 prop = cim_getProperty(inst, pPropName);
253 return ((CCIMProperty *)prop);
406 CCIMProperty *prop; local
427 prop = (*cpInvokeMethodTable[index])
430 return ((CCIMProperty*)prop);
  /onnv/onnv-gate/usr/src/lib/efcode/fcdriver/
property.c 120 char *prop; local
136 } else if (os_get_prop_common(pd->common, node, name, inherit, &prop,
140 PUSH(DS, (fstack_t)prop);
  /onnv/onnv-gate/usr/src/psm/stand/cpr/common/
support.c 95 cprop_t *prop, *tail; local
133 for (prop_errors = 0, prop = cdef.props, tail = prop + CPR_MAXPROP;
134 prop < tail; prop++) {
137 prop->mod, prop->name, prop->value);
139 if (prop->mod != PROP_MOD)
142 len = prom_strlen(prop->value)
    [all...]
  /onnv/onnv-gate/usr/src/lib/smbsrv/libsmb/common/
smb_scfutil.c 252 scf_property_t *prop; local
258 prop = scf_property_create(handle->scf_handle);
259 if (value && prop &&
260 (scf_pg_get_property(handle->scf_pg, propname, prop) == 0)) {
261 if (scf_property_get_value(prop, value) == 0) {
273 if (prop != NULL)
274 scf_property_destroy(prop);
346 scf_property_t *prop = NULL; local
352 prop = scf_property_create(handle->scf_handle);
353 if ((prop) && (value) &
441 scf_property_t *prop = NULL; local
540 scf_property_t *prop = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/audit/
audit.c 169 scf_simple_prop_t *prop = NULL; local
172 if ((prop = scf_simple_prop_get(NULL, AUDITD_FMRI, SCF_PG_RESTARTER,
177 if ((scf_simple_prop_numvalues(prop) < 0) ||
178 (cid = scf_simple_prop_next_count(prop)) == NULL) {
179 scf_simple_prop_free(prop);
185 scf_simple_prop_free(prop);
188 scf_simple_prop_free(prop);
  /onnv/onnv-gate/usr/src/lib/libscf/common/
highlevel.c 59 scf_simple_prop_t *prop = NULL; local
85 if ((prop = scf_simple_prop_get(NULL, FMRI_BOOT_CONFIG,
89 numvals = scf_simple_prop_numvalues(prop);
92 platform_name = scf_simple_prop_next_astring(prop);
103 scf_simple_prop_free(prop);
179 scf_propvec_t *prop;
181 for (prop = ua_boot_config; prop->pv_prop != NULL; prop++)
182 prop->pv_ptr = boot_config
    [all...]
  /onnv/onnv-gate/usr/src/cmd/hotplugd/
hotplugd_impl.c 168 ddi_hp_property_t prop; local
177 if ((rv = pack_properties(options, &prop)) != 0) {
188 free_properties(&prop);
199 &prop, &results))
204 &prop, &results))
219 free_properties(&prop);
262 pack_properties(const char *options, ddi_hp_property_t *prop)
269 (void) memset(prop, 0, sizeof (ddi_hp_property_t));
325 prop->nvlist_buf = buf;
326 prop->buf_size = len
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dfs.cmds/sharectl/
sharectl.c 128 sa_property_t prop; local
191 for (prop = sa_get_protocol_property(propsect, NULL);
192 prop != NULL;
193 prop = sa_get_next_protocol_property(prop, NULL)) {
196 name = sa_get_property_attr(prop, "type");
198 value = sa_get_property_attr(prop,
223 for (prop = sa_get_protocol_property(propsect,
225 prop != NULL;
226 prop = sa_get_next_protocol_property
268 sa_property_t prop; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/eeprom/i386/
benv_kvm.c 35 static int getpropval(struct openpromio *opp, char *prop);
129 getpropval(struct openpromio *opp, char *prop)
133 (void) strlcpy(opp->oprom_array, prop, MAXPROPSIZE);
142 getnextprop(struct openpromio *opp, char *prop)
146 (void) strlcpy(opp->oprom_array, prop, MAXPROPSIZE);
161 prom_getprop(char *prop, int *lenp)
165 if (!getpropval(opp, prop))
172 prom_nextprop(char *prop)
176 if (!getnextprop(opp, prop))
223 ddi_prop_t *prop, *plist local
    [all...]

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 910