OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srtp_stream_ctx_t
(Results
1 - 3
of
3
) sorted by null
/external/srtp/include/
srtp_priv.h
216
typedef struct
srtp_stream_ctx_t
{
struct
230
struct
srtp_stream_ctx_t
*next; /* linked list of streams */
231
}
srtp_stream_ctx_t
;
typedef in typeref:struct:srtp_stream_ctx_t
239
srtp_stream_ctx_t
*stream_list; /* linked list of streams */
240
srtp_stream_ctx_t
*stream_template; /* act as template for other streams */
srtp.h
264
typedef struct
srtp_stream_ctx_t
*srtp_stream_t;
/external/srtp/srtp/
srtp.c
78
srtp_stream_alloc(
srtp_stream_ctx_t
**str_ptr,
80
srtp_stream_ctx_t
*str;
92
str = (
srtp_stream_ctx_t
*) crypto_alloc(sizeof(
srtp_stream_ctx_t
));
166
srtp_stream_dealloc(
srtp_stream_ctx_t
*stream,
167
srtp_stream_ctx_t
*stream_template) {
233
srtp_stream_clone(const
srtp_stream_ctx_t
*stream_template,
235
srtp_stream_ctx_t
**str_ptr) {
237
srtp_stream_ctx_t
*str;
242
str = (
srtp_stream_ctx_t
*) crypto_alloc(sizeof(srtp_stream_ctx_t))
[
all
...]
Completed in 43 milliseconds