OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:environment_value
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/allocator/
allocator_shim.cc
233
const char*
environment_value
= GetenvBeforeMain(primary_name);
local
234
if (
environment_value
) {
235
if (!stricmp(
environment_value
, "jemalloc"))
237
else if (!stricmp(
environment_value
, "winheap"))
239
else if (!stricmp(
environment_value
, "winlfh"))
241
else if (!stricmp(
environment_value
, "tcmalloc"))
/external/skia/src/utils/
SkRTConf.cpp
215
const char *
environment_value
= getenv(environment_variable.c_str());
local
216
if (
environment_value
) {
217
str->set(
environment_value
);
226
environment_value
= getenv(underscore_environment_variable.c_str());
227
if (
environment_value
) {
228
str->set(
environment_value
);
Completed in 179 milliseconds