Searched defs:config (Results 26 - 50 of 77) sorted by relevance

1234

/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_config.c95 nvlist_t *config; local
151 if (zcmd_read_dst_nvlist(hdl, &zc, &config) != 0) {
169 while ((elem = nvlist_next_nvpair(config, elem)) != NULL) {
174 nvlist_free(config);
181 nvlist_free(config);
189 nvlist_free(config);
198 nvlist_free(config);
225 nvlist_t *config; local
261 if (zcmd_read_dst_nvlist(hdl, &zc, &config) != 0) {
275 verify(nvlist_lookup_uint64(config,
[all...]
H A Dlibzfs_status.c143 * To determine the status for a pool, we make several passes over the config,
148 * - Look for any faulted or missing devices in a non-replicated config
150 * - Check for any faulted or missing devices in a replicated config
158 check_status(nvlist_t *config, boolean_t isimport) argument
170 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
182 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
184 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE,
199 (void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_HOSTID, &hostid);
213 * Check that the config is complete.
222 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_SUSPENDE
313 zpool_import_status(nvlist_t *config, char **msgid) argument
[all...]
/osnet-11/usr/src/lib/libzpool/common/
H A Dutil.c140 nvlist_t *config, *nvroot; local
143 VERIFY(spa_get_stats(spa_name(spa), &config, NULL, 0) == 0);
145 VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
147 VERIFY(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME,
154 nvlist_free(config);
/osnet-11/usr/src/lib/scsi/plugins/smp/usmp/common/
H A Dusmp.c225 smp_engine_config_t config = { local
230 return (smp_engine_register(ep, LIBSMP_ENGINE_VERSION, &config));
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DRequestHandler.java52 private SLPConfig config; // Config for system properties. field in class:RequestHandler
76 config = config_in;
80 clientAddr = config.getLoopback();
106 config = config_in;
136 config = config_in;
266 if (config.traceDrop()) {
267 config.writeLog("rh_rqst_in_progress",
302 if (config.traceDrop()) {
303 config.writeLog("rh_datagram_ioe",
378 config
[all...]
H A DServiceTable.java1405 SLPConfig config)
1401 makeDAAdvert(SrvLocHeader hdr, InetAddress daAddr, short xid, Vector scopes, SLPConfig config) argument
H A DTransact.java51 // SLP config object.
53 protected static SLPConfig config = null; field in class:Transact
126 config.getMulticastTimeouts(),
127 config.getMaximumResults(),
148 config.getMaximumResults());
216 * specified in the 'config.' or
226 // Get the config object if we need it.
228 if (config == null) {
229 config = SLPConfig.getSLPConfig();
269 if (config
[all...]
H A Dslpd.java71 * java com.sun.slpd [monitor] [stop] [-f <config file name>]
77 * signal a running slpd to stop. The optional <config file name> argument
88 // internals of SLP config.
218 private static SLPConfig config; // handles system properties field in class:slpd
237 * Usage: slpd [monitor] [stop] [-f config-file name]<br>
243 * <b> config-file name </b> Reads the specified configuration file.<br>
267 // Argument is a config file.
298 // Read message bundle file, load config file into properties.
311 // Create a new SLP Config object from the config file.
312 config
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dusbms.c57 int config; member in struct:grub_usbms_dev
83 grub_usbms_detach (grub_usb_device_t usbdev, int config, int interface) argument
89 && grub_usbms_devices[i]->config == config)
100 = usbdev->config[configno].interf[interfno].descif;
112 interf = usbdev->config[configno].interf[interfno].descif;
137 endp = &usbdev->config[0].interf[interfno].descendp[j];
193 usbdev->config[configno].interf[interfno].detach_hook = grub_usbms_detach;
441 grub_usbms_devices[i]->dev->config[grub_usbms_devices[i]->config]
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/pc/
H A Dplan9.c106 char *config, *configptr; local
424 config = get_virtual_current_address (ch);
427 grub_memset (config, 0, GRUB_PLAN9_CONFIG_PATH_SIZE);
428 grub_strncpy (config, bootpath, GRUB_PLAN9_CONFIG_PATH_SIZE - 1);
430 configptr = config + GRUB_PLAN9_CONFIG_PATH_SIZE;
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dmain.c149 read_config_file (const char *config) argument
185 /* Try to open the config file. */
186 file = grub_file_open (config);
269 /* Read the config file CONFIG and execute the menu interface or
272 grub_normal_execute (const char *config, int nested, int batch) argument
284 if (config)
286 menu = read_config_file (config);
305 grub_enter_normal_mode (const char *config) argument
308 grub_normal_execute (config, 0, 0);
322 /* Guess the config filenam
324 char *config; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/term/
H A Dserial.c163 struct grub_serial_config config;
190 config = port->config;
193 config.speed = grub_strtoul (state[2].arg, 0, 0);
196 config.word_len = grub_strtoul (state[3].arg, 0, 0);
201 config.parity = GRUB_SERIAL_PARITY_NONE;
203 config.parity = GRUB_SERIAL_PARITY_ODD;
205 config.parity = GRUB_SERIAL_PARITY_EVEN;
213 config.stop_bits = GRUB_SERIAL_STOP_BITS_1;
215 config
162 struct grub_serial_config config; local
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dserial.h35 struct grub_serial_config *config);
68 struct grub_serial_config config; member in struct:grub_serial_port
102 struct grub_serial_config *config)
104 return port->driver->configure (port, config);
129 struct grub_serial_config config = local
141 return port->driver->configure (port, &config);
101 grub_serial_port_configure(struct grub_serial_port *port, struct grub_serial_config *config) argument
H A Dusbdesc.h64 grub_uint8_t config; member in struct:grub_usb_desc_config
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigFloat.pm49 # Math::BigInt->config()->{lib}
52 # are NaNs ok? (otherwise it dies when encountering an NaN) set w/ config()
301 sub config subroutine
306 my $cfg = $class->SUPER::config(@_);
2304 my $mbilib = eval { Math::BigInt->config()->{lib} };
2333 $MBI = Math::BigInt->config()->{lib};
H A DBigRat.pm46 $_trap_nan = 0; # are NaNs ok? set w/ config()
47 $_trap_inf = 0; # are infs ok? set w/ config()
260 sub config subroutine
265 my $cfg = $class->SUPER::config(@_);
1257 my $mbilib = eval { Math::BigInt->config()->{lib} };
1288 $CALC = Math::BigFloat->config()->{lib};
1493 =head2 config
1497 print Dumper ( Math::BigRat->config() );
1498 print Math::BigRat->config()->{lib},"\n";
1511 class RO The class of config yo
[all...]
/osnet-11/usr/src/lib/scsi/plugins/ses/SUN-Storage-J4400/common/
H A Driverwalk.c232 ses_plugin_config_t config = { local
237 &config) != 0);
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_confmgr.c219 gettext("Empty config file: '%s'"), file);
254 * two sets of LDAP config. attribute names.
283 * config - a buffer returned by __ns_ldap_getConnectionInfo()'s
288 __s_api_create_config_door_str(char *config, ns_ldap_error_t **errorp) argument
294 if (config == NULL || errorp == NULL)
303 attr = strtok_r(config, DOORLINESEP, &rest);
487 * config, if it's non-NULL, it outputs the flatten data of a temporary
488 * config. It's used to compare the new config data with the current
489 * default config dat
[all...]
H A Dns_sasl.c189 * Output: config. See comments above.
193 __ns_ldap_self_gssapi_config(ns_ldap_self_gssapi_config_t *config) argument
201 if (config == NULL)
204 *config = NS_LDAP_SELF_GSSAPI_CONFIG_NONE;
207 * If config files don't exist, return NS_LDAP_CONFIG.
268 *config = NS_LDAP_SELF_GSSAPI_CONFIG_ONLY;
270 *config = NS_LDAP_SELF_GSSAPI_CONFIG_MIXED;
477 * It's called only if config == NS_LDAP_SELF_GSSAPI_CONFIG_ONLY ||
478 * config == NS_LDAP_SELF_GSSAPI_CONFIG_MIXED.
485 ns_ldap_self_gssapi_config_t config,
481 __ns_ldap_check_dns_preq(int foreground, int mode_verbose, int mode_quiet, const char *fname, ns_ldap_self_gssapi_config_t config, ns_ldap_error_t **errpp) argument
546 __ns_ldap_check_gssapi_preq(int foreground, int mode_verbose, int mode_quiet, ns_ldap_self_gssapi_config_t config, ns_ldap_error_t **errpp) argument
618 __ns_ldap_check_all_preq(int foreground, int mode_verbose, int mode_quiet, ns_ldap_self_gssapi_config_t config, ns_ldap_error_t **errpp) argument
[all...]
H A Dns_connmgmt.h191 * the change is detected at config refresh time. When a server status
194 * and close them when all users are done using them. When a config change
196 * created for the new configuration. The old config would still be used
207 * Each ns_conn_mgmt references a native LDAP configuration. The config
209 * referred to as the current global config. The current ns_conn_mgmt
210 * uses that global config. When an ns_conn_mgmt is detached, or not
211 * longer active/current, the config it uses is no longer the current global
212 * one, which is referred as the per connection management config. When
213 * the ns_conn_mgmt is freed, the config will also be destroyed.
223 mutex_t cfg_lock; /* lock serializes access to config */
225 ns_config_t *config; /* the native LDAP config being used */ member in struct:ns_conn_mgmt
[all...]
H A Dns_mapping.c79 ns_get_hash(const ns_config_t *config, argument
85 if (config == NULL || service == NULL || str == NULL)
89 idx = config->hashTbl[hash];
147 __s_api_destroy_hash(ns_config_t *config) argument
152 if (config == NULL)
155 next = config->hashTbl[i];
159 config->hashTbl[i] = NULL;
170 __s_api_add_map2hash(ns_config_t *config, ns_hashtype_t type, argument
176 if (config == NULL)
180 idx = config
[all...]
/osnet-11/usr/src/lib/libpower/common/
H A Dpm_suspend.c221 nvlist_t *config, *nvroot; local
336 * filled in any config file entries.
358 config = zpool_get_config(zpool_handle, NULL);
359 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
412 * last two config file entries.
540 * the cpr config struct.
/osnet-11/usr/src/lib/libbe/common/
H A Dbe_activate.c561 nvlist_t **child, *config, *nv; local
588 if ((config = zpool_get_config(zphp, NULL)) == NULL) {
598 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nv) != 0) {
/osnet-11/usr/src/lib/libwrap/
H A Dtcpd.h108 struct netconfig *config; /* netdir handle */ member in struct:request_info
/osnet-11/usr/src/tools/onbld/hgext/
H A Dcdm.py379 arcPath=ui.config('cdm', 'arcpath', None))
1217 from mercurial import config namespace
1229 cfg = config.config()
1304 hg backup --config cdm.backupdir=/net/foo/backups

Completed in 77 milliseconds

1234