Home
last modified time | relevance | path

Searched refs:max_count (Results 1 – 5 of 5) sorted by relevance

/qemu/scripts/
H A Danalyse-9p-simpletrace.py135 def v9fs_read(self, tag, id, fid, off, max_count): argument
136 … print("TREAD (tag =", tag, ", fid =", fid, ", off =", off, ", max_count =", max_count, ")")
141 def v9fs_readdir(self, tag, id, fid, offset, max_count): argument
142 …rint("TREADDIR (tag =", tag, ", fid =", fid, ", offset =", offset, ", max_count =", max_count, ")")
/qemu/hw/9pfs/
H A Dtrace-events22 … uint8_t id, int32_t fid, uint64_t off, uint32_t max_count) "tag %d id %d fid %d off %"PRIu64" max…
24 …8_t id, int32_t fid, uint64_t offset, uint32_t max_count) "tag %d id %d fid %d offset %"PRIu64" ma…
H A D9p.c2307 uint64_t off, uint32_t max_count) in v9fs_xattr_read() argument
2319 if (read_count > max_count) { in v9fs_xattr_read()
2320 read_count = max_count; in v9fs_xattr_read()
2342 uint32_t max_count) in v9fs_do_readdir_with_stat() argument
2379 if ((count + v9stat.size + 2) > max_count) { in v9fs_do_readdir_with_stat()
2422 uint32_t max_count; in v9fs_read() local
2427 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &max_count); in v9fs_read()
2431 trace_v9fs_read(pdu->tag, pdu->id, fid, off, max_count); in v9fs_read()
2450 count = v9fs_do_readdir_with_stat(pdu, fidp, max_count); in v9fs_read()
2465 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count, false); in v9fs_read()
[all …]
/qemu/tests/unit/
H A Dtest-qobject-output-visitor.c273 int i, max_count = 1024; in test_visitor_out_list_qapi_free() local
275 for (i = 0; i < max_count; i++) { in test_visitor_out_list_qapi_free()
/qemu/disas/
H A Dsparc.c2640 int min_count = num_opcodes, max_count = 0; in build_hash_table()
2647 if (hash_count[i] > max_count) in build_hash_table()
2648 max_count = hash_count[i]; in build_hash_table()
2653 min_count, max_count, (double) total / HASH_SIZE); in build_hash_table()