Home | History | Annotate | Download | only in hosts

Lines Matching refs:regexp

351         Run a command on the remote host and look for regexp
363 @param stdout_ok_regexp: regexp that should be in stdout
365 @param stdout_err_regexp: regexp that should be in stdout
367 @param stderr_ok_regexp: regexp that should be in stderr
369 @param stderr_err_regexp: regexp that should be in stderr
391 for (regexp, stream) in ((stderr_err_regexp, result.stderr),
393 if regexp and stream:
394 err_re = re.compile (regexp)
398 regexp), result)
400 for (regexp, stream) in ((stderr_ok_regexp, result.stderr),
402 if regexp and stream:
403 ok_re = re.compile (regexp)