Home | History | Annotate | Download | only in runtime

Lines Matching refs:name_value_pairs_

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