Home | History | Annotate | Download | only in runtime

Lines Matching refs:name_value_pairs_

2362     name_value_pairs_.emplace_back(new std::string(env[i]));
2364 // The strings in name_value_pairs_ retain ownership of the c_str, but we assign pointers
2366 c_env_vector_.reset(new char*[name_value_pairs_.size() + 1]);
2368 c_env_vector_[i] = const_cast<char*>(name_value_pairs_[i]->c_str());
2370 c_env_vector_[name_value_pairs_.size()] = nullptr;