Home | History | Annotate | Download | only in ndk

Lines Matching refs:OPTION_LAUNCH

100 OPTION_LAUNCH = None
139 global OPTION_START, OPTION_LAUNCH, OPTION_LAUNCH_LIST
274 OPTION_LAUNCH = args.launch_name
528 global OPTION_START, OPTION_LAUNCH, OPTION_LAUNCH_LIST
705 if not OPTION_LAUNCH:
706 OPTION_LAUNCH = extract_launchable(PROJECT+os.sep+MANIFEST)
707 if not len(OPTION_LAUNCH):
710 log('Found first launchable activity: %s' % (OPTION_LAUNCH[0]))
711 if not len(OPTION_LAUNCH):
715 if OPTION_LAUNCH:
716 log('Launching activity: %s/%s' % (PACKAGE_NAME,OPTION_LAUNCH[0]))
718 ['shell', 'am', 'start'] + OPTION_WAIT + ['-n', '%s/%s' % (PACKAGE_NAME,OPTION_LAUNCH[0])],
722 Use --launch-list to dump a list of valid values.''' % (OPTION_LAUNCH[0]))
733 if OPTION_LAUNCH:
807 if (OPTION_START != None or OPTION_LAUNCH != None) and len(OPTION_WAIT):