/third_party/libwebsockets/lib/system/ |
D | system.c | 35 return context->system_ops; in lws_system_get_ops() 229 assert(pt->context->system_ops->attach); in lws_system_do_attach() 230 if (!pt->context->system_ops->attach) { in lws_system_do_attach() 241 if (pt->context->system_ops->attach(pt->context, pt->tid, NULL, in lws_system_do_attach()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-proxy/ |
D | main.c | 239 static const lws_system_ops_t system_ops = { variable 291 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-perf/ |
D | minimal-secure-streams.c | 415 static const lws_system_ops_t system_ops = { variable 501 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-blob/ |
D | minimal-secure-streams.c | 474 static const lws_system_ops_t system_ops = { variable 578 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-testsfail/ |
D | minimal-secure-streams-testsfail.c | 793 static const lws_system_ops_t system_ops = { variable 865 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams/ |
D | minimal-secure-streams.c | 519 static const lws_system_ops_t system_ops = { variable 618 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-jit-trust/ |
D | minimal-http-client.c | 403 static lws_system_ops_t system_ops = { variable 437 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/lib/tls/ |
D | tls-jit-trust.c | 185 if (!wsi->a.context->system_ops || in lws_tls_jit_trust_sort_kids() 186 !wsi->a.context->system_ops->jit_trust_query) in lws_tls_jit_trust_sort_kids() 225 wsi->a.context->system_ops->jit_trust_query(wsi->a.context, in lws_tls_jit_trust_sort_kids() 306 cx->system_ops->jit_trust_query(cx, jci.skids[n].kid, in lws_tls_jit_trust_vhost_bind()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-stress/ |
D | minimal-secure-streams.c | 537 static const lws_system_ops_t system_ops = { variable 678 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/lib/system/metrics/ |
D | metrics.c | 166 if (!ctx->system_ops || !ctx->system_ops->metric_report) in lws_metrics_periodic_cb() 688 if (!ctx->system_ops || !ctx->system_ops->metric_report) in lws_metrics_dump_cb() 695 n = ctx->system_ops->metric_report(pub); in lws_metrics_dump_cb()
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/ |
D | minimal-http-client-multi.c | 372 static const lws_system_ops_t system_ops = { variable 570 info.system_ops = &system_ops; in main()
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-attach/ |
D | minimal-http-client-attach.c | 188 info.system_ops = &ops; in lws_create()
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-captive-portal/ |
D | minimal-http-client-captive-portal.c | 297 info.system_ops = &ops; in main()
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-context-vhost.h | 764 const lws_system_ops_t *system_ops; member
|
/third_party/libwebsockets/lib/core/ |
D | private-lib-core.h | 645 const lws_system_ops_t *system_ops; member
|
D | context.c | 655 context->system_ops = info->system_ops; in lws_create_context()
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_system.md | 7 `lws_system` allows you to set a `system_ops` struct at context creation time,
|
D | README.lws_metrics.md | 119 static const lws_system_ops_t system_ops = {
|