Home
last modified time | relevance | path

Searched defs:OomError (Results 1 – 25 of 37) sorted by relevance

12

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/descriptor_set/
Dallocator.rs64 ) -> Result<Self::Alloc, OomError>; in allocate() argument
158 ) -> Result<StandardDescriptorSetAlloc, OomError> { in allocate() argument
199 ) -> Result<Self::Alloc, OomError> { in allocate() argument
223 fn new(layout: Arc<DescriptorSetLayout>) -> Result<Self, OomError> { in new() argument
231 fn allocate(&mut self) -> Result<StandardDescriptorSetAlloc, OomError> { in allocate() argument
259 fn new(layout: &Arc<DescriptorSetLayout>, set_count: usize) -> Result<Arc<Self>, OomError> { in new() argument
324 fn new(layout: Arc<DescriptorSetLayout>) -> Result<Self, OomError> { in new() argument
338 ) -> Result<StandardDescriptorSetAlloc, OomError> { in allocate() argument
395 ) -> Result<Arc<Self>, OomError> { in new() argument
Dpool.rs60 ) -> Result<DescriptorPool, OomError> { in new() argument
289 ) -> Result<(), OomError> { in free_descriptor_sets() argument
310 pub unsafe fn reset(&self) -> Result<(), OomError> { in reset() argument
Dmod.rs457 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/pipeline/
Dcache.rs83 ) -> Result<Arc<PipelineCache>, OomError> { in with_data() argument
99 pub fn empty(device: Arc<Device>) -> Result<Arc<PipelineCache>, OomError> { in empty() argument
107 ) -> Result<Arc<PipelineCache>, OomError> { in new_impl() argument
151 ) -> Result<(), OomError> { in merge() argument
205 pub fn get_data(&self) -> Result<Vec<u8>, OomError> { in get_data() argument
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/
Dlib.rs241 pub enum OomError { enum
248 impl Error for OomError {} implementation
250 impl Display for OomError { implementation
263 impl From<VulkanError> for OomError { implementation
264 fn from(err: VulkanError) -> OomError { in from()
Dlibrary.rs223 ) -> Result<impl ExactSizeIterator<Item = LayerProperties>, OomError> { in layer_properties() argument
415 OomError(OomError), enumerator
Dquery.rs235 OomError(OomError), enumerator
434 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/sync/
Devent.rs161 pub fn signaled(&self) -> Result<bool, OomError> { in signaled() argument
175 pub fn set_raw(&mut self) -> Result<(), OomError> { in set_raw() argument
199 pub fn reset_raw(&mut self) -> Result<(), OomError> { in reset_raw() argument
271 OomError(OomError), enumerator
Dfence.rs265 pub fn is_signaled(&self) -> Result<bool, OomError> { in is_signaled() argument
1066 pub(crate) fn poll_impl(&self, cx: &mut Context<'_>) -> Poll<Result<(), OomError>> { in poll_impl() argument
1452 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/
Dallocator.rs74 ) -> Result<Self::Iter, OomError>; in allocate() argument
225 ) -> Result<Self::Iter, OomError> { in allocate() argument
288 ) -> Result<Self::Iter, OomError> { in allocate() argument
355 ) -> Result<Arc<Self>, OomError> { in new() argument
Dpool.rs188 pub unsafe fn reset(&self, release_resources: bool) -> Result<(), OomError> { in reset() argument
208 ) -> Result<impl ExactSizeIterator<Item = CommandPoolAlloc>, OomError> { in allocate_command_buffers() argument
357 OomError(OomError), enumerator
Dsys.rs57 ) -> Result<UnsafeCommandBufferBuilder, OomError> { in new() argument
194 pub fn build(self) -> Result<UnsafeCommandBuffer, OomError> { in build() argument
Dauto.rs519 OomError(OomError), enumerator
665 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/swapchain/
Ddisplay.rs59 ) -> Result<IntoIter<DisplayPlane>, OomError> { in enumerate_raw() argument
192 ) -> Result<IntoIter<Display>, OomError> { in enumerate_raw() argument
298 pub fn display_modes_raw(&self) -> Result<IntoIter<DisplayMode>, OomError> { in display_modes_raw() argument
Dswapchain.rs1112 OomError(OomError), enumerator
1395 OomError(OomError), enumerator
1772 OomError(OomError), enumerator
1865 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/device/
Dmod.rs577 ) -> Result<(), OomError> { in set_debug_utils_object_name() argument
609 pub unsafe fn wait_idle(&self) -> Result<(), OomError> { in wait_idle() argument
Dqueue.rs166 pub fn wait_idle(&mut self) -> Result<(), OomError> { in wait_idle() argument
1274 fn wait_idle(&mut self, device: &Device, handle: ash::vk::Queue) -> Result<(), OomError> { in wait_idle() argument
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/standard/builder/
Dmod.rs435 ) -> Result<Self, OomError> { in begin_unchecked() argument
607 pub unsafe fn build_unchecked(self) -> Result<PrimaryCommandBuffer<A::Alloc>, OomError> { in build_unchecked() argument
637 pub unsafe fn build_unchecked(self) -> Result<SecondaryCommandBuffer<A::Alloc>, OomError> { in build_unchecked() argument
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/image/
Dswapchain.rs48 ) -> Result<Arc<SwapchainImage>, OomError> { in from_handle() argument
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/memory/
Ddevice_memory.rs962 OomError(OomError), enumerator
1505 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/pipeline/graphics/
Dcreation_error.rs158 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/synced/
Dbuilder.rs116 ) -> Result<SyncCommandBufferBuilder, OomError> { in new() argument
776 pub fn build(mut self) -> Result<SyncCommandBuffer, OomError> { in build() argument
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/buffer/
Dview.rs334 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/render_pass/
Dcreate.rs1504 OomError(OomError), enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/sampler/
Dycbcr.rs518 OomError(OomError), enumerator

12