Searched refs:max_chunk (Results 1 – 9 of 9) sorted by relevance
| /openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
| H A D | connection.py | 22 def chunkify(msg, max_chunk): argument 23 if len(msg) < max_chunk - 1: 28 args = [iter(msg)] * (max_chunk - 1) 41 def __init__(self, reader, writer, timeout, max_chunk=DEFAULT_MAX_CHUNK): argument 45 self.max_chunk = max_chunk 52 for c in chunkify(json.dumps(msg, default=json_serialize), self.max_chunk):
|
| H A D | client.py | 60 self.max_chunk = DEFAULT_MAX_CHUNK 72 return StreamConnection(reader, writer, self.timeout, self.max_chunk) 89 return StreamConnection(reader, writer, self.timeout, self.max_chunk) 249 def max_chunk(self): member in Client 250 return self.client.max_chunk 252 @max_chunk.setter 253 def max_chunk(self, value): member in Client 254 self.client.max_chunk = value
|
| /openbmc/openbmc/poky/meta/recipes-devtools/bootchart2/bootchart2/ |
| H A D | 0001-collector-Allocate-space-on-heap-for-chunks.patch | 20 log ("reading %d chunks (of %d) ...\n", max_chunk, s->map.max_chunk); 21 for (i = 0; i < max_chunk; i++) {
|
| /openbmc/qemu/block/ |
| H A D | backup.c | 158 job->perf.max_workers, job->perf.max_chunk, in backup_loop() 421 if (perf->max_chunk < 0) { in backup_job_create() 469 if (perf->max_chunk && perf->max_chunk < cluster_size) { in backup_job_create() 471 "cluster size (%" PRIi64 ")", perf->max_chunk, cluster_size); in backup_job_create()
|
| H A D | block-copy.c | 55 int64_t max_chunk; member 193 int64_t max_chunk; in block_copy_task_create() local 196 max_chunk = MIN_NON_ZERO(block_copy_chunk_size(s), call_state->max_chunk); in block_copy_task_create() 199 max_chunk, &offset, &bytes)) in block_copy_task_create() 974 int max_workers, int64_t max_chunk, in block_copy_async() argument 985 .max_chunk = max_chunk, in block_copy_async()
|
| /openbmc/qemu/include/block/ |
| H A D | block-copy.h | 65 int max_workers, int64_t max_chunk,
|
| /openbmc/openbmc/poky/bitbake/lib/hashserv/ |
| H A D | server.py | 230 self.max_chunk = bb.asyncrpc.DEFAULT_MAX_CHUNK
|
| H A D | tests.py | 275 siginfo = "0" * (self.client.max_chunk * 4)
|
| /openbmc/qemu/ |
| H A D | blockdev.c | 2729 perf.max_chunk = backup->x_perf->max_chunk; in do_backup_common()
|