Home
last modified time | relevance | path

Searched refs:tmpLine (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/user/src/
H A Dmount_manager.cpp470 std::string tmpLine; in CheckMaps() local
471 while (std::getline(inputStream, tmpLine)) { in CheckMaps()
472 std::string::size_type pos = tmpLine.find('/'); in CheckMaps()
476 tmpLine = tmpLine.substr(pos); in CheckMaps()
478 if (tmpLine.find(item) == 0) { in CheckMaps()
479 LOGE("find a fd from maps, %{public}s", tmpLine.c_str()); in CheckMaps()
783 std::string tmpLine; in FindMountPointsToMap() local
784 while (std::getline(inputStream, tmpLine)) { in FindMountPointsToMap()
785 MountPointToList(hmdfsList, hmfsList, sharefsList, tmpLine, userId); in FindMountPointsToMap()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/utils/
H A Dfile_utils.cpp569 std::string tmpLine; in IsPathMounted() local
570 while (std::getline(inputStream, tmpLine)) { in IsPathMounted()
571 std::stringstream ss(tmpLine); in IsPathMounted()
/ohos5.0/base/hiviewdfx/faultloggerd/test/unittest/unwind/
H A Delf_imitate.cpp611 std::string tmpLine = line.substr(pos, line.length() - pos); in ParseSectionHeaders() local
612 auto strVec = StringSplit(tmpLine, " "); in ParseSectionHeaders()