OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pkgname
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/cmds/installd/
installd.h
88
const char *
pkgname
,
101
int install(const char *
pkgname
, int encrypted_fs_flag, uid_t uid, gid_t gid);
102
int uninstall(const char *
pkgname
, int encrypted_fs_flag);
104
int delete_user_data(const char *
pkgname
, int encrypted_fs_flag);
105
int delete_cache(const char *
pkgname
, int encrypted_fs_flag);
108
int protect(char *
pkgname
, gid_t gid);
109
int get_size(const char *
pkgname
, const char *apkpath, const char *fwdlock_apkpath,
utils.c
21
const char *
pkgname
,
27
len = strlen(
pkgname
);
35
x =
pkgname
;
41
if ((x ==
pkgname
) || (x[1] == '.') || (x[1] == 0)) {
43
LOGE("invalid package name '%s'\n",
pkgname
);
52
LOGE("invalid package name '%s'\n",
pkgname
);
62
LOGE("invalid package name '%s' should include only numbers after -\n",
pkgname
);
69
sprintf(path, "%s%s%s", prefix,
pkgname
, postfix);
commands.c
19
int install(const char *
pkgname
, int encrypted_fs_flag, uid_t uid, gid_t gid)
30
if (create_pkg_path(pkgdir, PKG_DIR_PREFIX,
pkgname
, PKG_DIR_POSTFIX))
32
if (create_pkg_path(libdir, PKG_LIB_PREFIX,
pkgname
, PKG_LIB_POSTFIX))
35
if (create_pkg_path(pkgdir, PKG_SEC_DIR_PREFIX,
pkgname
, PKG_DIR_POSTFIX))
37
if (create_pkg_path(libdir, PKG_SEC_LIB_PREFIX,
pkgname
, PKG_LIB_POSTFIX))
64
int uninstall(const char *
pkgname
, int encrypted_fs_flag)
69
if (create_pkg_path(pkgdir, PKG_DIR_PREFIX,
pkgname
, PKG_DIR_POSTFIX))
72
if (create_pkg_path(pkgdir, PKG_SEC_DIR_PREFIX,
pkgname
, PKG_DIR_POSTFIX))
104
int delete_user_data(const char *
pkgname
, int encrypted_fs_flag)
109
if (create_pkg_path(pkgdir, PKG_DIR_PREFIX,
pkgname
, PKG_DIR_POSTFIX)
[
all
...]
/system/core/run-as/
run-as.c
104
const char*
pkgname
;
local
119
pkgname
= argv[1];
120
if (get_package_info(
pkgname
, &info) < 0) {
121
panic("Package '%s' is unknown\n",
pkgname
);
127
panic("Package '%s' is not an application\n",
pkgname
);
133
panic("Package '%s' is not debuggable\n",
pkgname
);
139
panic("Package '%s' has corrupt installation\n",
pkgname
);
/external/e2fsprogs/contrib/
build-rpm
7
pkgname
=`grep Name: e2fsprogs.spec | awk '{print $2;}'`
9
builddir=${
pkgname
}-${pkgvers}
/external/webkit/WebKitTools/wx/packaging/
build-mac-installer.py
55
pkgname
= "wxWebKit-%s-wx%s-py%s" % (platform, wx_version[:3], py_version)
variable
57
tempdir = "/tmp/%s" % (
pkgname
)
139
if os.path.exists(
pkgname
+ ".pkg"):
140
shutil.rmtree(
pkgname
+ ".pkg")
142
pkg_args = ['--title ' +
pkgname
,
143
'--out %s.pkg' %
pkgname
,
Completed in 1259 milliseconds