Home
last modified time | relevance | path

Searched refs:entryPath (Results 1 – 3 of 3) 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.cpp734 std::string entryPath = mMultifileDirName + "/" + std::to_string(entryHash); in applyLRU() local
735 if (remove(entryPath.c_str()) != 0) { in applyLRU()
736 ALOGE("LRU: Error removing %s: %s", entryPath.c_str(), std::strerror(errno)); in applyLRU()