HomeSort by relevance Sort by last modified time
    Searched refs:daisy_chain_wrapper (Results 1 - 3 of 3) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_daisy_chain_wrapper.py 23 from gslib.daisy_chain_wrapper import DaisyChainWrapper
86 def _WriteFromWrapperToFile(self, daisy_chain_wrapper, file_path):
90 data = daisy_chain_wrapper.read(TRANSFER_BUFFER_SIZE)
108 daisy_chain_wrapper = DaisyChainWrapper(
111 self._WriteFromWrapperToFile(daisy_chain_wrapper, upload_file)
130 daisy_chain_wrapper = DaisyChainWrapper(
133 self._WriteFromWrapperToFile(daisy_chain_wrapper, upload_file)
157 daisy_chain_wrapper = DaisyChainWrapper(
160 self._WriteFromWrapperToFile(daisy_chain_wrapper, upload_file)
199 daisy_chain_wrapper = DaisyChainWrapper
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
daisy_chain_wrapper.py 38 def __init__(self, daisy_chain_wrapper):
42 daisy_chain_wrapper: DaisyChainWrapper instance to use for buffer and
45 self.daisy_chain_wrapper = daisy_chain_wrapper
50 with self.daisy_chain_wrapper.lock:
51 if (self.daisy_chain_wrapper.bytes_buffered <
52 self.daisy_chain_wrapper.max_buffer_size):
58 with self.daisy_chain_wrapper.lock:
59 self.daisy_chain_wrapper.buffer.append(data)
60 self.daisy_chain_wrapper.bytes_buffered += data_le
    [all...]
copy_helper.py 64 from gslib.daisy_chain_wrapper import DaisyChainWrapper
    [all...]

Completed in 336 milliseconds