Home
last modified time | relevance | path

Searched defs:MarkerTypeFunctions (Results 1 – 4 of 4) sorted by relevance

/dports/www/firefox/firefox-99.0/mozglue/baseprofiler/public/
H A DBaseProfilerMarkersDetail.h49 struct MarkerTypeFunctions { struct
50 MarkerDataDeserializer mMarkerDataDeserializer = nullptr;
51 MarkerTypeNameFunction mMarkerTypeNameFunction = nullptr;
52 MarkerSchemaFunction mMarkerSchemaFunction = nullptr;
/dports/www/firefox-esr/firefox-91.8.0/mozglue/baseprofiler/public/
H A DBaseProfilerMarkersDetail.h57 struct MarkerTypeFunctions { struct
58 MarkerDataDeserializer mMarkerDataDeserializer = nullptr;
59 MarkerTypeNameFunction mMarkerTypeNameFunction = nullptr;
60 MarkerSchemaFunction mMarkerSchemaFunction = nullptr;
/dports/mail/thunderbird/thunderbird-91.8.0/mozglue/baseprofiler/public/
H A DBaseProfilerMarkersDetail.h57 struct MarkerTypeFunctions { struct
58 MarkerDataDeserializer mMarkerDataDeserializer = nullptr;
59 MarkerTypeNameFunction mMarkerTypeNameFunction = nullptr;
60 MarkerSchemaFunction mMarkerSchemaFunction = nullptr;
/dports/www/firefox/firefox-99.0/tools/profiler/rust-api/src/marker/
H A Ddeserializer_tags_state.rs34 pub struct MarkerTypeFunctions { struct
36 pub marker_type_name_fn: fn() -> &'static str,
40 pub marker_type_display_fn: fn() -> MarkerSchema,
43 pub transmute_and_stream_fn:
103 pub fn get<'a>(&'a self, deserializer_tag: u8) -> &'a MarkerTypeFunctions { in get()