HomeSort by relevance Sort by last modified time
    Searched defs:android_data (Results 1 - 3 of 3) sorted by null

  /bionic/benchmarks/
property_benchmark.cpp 42 const char* android_data = getenv("ANDROID_DATA"); local
43 if (android_data == NULL) {
44 printf("ANDROID_DATA environment variable not set\n");
48 snprintf(dir_template, sizeof(dir_template), "%s/local/tmp/prop-XXXXXX", android_data);
52 android_data, strerror(errno));
  /art/runtime/
common_runtime_test.cc 69 // ANDROID_DATA needs to be set
70 CHECK_NE(static_cast<char*>(nullptr), getenv("ANDROID_DATA")) <<
72 filename_ = getenv("ANDROID_DATA");
183 void CommonRuntimeTestImpl::SetUpAndroidData(std::string& android_data) {
188 android_data = tmpdir;
190 android_data = "/tmp";
193 android_data = "/data/dalvik-cache";
195 android_data += "/art-data-XXXXXX";
196 if (mkdtemp(&android_data[0]) == nullptr) {
197 PLOG(FATAL) << "mkdtemp(\"" << &android_data[0] << "\") failed"
416 const char* android_data = getenv("ANDROID_DATA"); local
    [all...]
utils.cc 1262 const char* android_data = getenv("ANDROID_DATA"); local
1282 const char* android_data = GetAndroidDataSafe(&error_msg); local
1306 const char* android_data = GetAndroidData(); local
    [all...]

Completed in 5068 milliseconds