Home | History | Annotate | Download | only in virt

Lines Matching full:log_func

83     def __init__(self, address, port, log_func=None, timeout=20):
89 @param log_func: If provided, transfer stats will be passed to this
108 self._log_func = log_func
259 def __init__(self, address, port, log_func=None, timeout=20):
265 @param log_func: If provided, transfer stats will be passed to this
274 super(FileUploadClient, self).__init__(address, port, log_func, timeout)
358 def __init__(self, address, port, log_func=None, timeout=20):
364 @param log_func: If provided, transfer stats will be passed to this
373 super(FileDownloadClient, self).__init__(address, port, log_func, timeout)
457 def upload(address, port, src_pattern, dst_path, log_func=None, timeout=60,
464 client = FileUploadClient(address, port, log_func, connect_timeout)
469 def download(address, port, src_pattern, dst_path, log_func=None, timeout=60,
476 client = FileDownloadClient(address, port, log_func, connect_timeout)