Lines Matching refs:newCl
436 ClusterInfo *newCl = newClusterInfo(); in cloneClusterInfo() local
438 *newCl = *cl; in cloneClusterInfo()
439 newCl->refcnt = 1; in cloneClusterInfo()
440 if (newCl->path) in cloneClusterInfo()
441 newCl->path->references++; in cloneClusterInfo()
442 InUse[clusterNum - FIRST_CLUSTER] = newCl; in cloneClusterInfo()
493 ClusterInfo *newCl; in allocInUse() local
499 newCl = *template; in allocInUse()
501 newCl = newClusterInfo(); in allocInUse()
503 *template = newCl; in allocInUse()
506 InUse[clusterNum - FIRST_CLUSTER] = newCl; in allocInUse()
507 newCl->refcnt++; in allocInUse()