Lines Matching refs:component
10 1) A struct definition of the same name as the component
11 2) A set of source files that define the functions for that component
21 dtls1_bitmap.c -> DTLS1_BITMAP component
22 ssl3_buffer.c -> SSL3_BUFFER component
23 ssl3_record.c -> SSL3_RECORD component
24 rec_layer_s3.c, rec_layer_d1.c -> RECORD_LAYER component
26 The RECORD_LAYER component is a facade pattern, i.e. it provides a simplified
31 Any component can directly access its own members - they are private to that
32 component, e.g. ssl3_buffer.c can access members of the SSL3_BUFFER struct
33 without using a macro. No component can directly access the members of another
34 component, e.g. ssl3_buffer cannot reach inside the RECORD_LAYER component to
71 specific capabilities. It uses some DTLS specific RECORD_LAYER component members