Lines Matching refs:newp
22 static PartitionChangeType ComparePartition(const PartitonList &plist, struct Partition &newp)
27 if (!strcmp(p->partName.c_str(), newp.partName.c_str())) {
38 newp.changeType = NEW_PARTITION;
41 if (oldp->start != newp.start) {
42 LOG(INFO) << "newp.start " << newp.start;
45 newp.changeType = START_CHANGE;
46 } else if (oldp->length != newp.length) {
47 LOG(INFO) << "newp.length " << newp.length;
50 newp.changeType = LENGTH_CHANGE;