Home
last modified time | relevance | path

Searched refs:entryPath (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/common/
DSettingsEntryRepository.kt104 val entryPath = ArrayList<SettingsEntry>() in getEntryPath() constant
106 while (currentEntry != null && entryPath.size < MAX_ENTRY_DEPTH) { in getEntryPath()
107 entryPath.add(currentEntry) in getEntryPath()
111 return entryPath in getEntryPath()
115 val entryPath = getEntryPath(entryId) in getEntryPathWithLabel() constant
116 return entryPath.map { it.label } in getEntryPathWithLabel()
120 val entryPath = getEntryPath(entryId) in getEntryPathWithTitle() constant
121 return entryPath.map { in getEntryPathWithTitle()
/frameworks/multidex/library/src/androidx/multidex/
DMultiDex.java772 String entryPath = additionalEntry.getAbsolutePath(); in install() local
773 path.append(':').append(entryPath); in install()
775 extraPaths[index] = entryPath; in install()
778 extraDexs[index] = DexFile.loadDex(entryPath, entryPath + ".dex", 0); in install()
/frameworks/native/opengl/libs/EGL/
DMultifileBlobCache.cpp863 std::string entryPath = mMultifileDirName + "/" + std::to_string(entryHash); in applyLRU() local
864 if (remove(entryPath.c_str()) != 0) { in applyLRU()
866 ALOGW("LRU: Error removing %s: %s", entryPath.c_str(), std::strerror(errno)); in applyLRU()
DMultifileBlobCache_test.cpp749 std::string entryPath = multifileDirName + "/" + entry->d_name; in clearCache() local
752 if (unlink(entryPath.c_str()) != 0) { in clearCache()
753 printf("Error deleting file: %s\n", entryPath.c_str()); in clearCache()