Lines Matching refs:strPartInfo
261 bool ParsePartitionInfo(string &strPartInfo, string &strName, UINT &uiOffset, UINT &uiLen) in ParsePartitionInfo() argument
267 if (strPartInfo.size() <= 0) { in ParsePartitionInfo()
270 pos = strPartInfo.find('@'); in ParsePartitionInfo()
274 strLen = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
287 pos = strPartInfo.find('(',prevPos); in ParsePartitionInfo()
291 strOffset = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
299 pos = strPartInfo.find(')', prevPos); in ParsePartitionInfo()
303 strName = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
345 string strLine, strPartition, strPartInfo, strPartName, strUUid; in parse_parameter() local
368 strPartInfo = strLine.substr(pos+5); in parse_parameter()
369 bRet = ParseUuidInfo(strPartInfo, strPartName, strUUid); in parse_parameter()
391 strPartInfo = strPartition.substr(pos, posComma - pos); in parse_parameter()
392 bRet = ParsePartitionInfo(strPartInfo, strPartName, uiPartOffset, uiPartSize); in parse_parameter()
402 strPartInfo = strPartition.substr(pos); in parse_parameter()
403 if (strPartInfo.size() > 0) { in parse_parameter()
404 bRet = ParsePartitionInfo(strPartInfo, strPartName, uiPartOffset, uiPartSize); in parse_parameter()