/system/core/libpackagelistparser/include/packagelistparser/ |
packagelistparser.h | 40 typedef struct pkg_info pkg_info; typedef in typeref:struct:pkg_info 48 struct pkg_info { struct 67 typedef bool (*pfn_on_package)(pkg_info *info, void *userdata); 71 * each entry found. Once the callback is invoked, ownership of the pkg_info pointer 84 * Frees a pkg_info structure. 88 extern void packagelist_free(pkg_info *info);
|
/system/core/libpackagelistparser/ |
packagelistparser.c | 106 struct pkg_info *pkg_info = NULL; local 117 pkg_info = calloc(1, sizeof(*pkg_info)); 118 if (!pkg_info) { 130 pkg_info->name = strdup(cur); 131 if (!pkg_info->name) { 156 pkg_info->uid = (uid_t) tmp; 176 pkg_info->debuggable = (bool) tmp; 184 pkg_info->data_dir = strdup(cur) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_check.py | 17 pkg_info, dist = self.create_dist(**metadata) 62 pkg_info, dist = self.create_dist() 80 pkg_info, dist = self.create_dist(long_description=broken_rest)
|
test_register.py | 91 pkg_info, dist = self.create_dist(**metadata)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_check.py | 17 pkg_info, dist = self.create_dist(**metadata) 62 pkg_info, dist = self.create_dist() 80 pkg_info, dist = self.create_dist(long_description=broken_rest)
|
test_register.py | 91 pkg_info, dist = self.create_dist(**metadata)
|
/external/libselinux/src/ |
android.c | 1017 static struct pkg_info *pkgTab[PKGTAB_SIZE]; 1028 static bool pkg_parse_callback(pkg_info *info, void *userdata) { 1051 struct pkg_info *info = NULL; 1058 for (info = pkgTab[hash]; info; info = (pkg_info *)info->private_data) { 1077 struct pkg_info *package_info_lookup(const char *name) 1079 struct pkg_info *info; 1085 for (info = pkgTab[hash]; info; info = (pkg_info *)info->private_data) { 1108 struct pkg_info *info = NULL; [all...] |
/system/core/logd/ |
main.cpp | 227 static bool package_list_parser_cb(pkg_info *info, void * /* userdata */) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
dist.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
dist.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dist.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dist.py | [all...] |
/system/core/sdcard/ |
sdcard.c | [all...] |