Home
last modified time | relevance | path

Searched refs:parentPath (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/telephony/java/android/telephony/mbms/
H A DMbmsUtils.java42 String parentPath = parent.getCanonicalPath(); in isContainedIn() local
44 return childPath.startsWith(parentPath); in isContainedIn()
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecNetwork.java122 private static boolean isParentPath(int parentPath, int childPath) { in isParentPath() argument
128 int parentNibble = (parentPath >> i) & 0xF; in isParentPath()
129 return parentNibble == 0 && (childPath >> i + 4) == (parentPath >> i + 4); in isParentPath()
/aosp14/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java942 Path parentPath = destination.getBaseFile().getParentFile().toPath(); in doWriteState()
944 Files.createDirectories(parentPath); in doWriteState()
946 Slog.i(LOG_TAG, "Successfully created " + parentPath); in doWriteState()
949 Slog.e(LOG_TAG, "Failed to write " + parentPath in doWriteState()