Lines Matching defs:fstabItem
254 FstabItem fstabItem = {};
255 fstabItem.fsType = strdup("notSupport");
256 fstabItem.mountPoint = strdup("");
258 EXPECT_EQ(MountOneItem(&fstabItem), 0);
259 if (fstabItem.fsType != nullptr) {
260 free(fstabItem.fsType);
261 fstabItem.fsType = nullptr;
263 if (fstabItem.mountPoint != nullptr) {
264 free(fstabItem.mountPoint);
265 fstabItem.mountPoint = nullptr;