Home
last modified time | relevance | path

Searched refs:Balloon (Results 1 – 8 of 8) sorted by relevance

/external/crosvm/devices/src/virtio/
Dballoon.rs387 pub struct Balloon { struct
395 impl Balloon { implementation
397 pub fn new(base_features: u64, command_tube: Tube) -> Result<Balloon> { in new() argument
398 Ok(Balloon { in new()
423 impl Drop for Balloon { implementation
436 impl VirtioDevice for Balloon { implementation
/external/python/cpython2/Demo/tix/samples/
DBalloon.py48 b = Tix.Balloon(w, statusbar=status)
/external/python/cpython2/Doc/library/
Dtix.rst103 .. class:: Balloon()
105 A `Balloon
108 widget to which a Balloon widget has been bound, a small pop-up window with a
112 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl}
/external/python/cpython3/Doc/library/
Dtkinter.tix.rst91 .. class:: Balloon()
93 A `Balloon
96 widget to which a Balloon widget has been bound, a small pop-up window with a
100 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl}
/external/python/cpython2/Demo/tix/
Dtixwidgets.py120 demo.balloon = Tix.Balloon(root)
/external/python/cpython3/Lib/tkinter/
Dtix.py517 class Balloon(TixWidget): class
/external/python/cpython2/Lib/lib-tk/
DTix.py519 class Balloon(TixWidget): class
/external/crosvm/src/
Dlinux.rs763 let dev = virtio::Balloon::new(virtio::base_features(cfg.protected_vm), tube) in create_balloon_device()