Home
last modified time | relevance | path

Searched refs:childPath (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/mtp/
DMtpUtils.cpp216 string childPath = pathStr + name; in deleteRecursive() local
219 deleteRecursive(childPath.c_str()); in deleteRecursive()
220 success = rmdir(childPath.c_str()); in deleteRecursive()
222 success = unlink(childPath.c_str()); in deleteRecursive()
224 access_ok(childPath.c_str()); in deleteRecursive()
226 PLOG(ERROR) << "Deleting path " << childPath << " failed"; in deleteRecursive()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskTree.java160 String childPath = path.isEmpty() ? entry.getKey() : path + "." + entry.getKey(); in getFieldPaths() local
161 getFieldPaths(entry.getValue(), childPath, paths); in getFieldPaths() local
242 String childPath = path.isEmpty() ? entry.getKey() : path + "." + entry.getKey(); in merge() local
245 childPath, in merge() local
/frameworks/base/telephony/java/android/telephony/mbms/
DMbmsUtils.java43 String childPath = child.getCanonicalPath(); in isContainedIn() local
44 return childPath.startsWith(parentPath); in isContainedIn()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiCecLocalDeviceTv.java1336 private static boolean isParentPath(int parentPath, int childPath) { in isParentPath() argument
1340 int nibble = (childPath >> i) & 0xF; in isParentPath()
1343 return parentNibble == 0 && (childPath >> i+4) == (parentPath >> i+4); in isParentPath()
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
DVectorDrawable_Delegate.java1113 VPath_Delegate childPath = (VPath_Delegate) child; in drawGroupTree() local
1114 drawPath(currentGroup, childPath, canvasPtr, w, h, filterPtr); in drawGroupTree()