Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/mbms/
DMbmsUtils.java42 String parentPath = parent.getCanonicalPath(); in isContainedIn() local
44 return childPath.startsWith(parentPath); in isContainedIn()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsState.java728 Path parentPath = destination.getBaseFile().getParentFile().toPath(); in doWriteState()
730 Files.createDirectories(parentPath); in doWriteState()
731 Slog.i(LOG_TAG, "Successfully created " + parentPath); in doWriteState()
733 Slog.e(LOG_TAG, "Failed to write " + parentPath in doWriteState()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiCecLocalDeviceTv.java1343 private static boolean isParentPath(int parentPath, int childPath) { in isParentPath() argument
1349 int parentNibble = (parentPath >> i) & 0xF; in isParentPath()
1350 return parentNibble == 0 && (childPath >> i+4) == (parentPath >> i+4); in isParentPath()