OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dex_path
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/cmds/installd/
commands.c
339
char
dex_path
[PKG_PATH_MAX];
local
342
if (create_cache_path(
dex_path
, path)) return -1;
344
ALOGV("unlink %s\n",
dex_path
);
345
if (unlink(
dex_path
) < 0) {
346
ALOGE("Couldn't unlink %s: %s\n",
dex_path
, strerror(errno));
567
char
dex_path
[PKG_PATH_MAX];
local
582
strcpy(
dex_path
, apk_path);
583
end = strrchr(
dex_path
, '.');
586
if (stat(
dex_path
, &dex_stat) == 0) {
591
if (create_cache_path(
dex_path
, apk_path))
[
all
...]
Completed in 40 milliseconds