Lines Matching refs:prop

129 static int getDiskGlobalProp(uint32_t prop, char *propVal, size_t *propLen);
2274 * prop - property to modify
2279 stmfModifyLu(stmfGuid *luGuid, uint32_t prop, const char *propVal)
2294 ret = modifyDiskLuProp(luGuid, NULL, prop, propVal);
2314 * prop - valid property identifier
2319 stmfModifyLuByFname(uint16_t dType, const char *fname, uint32_t prop,
2328 ret = modifyDiskLuProp(NULL, fname, prop, propVal);
2337 modifyDiskLuProp(stmfGuid *luGuid, const char *fname, uint32_t prop,
2348 ret = validateModifyDiskProp(prop);
2353 ret = stmfSetLuProp(hdl, prop, propVal);
2365 validateModifyDiskProp(uint32_t prop)
2367 switch (prop) {
2681 stmfGetLuProp(luResource hdl, uint32_t prop, char *propVal, size_t *propLen)
2690 ret = getDiskProp(luPropsHdl, prop, propVal, propLen);
2966 stmfGetGlobalLuProp(uint16_t dType, uint32_t prop, char *propVal,
2974 ret = getDiskGlobalProp(prop, propVal, propLen);
2986 getDiskGlobalProp(uint32_t prop, char *propVal, size_t *propLen)
3000 switch (prop) {
3074 switch (prop) {
3103 stmfSetGlobalLuProp(uint16_t dType, uint32_t prop, const char *propVal)
3110 ret = setDiskGlobalProp(prop, propVal);
3218 * prop - property identifier
3222 stmfSetLuProp(luResource hdl, uint32_t prop, const char *propVal)
3231 ret = setDiskProp(luPropsHdl, prop, propVal);
3245 * prop - property identifier
3251 getDiskProp(luResourceImpl *hdl, uint32_t prop, char *propVal, size_t *propLen)
3258 if (prop == STMF_LU_PROP_ACCESS_STATE) {
3287 switch (prop) {
6884 char prop[MAXNAMELEN] = {0};
6898 ret = psGetStmfProp(propType, prop);
6899 if ((reqLen = strlcpy(propVal, prop, *propLen)) >= *propLen) {