Lines Matching refs:ppos
1031 size_t pos, ppos;
1032 pos = ppos = 0;
1033 #define ITERATE_TO_NEXT_TERM(res, str, pos, ppos) \
1035 pos = str.find(",", ppos); \
1041 res = str.substr(ppos, pos - ppos); \
1042 Log2((#res " %s pos:%d, ppos:%d\n", res.c_str(), pos, ppos)); \
1043 ppos = pos + 1; \
1045 ITERATE_TO_NEXT_TERM(strName, utf, pos, ppos);
1047 ITERATE_TO_NEXT_TERM(strProto, utf, pos, ppos);
1049 ITERATE_TO_NEXT_TERM(strHostIP, utf, pos, ppos);
1051 ITERATE_TO_NEXT_TERM(strHostPort, utf, pos, ppos);
1053 ITERATE_TO_NEXT_TERM(strGuestIP, utf, pos, ppos);
1055 strGuestPort = utf.substr(ppos, utf.length() - ppos);