Home | History | Annotate | Download | only in base

Lines Matching full:value_storage

189   std::string value_storage;  // Holds concatenated null-terminated strings.
190 std::vector<size_t> result_indices; // Line indices into value_storage.
201 result_indices.push_back(value_storage.size());
202 value_storage.append(env[i], line_length);
210 result_indices.push_back(value_storage.size());
211 value_storage.append(i->first);
212 value_storage.push_back('=');
213 value_storage.append(i->second);
214 value_storage.push_back(0);
220 (value_storage.size() + sizeof(char*) - 1) / sizeof(char*); // Buffer.
226 if (!value_storage.empty())
227 memcpy(storage_data, value_storage.data(), value_storage.size());