HomeSort by relevance Sort by last modified time
    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");
140 void CommonRuntimeTest::SetUpAndroidData(std::string& android_data) {
145 android_data = tmpdir;
147 android_data = "/tmp";
150 android_data = "/data/dalvik-cache";
152 android_data += "/art-data-XXXXXX";
153 if (mkdtemp(&android_data[0]) == nullptr) {
154 PLOG(FATAL) << "mkdtemp(\"" << &android_data[0] << "\") failed"
256 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 92 const char* android_data = getenv("ANDROID_DATA"); local
93 ASSERT_TRUE(android_data != NULL);
95 snprintf(lib_path, sizeof(lib_path), LIBPATH, android_data);
185 const char* android_data = getenv("ANDROID_DATA"); local
186 ASSERT_TRUE(android_data != NULL);
187 snprintf(relro_file_, sizeof(relro_file_), "%s/local/tmp/libdlext_test.relro", android_data);

Completed in 378 milliseconds