Lines Matching defs:groupName

295  * groupName - groupName to create or delete
298 groupIoctl(int fd, int cmd, stmfGroupName *groupName)
307 bcopy(groupName, &iGroupName.name, strlen((char *)groupName));
309 iGroupName.name_size = strlen((char *)groupName);
492 * groupName - groupName to add to or remove from
496 groupMemberIoctl(int fd, int cmd, stmfGroupName *groupName, stmfDevid *devid)
505 bcopy(groupName, &stmfGroupData.group.name, strlen((char *)groupName));
507 stmfGroupData.group.name_size = strlen((char *)groupName);
4037 * groupName - Name of the target group for which we need to check
4045 stmfCheckTargetGroupInUse(stmfGroupName *groupName, boolean_t *inUse)
4053 if (groupName == NULL || inUse == NULL) {
4066 bcopy(groupName, &iGroupName.name, strlen((char *)groupName));
4068 iGroupName.name_size = strlen((char *)groupName);
4114 * groupName - Name of the host group for which we need to check if its in use
4121 stmfCheckHostGroupInUse(stmfGroupName *groupName, boolean_t *inUse)
4129 if (groupName == NULL || inUse == NULL) {
4142 bcopy(groupName, &iGroupName.name, strlen((char *)groupName));
4144 iGroupName.name_size = strlen((char *)groupName);
4400 groupMemberListIoctl(stmfGroupName *groupName, stmfGroupProperties **groupProps,
4414 if (groupName == NULL) {
4440 bcopy(groupName, &iGroupName.name, strlen((char *)groupName));
4442 iGroupName.name_size = strlen((char *)groupName);
4613 iLoadGroupMembersFromPs(stmfGroupName *groupName,
4618 if (groupName == NULL) {
4623 ret = psGetHostGroupMemberList((char *)groupName, groupProp);
4625 ret = psGetTargetGroupMemberList((char *)groupName, groupProp);
4661 * groupName - name of group for which to retrieve host group members.
4666 stmfGetHostGroupMembers(stmfGroupName *groupName,
4671 if (groupName == NULL || groupProp == NULL) {
4675 ret = groupMemberListIoctl(groupName, groupProp, HOST_GROUP);
4950 * groupName - name of target group for which to retrieve members.
4955 stmfGetTargetGroupMembers(stmfGroupName *groupName,
4960 if (groupName == NULL || groupProp == NULL) {
4964 ret = groupMemberListIoctl(groupName, groupProp, TARGET_GROUP);