Lines Matching +full:- +full:- +full:passphrase
2 # Use of this source code is governed by a BSD-style license that can be
14 _RUN_BACKGROUND_TEMPLATE = '( %(cmd)s ) </dev/null >/dev/null 2>&1 & echo -n $!'
18 while test ${to} -ne 0; do \
19 test $(ps %(pid)d | wc -l) -gt 1 || break; \
21 to=$((to - 1)); \
23 test ${to} -ne 0 -o $(ps %(pid)d | wc -l) -eq 1 \
39 def wait_for_process(host, pid, timeout=-1):
53 def connect_to_ssid(host, ssid, passphrase): argument
59 @param passphrase: A string representing the passphrase to the ssid.
75 'service weaved \/system\/bin\/weaved --disable_privet/\' '
76 '-i /system/etc/init/weaved.rc')
84 wifi_cmd = ('shill_setup_wifi --ssid=%s '
85 '--wait-for-online-seconds=%i' % (ssid, 300))
86 if passphrase:
87 wifi_cmd += ' --passphrase=%s' % passphrase
95 '--disable_privet/service weaved \/system\/bin\/weaved/\' '
96 '-i /system/etc/init/weaved.rc')