Home
last modified time | relevance | path

Searched refs:queues_per_thread (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/vhost-user-backend/src/
Dbackend.rs90 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() method
171 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() method
243 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() function
244 self.deref().queues_per_thread() in queues_per_thread()
308 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() function
309 self.lock().unwrap().queues_per_thread() in queues_per_thread()
374 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() function
375 self.read().unwrap().queues_per_thread() in queues_per_thread()
464 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() method
498 assert_eq!(backend.queues_per_thread(), [1, 1]); in test_new_mock_backend_mutex()
[all …]
Dhandler.rs86 queues_per_thread: Vec<u64>, field
103 let queues_per_thread = backend.queues_per_thread(); in new() localVariable
114 for (thread_id, queues_mask) in queues_per_thread.iter().enumerate() { in new()
145 queues_per_thread, in new()
194 for (thread_index, queues_mask) in self.queues_per_thread.iter().enumerate() { in initialize_vring()
397 for (thread_index, queues_mask) in self.queues_per_thread.iter().enumerate() { in get_vring_base()
/aosp_15_r20/external/rust/crates/vhost-device-vsock/src/
Dvhu_vsock.rs233 queues_per_thread: Vec<u64>, field
246 let queues_per_thread = vec![QUEUE_MASK]; in new() localVariable
253 queues_per_thread, in new()
358 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() method
359 self.queues_per_thread.clone() in queues_per_thread()
431 let queues_per_thread = backend.queues_per_thread(); in test_vsock_backend() localVariable
432 assert_eq!(queues_per_thread.len(), 1); in test_vsock_backend()
433 assert_eq!(queues_per_thread[0], 0b11); in test_vsock_backend()
/aosp_15_r20/external/rust/android-crates-io/crates/vhost-user-backend/tests/
Dvhost-user-server.rs86 fn queues_per_thread(&self) -> Vec<u64> { in queues_per_thread() method