OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:value_storage
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/
environment.cc
187
std::string
value_storage
; // Holds concatenated null-terminated strings.
local
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
[
all
...]
/external/chromium_org/third_party/leveldatabase/src/db/
corruption_test.cc
223
std::string
value_storage
;
local
227
batch.Put("a", Value(100, &
value_storage
));
Completed in 490 milliseconds