Searched defs:CIProfileEvents (Results 1 – 2 of 2) sorted by relevance
29 struct CIProfileEvents { struct30 CIProfileEvents* (*clone)(CIProfileEvents* cb); argument31 void (*destruct)(CIProfileEvents* cb); argument32 uint32_t* profileEvents;33 size_t numOfProfileEvents;
46 pub struct CIProfileEvents { struct48 pub clone: Option<CIProfileEventsClone>, argument50 pub destruct: Option<CIProfileEventsDestruct>, argument52 pub profile_events: *mut u32,54 pub num_of_profile_events: usize,183 pub fn UnsubscribeProfileEvents(profile_events: *const CIProfileEvents, in UnsubscribeProfileEvents()