Searched defs:leaf (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/include/utils/
H A DString8.h193 * If leaf is a fully qualified path (i.e. starts with '/', it
196 String8& appendPath(const char* leaf);
197 String8& appendPath(const String8& leaf) { return appendPath(leaf.string()); } argument
202 String8 appendPathCopy(const char* leaf) const
203 { String8 p(*this); p.appendPath(leaf); return p; }
204 String8 appendPathCopy(const String8& leaf) const { return appendPathCopy(leaf.string()); }
/frameworks/base/cmds/installd/
H A Dutils.c140 const char* leaf,
143 if ((android_data_dir.len + strlen(PRIMARY_USER_PREFIX) + strlen(pkgname) + strlen(leaf) + 1)
148 sprintf(path, "%s%s%s/%s", android_data_dir.path, PRIMARY_USER_PREFIX, pkgname, leaf);
138 create_move_path(char path[PKG_PATH_MAX], const char* pkgname, const char* leaf, uid_t persona) argument
/frameworks/base/core/java/android/content/
H A DContentService.java612 // If this is the leaf node add the observer
670 private void collectMyObserversLocked(boolean leaf, IContentObserver observer, argument
684 if (leaf || (!leaf && entry.notifyForDescendents)) {
695 // This is the leaf node, notify all observers
/frameworks/base/libs/utils/
H A DBackupHelpers.cpp657 String8 leaf = fullname.getPathLeaf(); local
659 snprintf(paxHeader, 100, "PaxHeader/%s", leaf.string());
/frameworks/base/tools/aapt/
H A DAaptAssets.h230 AaptGroup(const String8& leaf, const String8& path) argument
231 : mLeaf(leaf), mPath(path) { }
263 AaptDir(const String8& leaf, const String8& path) argument
264 : mLeaf(leaf), mPath(path) { }
H A DResource.cpp48 static String8 parseResourceName(const String8& leaf) argument
50 const char* firstDot = strchr(leaf.string(), '.');
51 const char* str = leaf.string();
119 String8 leaf(group->getLeaf());
120 mLeafName = String8(leaf);
133 mPath.appendPath(leaf);
134 mBaseName = parseResourceName(leaf);
363 NOISY(printf("Creating new resource type set for leaf %s with group %s (%p)\n",
371 NOISY(printf("Adding to resource type set for leaf %s group %s (%p)\n",
376 NOISY(printf("Extending to resource type set for leaf
[all...]

Completed in 937 milliseconds