Home
last modified time | relevance | path

Searched defs:Library (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/pkg-config/src/
Dlib.rs89 pub struct Library { struct
92 /// Library search paths specified by -L argument
94 /// Library file paths specified without -l argument
108 /// Ensure that this struct can only be created via its private `[Library::new]` constructor. argument
110 _priv: (),
248 pub fn find_library(name: &str) -> Result<Library, String> { in find_library()
253 pub fn probe_library(name: &str) -> Result<Library, Error> { in probe_library()
377 pub fn find(&self, name: &str) -> Result<Library, String> { in find()
385 pub fn probe(&self, name: &str) -> Result<Library, Error> { in probe()
562 impl Library { impl
/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/pkg-config/tests/
Dtest.rs33 fn find(name: &str) -> Result<pkg_config::Library, Error> { in find()