Home | History | Annotate | Download | only in base

Lines Matching refs:value_storage

187   std::string value_storage;  // Holds concatenated null-terminated strings.
188 std::vector<size_t> result_indices; // Line indices into value_storage.
199 result_indices.push_back(value_storage.size());
200 value_storage.append(env[i], line_length);
208 result_indices.push_back(value_storage.size());
209 value_storage.append(i->first);
210 value_storage.push_back('=');
211 value_storage.append(i->second);
212 value_storage.push_back(0);
218 (value_storage.size() + sizeof(char*) - 1) / sizeof(char*); // Buffer.
224 if (!value_storage.empty())
225 memcpy(storage_data, value_storage.data(), value_storage.size());