Lines Matching refs:prop

128 static int getDiskGlobalProp(uint32_t prop, char *propVal, size_t *propLen);
1727 * prop - property to modify
1732 stmfModifyLu(stmfGuid *luGuid, uint32_t prop, const char *propVal)
1747 ret = modifyDiskLuProp(luGuid, NULL, prop, propVal);
1767 * prop - valid property identifier
1772 stmfModifyLuByFname(uint16_t dType, const char *fname, uint32_t prop,
1781 ret = modifyDiskLuProp(NULL, fname, prop, propVal);
1790 modifyDiskLuProp(stmfGuid *luGuid, const char *fname, uint32_t prop,
1801 ret = validateModifyDiskProp(prop);
1806 ret = stmfSetLuProp(hdl, prop, propVal);
1818 validateModifyDiskProp(uint32_t prop)
1820 switch (prop) {
2122 stmfGetLuProp(luResource hdl, uint32_t prop, char *propVal, size_t *propLen)
2131 ret = getDiskProp(luPropsHdl, prop, propVal, propLen);
2373 stmfGetGlobalLuProp(uint16_t dType, uint32_t prop, char *propVal,
2381 ret = getDiskGlobalProp(prop, propVal, propLen);
2393 getDiskGlobalProp(uint32_t prop, char *propVal, size_t *propLen)
2407 switch (prop) {
2480 switch (prop) {
2509 stmfSetGlobalLuProp(uint16_t dType, uint32_t prop, const char *propVal)
2516 ret = setDiskGlobalProp(prop, propVal);
2622 * prop - property identifier
2626 stmfSetLuProp(luResource hdl, uint32_t prop, const char *propVal)
2635 ret = setDiskProp(luPropsHdl, prop, propVal);
2649 * prop - property identifier
2655 getDiskProp(luResourceImpl *hdl, uint32_t prop, char *propVal, size_t *propLen)
2662 if (prop == STMF_LU_PROP_ACCESS_STATE) {
2691 switch (prop) {
5581 char prop[MAXNAMELEN] = {0};
5595 ret = psGetStmfProp(propType, prop);
5596 if ((reqLen = strlcpy(propVal, prop, *propLen)) >= *propLen) {