Searched refs:property (Results 1 - 25 of 70) sorted by last modified time

123

/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_007_pos.ksh37 # without affecting the on-disk property. The original on-disk value will be
48 # 1. Create filesystem and get origianl property value.
49 # 2. Using 'zfs mount -o' to set filesystem property.
50 # 3. Verify the property was set temporarily.
51 # 4. Verify it will not affect the property that is stored on disk.
61 log_assert "Verify '-o' will set filesystem property temporarily, " \
62 "without affecting the property that is stored on disk."
68 # Get the specified filesystem property reverse mount option.
71 # $2 property
78 # Define property valu
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_send/
H A Dzfs_send_002_pos.ksh37 # Verify 'zfs send' can generate valid streams with a property setup.
40 # 1. Setup property for filesystem
66 typeset property=$1
69 log_must zfs set $property=$prop_val $fs
101 log_assert "Verify 'zfs send' generates valid streams with a property setup"
139 log_pass "'zfs send' generates streams with a property setup as expected."
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_set/
H A Duser_property_003_neg.ksh36 # ZFS can handle any invalid user defined property.
40 # 2. Combine all kind of invalid user property names.
48 log_assert "ZFS can handle invalid user property."
67 log_pass "ZFS can handle invalid user property passed."
H A Dzfs_set_common.kshlib41 # Firstly, set the property value to dataset. Then checking if the property
44 # $1 property value
45 # $2 property name
63 log_fail "property or dataset isn't defined."
116 user_prop=$(zfs get -H -o property all $dtst | grep ":")
157 # Get vaild user defined property name
159 # $1 user defined property name length
190 # Get invaild user defined property name
192 # $1 user defined property nam
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/
H A Drsend.kshlib215 zfs get -H -o property,value,source $item $dtst1 >> \
217 zfs get -H -o property,value,source $item $dtst2 >> \
H A Drsend_012_pos.ksh73 zfs get -H -o property,value $item $ds >> \
76 log_fail "zfs get -H -o property,value"\
162 # Verify inherited property can be received
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_ioctl.c124 * - To return state, e.g. property values. In this case,
242 static int zfs_check_settable(const char *name, nvpair_t *property,
439 * If we are in a local zone, the 'zoned' property must be set.
521 * Policy for setting the security label property.
560 * For global-zone datasets (i.e., those whose zoned property is
2083 * zc_nvlist_dst_size size of buffer for property nvlist
2087 * zc_nvlist_dst property nvlist
2088 * zc_nvlist_dst_size size of property nvlist
2108 * zc_nvlist_dst_size size of buffer for property nvlist
2111 * zc_nvlist_dst received property nvlis
[all...]
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_xml.c64 * snprintf(3C) format strings for constructing property names that include
152 "property", /* SC_PROPERTY */
368 * Create a SCF_TYPE_BOOLEAN property name pname and attach it to the
369 * property group at pgrp. The value of the property will be set from the
374 * attach the property to pgrp. The attribute should not have an invalid
672 uu_die(gettext("property name missing in group '%s'\n"),
685 uu_die(gettext("property type invalid for "
686 "property '%s/%s'\n"), pgrp->sc_pgroup_name,
692 * Store the property typ
723 lxml_get_property(pgroup_t *pgrp, xmlNodePtr property) argument
[all...]
/illumos-gate/usr/src/cmd/zfs/
H A Dzfs_main.c219 return (gettext("\tclone [-p] [-o property=value] ... "
222 return (gettext("\tcreate [-p] [-o property=value] ... "
224 "\tcreate [-ps] [-b blocksize] [-o property=value] ... "
235 "\t <\"all\" | property[,...]> "
238 return (gettext("\tinherit [-rS] <property> "
244 return (gettext("\tlist [-Hp] [-r|-d max] [-o property[,...]] "
245 "[-s property]...\n\t [-S property]... [-t type[,...]] "
272 return (gettext("\tset <property=value> ... "
277 return (gettext("\tsnapshot [-r] [-o property
2957 char property[ZFS_MAXPROPLEN]; local
[all...]
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg_grammar.y44 static property_value_t property[MAX_EQ_PROP_PAIRS];
47 extern int num_prop_vals; /* # of property values */
269 $$->cmd_property_ptr[0] = &property[0];
663 $$->cmd_property_ptr[0] = &property[0];
674 $$->cmd_property_ptr[0] = &property[0];
676 $$->cmd_property_ptr[1] = &property[1];
687 $$->cmd_property_ptr[0] = &property[0];
689 $$->cmd_property_ptr[1] = &property[1];
691 $$->cmd_property_ptr[2] = &property[2];
736 $$->cmd_property_ptr[0] = &property[
[all...]
/illumos-gate/usr/src/lib/libshare/common/
H A Dlibsharecore.c743 * property for the specified protocol.
806 * _sa_remove_property(property)
808 * remove a property only from the document.
812 _sa_remove_property(sa_property_t property) argument
814 xmlUnlinkNode((xmlNodePtr)property);
815 xmlFreeNode((xmlNodePtr)property);
970 * Remove the property
1038 * remove the property
1606 * Is the specified property a member of the optionset?
1648 * sa_valid_property(handle, object, proto, property)
1655 sa_valid_property(sa_handle_t handle, void *object, char *proto, sa_property_t property) argument
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c454 xmlChar *property; local
457 if ((property = xmlGetProp(cur, propname)) == NULL)
459 srcsize = strlcpy(dst, (char *)property, dstsize);
460 xmlFree(property);
469 xmlChar *property; local
471 if ((property = xmlGetProp(cur, propname)) == NULL)
473 if ((*dst = strdup((char *)property)) == NULL) {
474 xmlFree(property);
477 xmlFree(property);
518 * If we get a null propval remove the property (ignor
1581 char property[10]; /* 10 is big enough for "shared"/"exclusive" */ local
[all...]
/illumos-gate/usr/src/man/man1m/
H A DMakefile168 hal-get-property.1m \
619 hal-find-by-property.1m \
620 hal-set-property.1m \
717 hal-find-by-property.1m := LINKSRC = hal-find.1m
719 hal-set-property.1m := LINKSRC = hal-get-property.1m
/illumos-gate/usr/src/uts/common/os/
H A Dpriv_defs456 CPUs to processor sets and override the PSET_NOESCAPE property.
523 may retain window, pixmap, colormap, property, cursor, font,
539 window property is created with the window's user ID.
586 A newly created window property is created with the window's
/illumos-gate/usr/src/lib/pyzfs/common/
H A Dutil.py110 @property
/illumos-gate/usr/src/pkg/
H A DMakefile448 --set-property publisher.prefix=$(PKGPUBLISHER)
/illumos-gate/usr/src/boot/include/xlocale/
H A D_ctype.h174 wctype_t wctype_l(const char *property, locale_t __l);
/illumos-gate/usr/src/lib/libbrand/common/
H A Dlibbrand.c231 xmlChar *property; local
281 if ((property = xmlGetProp(node, DTD_ATTR_NAME)) == NULL) {
286 if (strcmp((char *)property, name) != 0) {
287 xmlFree(property);
291 xmlFree(property);
/illumos-gate/usr/src/lib/libdns_sd/common/
H A Ddns_sd.h793 * property: The requested property.
794 * Currently the only property defined is kDNSServiceProperty_DaemonVersion.
811 const char *property, /* Requested property (i.e. kDNSServiceProperty_DaemonVersion) */
2034 * be invoked any time the mapping state changes. This property complements point (1) above.
H A Ddnssd_clientstub.c1173 DNSServiceErrorType DNSSD_API DNSServiceGetProperty(const char *property, void *result, uint32_t *size) argument
1176 size_t len = strlen(property) + 1;
1187 put_string(property, &ptr);
1200 if (!strcmp(property, kDNSServiceProperty_DaemonVersion) && *size >= 4)
/illumos-gate/usr/src/lib/libshare/nfs/
H A Dlibshare_nfs.c185 * Add new names here to add new property support. If we ever get a
447 * Add the property to the securities structure. This accumulates
468 * Get the existing property, if it exists, so we can
640 * optionset can occur with ZFS property checking.
791 * property specified. If the
911 * caller. Various property values get turned into structure specific
1001 "index property\n"));
1017 * charmap conversion property. This will get
1326 * to those used by "share" are done. this function does one property
1678 * Check the group for any shares that have the public property
2190 nfs_validate_property(sa_handle_t handle, sa_property_t property, sa_optionset_t parent) argument
[all...]
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_changelist.c45 * 'mountpoint' property, we record whether the filesystem was previously
47 * dataset after the property has been changed.
53 * < change property >
90 * If the property is 'mountpoint', go through and unmount filesystems as
123 * Do the property specific processing.
150 * If the property is 'mountpoint' or 'sharenfs', go through and remount and/or
222 * or sharenfs or sharesmb property is set.
317 * Given a gathered changelist for the 'sharenfs' or 'sharesmb' property,
398 char property[ZFS_MAXPROPLEN]; local
408 * property wil
539 char property[ZFS_MAXPROPLEN]; local
[all...]
/illumos-gate/usr/src/cmd/zpool/
H A Dzpool_main.c211 return (gettext("\tcreate [-fnd] [-o property=value] ... \n"
212 "\t [-O file-system-property=value] ... \n"
225 "\timport [-o mntopts] [-o property=value] ... \n"
228 "\timport [-o mntopts] [-o property=value] ... \n"
238 return (gettext("\tlist [-Hp] [-o property[,...]] "
262 "<\"all\" | property[,...]> <pool> ...\n"));
264 return (gettext("\tset <property=value> <pool> \n"));
267 "\t [-o property=value] <pool> <newpool> "
279 * Callback routine that will print out a pool property value.
406 * Add a property pai
2840 char property[ZPOOL_MAXPROPLEN]; local
[all...]
/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkclient.sh1089 printf "$(gettext "%s property not set to 'true' for the %s FMRI").\n" $ddnsProp $smbFMRI
/illumos-gate/usr/src/lib/libshare/smb/
H A Dlibshare_smb.c336 * number of operations depend on this state. The property not being
750 * smb_validate_property(handle, property, parent)
752 * Check that the property has a legitimate value for its type.
758 smb_validate_property(sa_handle_t handle, sa_property_t property, argument
768 propname = sa_get_property_attr(property, "type");
785 value = sa_get_property_attr(property, "value");
855 /* do the property specific check */
856 ret = optdefs[optindex].check(property);
1378 * Setup to iterate over the service property groups, only
1380 * property wil
[all...]

Completed in 163 milliseconds

123