Lines Matching refs:strPartInfo
108 bool ParsePartitionInfo(string &strPartInfo, string &strName, UINT &uiOffset, UINT &uiLen) in ParsePartitionInfo() argument
114 if (strPartInfo.size() <= 0) in ParsePartitionInfo()
118 pos = strPartInfo.find('@'); in ParsePartitionInfo()
123 strLen = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
140 pos = strPartInfo.find('(', prevPos); in ParsePartitionInfo()
145 strOffset = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
155 pos = strPartInfo.find(')', prevPos); in ParsePartitionInfo()
160 strName = strPartInfo.substr(prevPos, pos - prevPos); in ParsePartitionInfo()
171 string strLine, strPartition, strPartInfo, strPartName; in parse_parameter() local
209 strPartInfo = strPartition.substr(pos, posComma - pos); in parse_parameter()
210 bRet = ParsePartitionInfo(strPartInfo, strPartName, uiPartOffset, uiPartSize); in parse_parameter()
221 strPartInfo = strPartition.substr(pos); in parse_parameter()
222 if (strPartInfo.size() > 0) in parse_parameter()
224 bRet = ParsePartitionInfo(strPartInfo, strPartName, uiPartOffset, uiPartSize); in parse_parameter()