Home
last modified time | relevance | path

Searched refs:lws_system_get_ops (Results 1 – 7 of 7) sorted by relevance

/third_party/libwebsockets/lib/system/ntpclient/
Dntpclient.c136 if (!lws_system_get_ops(wsi->a.context) || in callback_ntpc()
137 !lws_system_get_ops(wsi->a.context)->set_clock) { in callback_ntpc()
234 if (lws_system_get_ops(wsi->a.context) && in callback_ntpc()
235 lws_system_get_ops(wsi->a.context)->set_clock) in callback_ntpc()
236 lws_system_get_ops(wsi->a.context)->set_clock((int64_t)ns / 1000); in callback_ntpc()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-attach/
Dminimal-http-client-attach.c259 lws_system_get_ops(context)->attach(context, 0, attach_callback, in main()
/third_party/libwebsockets/include/libwebsockets/
Dlws-system.h237 lws_system_get_ops(struct lws_context *context);
/third_party/libwebsockets/lib/system/
Dsystem.c33 lws_system_get_ops(struct lws_context *context) in lws_system_get_ops() function
DREADME.md56 lws_system_get_ops(context)->attach(...);
/third_party/libwebsockets/READMEs/
DREADME.lws_system.md10 context using `lws_system_get_ops(context)` and so does not spread system
58 lws_system_get_ops(context)->attach(context, tsi, cb, state, opaque, NULL)
/third_party/libwebsockets/lib/core/
Dcontext.c1552 if (lws_system_get_ops(cx) && in lws_system_cpd_start()
1553 lws_system_get_ops(cx)->captive_portal_detect_request) in lws_system_cpd_start()
1554 return lws_system_get_ops(cx)->captive_portal_detect_request(cx); in lws_system_cpd_start()