OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:android_data
(Results
1 - 4
of
4
) sorted by null
/bionic/benchmarks/
property_benchmark.cpp
40
const char*
android_data
= getenv("
ANDROID_DATA
");
local
41
if (
android_data
== NULL) {
42
printf("
ANDROID_DATA
environment variable not set\n");
46
snprintf(dir_template, sizeof(dir_template), "%s/local/tmp/prop-XXXXXX",
android_data
);
50
android_data
, strerror(errno));
/art/runtime/
common_runtime_test.cc
55
//
ANDROID_DATA
needs to be set
56
CHECK_NE(static_cast<char*>(nullptr), getenv("
ANDROID_DATA
")) <<
58
filename_ = getenv("
ANDROID_DATA
");
149
void CommonRuntimeTest::SetUpAndroidData(std::string&
android_data
) {
154
android_data
= tmpdir;
156
android_data
= "/tmp";
159
android_data
= "/data/dalvik-cache";
161
android_data
+= "/art-data-XXXXXX";
162
if (mkdtemp(&
android_data
[0]) == nullptr) {
163
PLOG(FATAL) << "mkdtemp(\"" << &
android_data
[0] << "\") failed"
265
const char*
android_data
= getenv("ANDROID_DATA");
local
[
all
...]
utils.cc
1188
const char*
android_data
= getenv("ANDROID_DATA");
local
1208
const char*
android_data
= GetAndroidDataSafe(&error_msg);
local
1230
const char*
android_data
= GetAndroidData();
local
[
all
...]
/bionic/tests/
dlext_test.cpp
100
const char*
android_data
= getenv("
ANDROID_DATA
");
local
101
ASSERT_TRUE(
android_data
!= nullptr);
103
snprintf(lib_path, sizeof(lib_path), LIBPATH,
android_data
);
117
const char*
android_data
= getenv("
ANDROID_DATA
");
local
118
ASSERT_TRUE(
android_data
!= nullptr);
121
snprintf(lib_path, sizeof(lib_path), LIBZIPPATH,
android_data
);
137
const char*
android_data
= getenv("
ANDROID_DATA
");
local
249
const char*
android_data
= getenv("ANDROID_DATA");
local
[
all
...]
Completed in 677 milliseconds