Home | History | Annotate | Download | only in ndk

Lines Matching refs:OPTION_LAUNCH

76 OPTION_LAUNCH = None
115 global OPTION_START, OPTION_LAUNCH, OPTION_LAUNCH_LIST
247 OPTION_LAUNCH = args.launch_name
501 global OPTION_START, OPTION_LAUNCH, OPTION_LAUNCH_LIST
645 if not OPTION_LAUNCH:
646 OPTION_LAUNCH = extract_launchable(PROJECT+os.sep+MANIFEST)
647 if not len(OPTION_LAUNCH):
650 log('Found first launchable activity: %s' % (OPTION_LAUNCH[0]))
651 if not len(OPTION_LAUNCH):
655 if OPTION_LAUNCH:
656 log('Launching activity: %s/%s' % (PACKAGE_NAME,OPTION_LAUNCH[0]))
658 ['shell', 'am', 'start'] + OPTION_WAIT + ['-n', '%s/%s' % (PACKAGE_NAME,OPTION_LAUNCH[0])],
662 Use --launch-list to dump a list of valid values.''' % (OPTION_LAUNCH[0]))
673 if OPTION_LAUNCH:
729 if (OPTION_START != None or OPTION_LAUNCH != None) and len(OPTION_WAIT):