Lines Matching refs:dirTmp
340 DIR *dirTmp = opendir(cmdContentStr.c_str()); variable
341 EXPECT_TRUE(dirTmp == nullptr);
343 if (dirTmp != nullptr) { // just in case
344 closedir(dirTmp);
345 dirTmp = nullptr;
357 dirTmp = opendir("/storage/data/cmdFuncDoCmdTest003");
358 EXPECT_TRUE(dirTmp == nullptr);
360 if (dirTmp != nullptr) { // just in case
361 closedir(dirTmp);
362 dirTmp = nullptr;
476 DIR* dirTmp = opendir(cmdContentStr.c_str()); variable
477 EXPECT_TRUE(dirTmp != nullptr);
478 if (dirTmp != nullptr) {
479 closedir(dirTmp);
480 dirTmp = nullptr;