Searched refs:configStr (Results 1 – 2 of 2) sorted by relevance
285 std::string configStr(config); in DecodeResourceLimits() local287 while ((pos = configStr.find_first_not_of(delims, pos)) != std::string::npos) { in DecodeResourceLimits()289 const size_t token_e = configStr.find_first_of(delims, token_s); in DecodeResourceLimits()290 const size_t value_s = configStr.find_first_not_of(delims, token_e); in DecodeResourceLimits()291 const size_t value_e = configStr.find_first_of(delims, value_s); in DecodeResourceLimits()295 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits()296 const std::string valueStr = configStr.substr(value_s, value_e-value_s); in DecodeResourceLimits()
317 std::string configStr = strstr.str(); in RunSeparateProcessesForEachConfig() local320 childArgs.push_back(configStr.c_str()); in RunSeparateProcessesForEachConfig()