Home
last modified time | relevance | path

Searched refs:new_with_name (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/crosvm/net_util/src/sys/linux/
H A Dtap.rs155 Self::new_with_name(TUNTAP_DEV_FORMAT, vnet_hdr, multi_vq) in new()
158 fn new_with_name(name: &[u8], vnet_hdr: bool, multi_vq: bool) -> Result<Tap> { in new_with_name() method
578 Self::new_with_name(b"", false, false) in new()
581 fn new_with_name(_: &[u8], _: bool, _: bool) -> Result<FakeTap> { in new_with_name() method
/aosp_15_r20/external/crosvm/ext2/src/
H A Dxattr.rs168 pub(crate) fn new_with_name<'a>( in new_with_name() method
266 let (entry, name) = XattrEntry::new_with_name(&name, &value, val_offset as u16)?; in from_path()
/aosp_15_r20/external/rust/android-crates-io/crates/threadpool/
DCHANGES.md32 * [Introduce `with_name`, deprecate `new_with_name`](https://github.com/rust-threadpool/rust-thread…
/aosp_15_r20/external/crosvm/net_util/src/
H A Dlib.rs157 fn new_with_name(name: &[u8], vnet_hdr: bool, multi_vq: bool) -> Result<Self>; in new_with_name() method
/aosp_15_r20/external/crosvm/e2e_tests/tests/
H A Dpci_hotplug.rs49 let tap = Tap::new_with_name(tap_name, true, false).unwrap(); in setup_tap_device()
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/
Dsession.rs36 Session::new_with_name(db, DatabaseName::Main) in new()
41 pub fn new_with_name<'conn>( in new_with_name() method
/aosp_15_r20/external/crosvm/net_util/src/slirp/sys/
H A Dwindows.rs161 fn new_with_name(_name: &[u8], _vnet_hdr: bool, _multi_vq: bool) -> Result<Self> { in new_with_name() method
/aosp_15_r20/external/crosvm/devices/src/virtio/vhost/user/device/net/sys/
H A Dlinux.rs98 let tap = T::new_with_name(name.as_bytes(), true, false).map_err(NetError::TapOpen)?; in new_from_name()
/aosp_15_r20/external/rust/android-crates-io/crates/threadpool/src/
Dlib.rs407 pub fn new_with_name(name: String, num_threads: usize) -> ThreadPool { in new_with_name() method
/aosp_15_r20/external/crosvm/src/crosvm/plugin/
H A Dmod.rs583 let tap = Tap::new_with_name(tap_name.as_bytes(), true, false) in run_config()
/aosp_15_r20/external/crosvm/src/crosvm/sys/linux/
H A Ddevice_helpers.rs959 let tap = Tap::new_with_name(tap_name.as_bytes(), true, multi_vq) in create_tap_for_net_device()