Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/app_file_service/frameworks/native/backup_ext/src/
H A Duntar_file.cpp41 static off_t ParseOctalStr(const string &octalStr, size_t destLen) in ParseOctalStr() argument
44 string::const_iterator it = octalStr.begin(); in ParseOctalStr()
46 while (it != octalStr.end() && (*it < '0' || *it > '7') && destLen > 0) { in ParseOctalStr()
51 while (it != octalStr.end() && *it >= '0' && *it <= '7' && destLen > 0) { in ParseOctalStr()