Lines Matching refs:genx
103 if (params->genx != NULL) {
105 ret->genx = kmem_alloc(strlen(params->genx) + 1, kmflag);
106 bcopy(params->genx, ret->genx, strlen(params->genx) + 1);
108 CHECK(ret->genx = strdup(params->genx));
181 if (params->genx != NULL)
183 kmem_free(params->genx, strlen(params->genx) + 1);
185 free(params->genx);