Home
last modified time | relevance | path

Searched refs:posend (Results 1 - 2 of 2) sorted by relevance

/test/testfwk/developer_test/aw/cxx/distributed/
H A Ddistributed_cfg.cpp80 size_t posend = 0; in GetValueInString() local
82 posend = str.find(",", pos); in GetValueInString()
83 if (posend == std::string::npos) { in GetValueInString()
86 pos = posend + 1; in GetValueInString()
89 posend = str.find(",", pos); in GetValueInString()
90 if (posend != std::string::npos) { in GetValueInString()
91 ipaddr = str.substr(pos, posend - pos); in GetValueInString()
H A Ddistributed_major.cpp61 std::string::size_type posend = 0; in Init() local
65 posend = iplist.find(",", pos); in Init()
66 if (posend != std::string::npos) { in Init()
67 ipaddr = iplist.substr(pos, posend - pos); in Init()
72 if (posend >= iplist.length()) { in Init()
75 pos = posend + 1; in Init()
76 } while (posend != std::string::npos); in Init()

Completed in 5 milliseconds