HomeSort by relevance Sort by last modified time
    Searched refs:app_code_cache_dir (Results 1 - 2 of 2) sorted by null

  /system/core/libnativebridge/
native_bridge.cc 111 static char* app_code_cache_dir = nullptr; member in namespace:android
131 if (app_code_cache_dir != nullptr) {
132 delete[] app_code_cache_dir;
133 app_code_cache_dir = nullptr;
275 app_code_cache_dir = new char[len];
276 snprintf(app_code_cache_dir, len, "%s/%s", app_data_dir_in, kCodeCacheDir);
414 if (stat(app_code_cache_dir, &st) == -1) {
416 if (mkdir(app_code_cache_dir, S_IRWXU | S_IRWXG | S_IXOTH) == -1) {
417 ALOGW("Cannot create code cache directory %s: %s.", app_code_cache_dir, strerror(errno));
421 ALOGW("Cannot stat code cache directory %s: %s.", app_code_cache_dir, strerror(errno))
    [all...]
  /art/test/115-native-bridge/
nativebridge.cc 420 const char* app_code_cache_dir,
423 if (app_code_cache_dir != nullptr) {
424 if (stat(app_code_cache_dir, &st) == 0) {

Completed in 92 milliseconds