OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:apk_path
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/build/android/pylib/utils/
apk_helper.py
12
def GetPackageName(
apk_path
):
15
['aapt', 'dump', 'badging',
apk_path
]).split('\n')
21
raise Exception('Failed to determine package name of %s' %
apk_path
)
/external/chromium_org/build/android/pylib/instrumentation/
test_package.py
15
def __init__(self,
apk_path
, jar_path):
18
if not os.path.exists(
apk_path
):
19
raise Exception('%s not found, please build it' %
apk_path
)
20
self._apk_path =
apk_path
21
self._apk_name = os.path.splitext(os.path.basename(
apk_path
))[0]
/external/chromium_org/build/android/pylib/linker/
test_runner.py
69
apk_path
= os.path.join(
72
if not os.path.exists(
apk_path
):
73
raise Exception('%s not found, please build it' %
apk_path
)
75
package_name = apk_helper.GetPackageName(
apk_path
)
76
self.adb.ManagedInstall(
apk_path
, package_name)
/external/chromium_org/build/android/gyp/
apk_install.py
78
apk_package = apk_helper.GetPackageName(options.
apk_path
)
80
metadata_path = '%s.%s.device.time.stamp' % (options.
apk_path
, serial_number)
87
device.Install(options.
apk_path
, reinstall=True)
92
record_path = '%s.%s.md5.stamp' % (options.
apk_path
, serial_number)
96
input_paths=[options.
apk_path
],
/external/chromium_org/build/android/
adb_install_apk.py
46
apk_path
, apk_package, keep_data, device = args
48
apk_path
, keep_data, apk_package)
69
# Send a tuple (
apk_path
, apk_package, device) per device.
/frameworks/native/cmds/installd/
commands.c
621
static int wait_dexopt(pid_t pid, const char*
apk_path
)
644
ALOGV("DexInv: --- END '%s' (success) ---\n",
apk_path
);
648
apk_path
, status);
653
int dexopt(const char *
apk_path
, uid_t uid, int is_public)
663
if (strlen(
apk_path
) >= (PKG_PATH_MAX - 8)) {
677
sprintf(out_path, "%s%s",
apk_path
, ".odex");
682
if (create_cache_path(out_path,
apk_path
)) {
687
stat(
apk_path
, &apk_stat);
689
zip_fd = open(
apk_path
, O_RDONLY, 0);
691
ALOGE("installd cannot open '%s' for input during dexopt\n",
apk_path
);
[
all
...]
installd.h
207
int dexopt(const char *
apk_path
, uid_t uid, int is_public);
/external/chromium_org/tools/telemetry/telemetry/core/backends/
adb_commands.py
129
def Install(self,
apk_path
):
133
apk_path
: Path to .apk file to install.
143
apk_package_name = apk_helper.GetPackageName(
apk_path
)
144
return self._adb.ManagedInstall(
apk_path
, package_name=apk_package_name)
/external/chromium_org/build/android/pylib/device/
adb_wrapper.py
274
def Install(self,
apk_path
, forward_lock=False, reinstall=False,
279
apk_path
: Host path to the APK file.
286
_VerifyLocalFileExists(
apk_path
)
294
cmd.append(
apk_path
)
/development/testrunner/
adb_interface.py
134
def Install(self,
apk_path
):
138
apk_path
: file path to apk file on host
143
return self.SendCommand("install -r %s" %
apk_path
)
/external/chromium_org/build/android/pylib/
android_commands.py
434
def ManagedInstall(self,
apk_path
, keep_data=False, package_name=None,
442
apk_path
: Path to .apk file to install.
452
not self.GetFilesChanged(
apk_path
, installed_apk_path,
464
install_status = self.Install(
apk_path
, reinstall=keep_data)
471
logging.info('Timeout on installing %s on device %s',
apk_path
,
[
all
...]
Completed in 2838 milliseconds