Home
last modified time | relevance | path

Searched refs:msg_cb (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Modules/_ssl/
Ddebughelpers.c25 if (ssl_obj->ctx->msg_cb == NULL) { in _PySSL_msg_callback()
71 ssl_obj->ctx->msg_cb, "Osiiiy#", in _PySSL_msg_callback()
89 if (self->msg_cb != NULL) { in _PySSLContext_get_msg_callback()
90 Py_INCREF(self->msg_cb); in _PySSLContext_get_msg_callback()
91 return self->msg_cb; in _PySSLContext_get_msg_callback()
99 Py_CLEAR(self->msg_cb); in _PySSLContext_set_msg_callback()
111 self->msg_cb = arg; in _PySSLContext_set_msg_callback()
/third_party/gstreamer/gstplugins_base/tests/examples/overlay/
Dwin32-videooverlay-playbin.c54 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
195 g_io_add_watch (msg_io_channel, G_IO_IN, msg_cb, NULL); in main()
Dwin32-videooverlay.c214 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
536 g_io_add_watch (msg_io_channel, G_IO_IN, msg_cb, NULL); in main()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dwpa_ctrl.c518 void (*msg_cb)(char *msg, size_t len)) in wpa_ctrl_request()
600 if (msg_cb) { in wpa_ctrl_request()
606 msg_cb(reply, res); in wpa_ctrl_request()
761 void (*msg_cb)(char *msg, size_t len)) in wpa_ctrl_request()
Dwpa_ctrl.h546 void (*msg_cb)(char *msg, size_t len));
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dwpa_ctrl.c519 void (*msg_cb)(char *msg, size_t len)) in wpa_ctrl_request()
601 if (msg_cb) { in wpa_ctrl_request()
607 msg_cb(reply, res); in wpa_ctrl_request()
762 void (*msg_cb)(char *msg, size_t len)) in wpa_ctrl_request()
Dwpa_ctrl.h499 void (*msg_cb)(char *msg, size_t len));
/third_party/gstreamer/gstplugins_bad/tests/examples/d3d11/
Dd3d11videosink.c164 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
282 g_io_add_watch (msg_io_channel, G_IO_IN, msg_cb, NULL); in main()
Dd3d11videosink-shared-texture-d3d9ex.cpp233 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
355 g_io_add_watch (msg_io_channel, G_IO_IN, msg_cb, NULL); in main()
Dd3d11videosink-shared-texture.cpp211 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
375 g_io_add_watch (msg_io_channel, G_IO_IN, msg_cb, NULL); in main()
/third_party/openssl/apps/
Ds_apps.h40 void msg_cb(int write_p, int version, int content_type, const void *buf,
Ds_server.c2366 SSL_set_msg_callback(con, msg_cb); in sv_body()
3032 SSL_set_msg_callback(con, msg_cb); in www_body()
3403 SSL_set_msg_callback(con, msg_cb); in rev_body()
Ds_cb.c561 void msg_cb(int write_p, int version, int content_type, const void *buf, in msg_cb() function
Ds_client.c2153 SSL_set_msg_callback(con, msg_cb); in s_client_main()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/win32/
Dgstvkwindow_win32.c112 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
167 g_source_set_callback (window_win32->msg_source, (GSourceFunc) msg_cb, NULL, in gst_vulkan_window_win32_open()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/win32/
Dgstglwindow_win32.c112 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
137 g_source_set_callback (window_win32->msg_source, (GSourceFunc) msg_cb, NULL, in gst_gl_window_win32_open()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11window_win32.cpp328 msg_cb (GIOChannel * source, GIOCondition condition, gpointer data) in msg_cb() function
356 g_source_set_callback (self->msg_source, (GSourceFunc) msg_cb, self, NULL); in gst_d3d11_window_win32_thread_func()
/third_party/python/Lib/test/
Dtest_ssl.py4503 def msg_cb(conn, direction, version, content_type, msg_type, data): function
4508 server_context._msg_callback = msg_cb
4509 client_context._msg_callback = msg_cb
4814 def msg_cb(conn, direction, version, content_type, msg_type, data): function
4818 client_context._msg_callback = msg_cb
4819 self.assertIs(client_context._msg_callback, msg_cb)
4829 def msg_cb(conn, direction, version, content_type, msg_type, data): function
4835 client_context._msg_callback = msg_cb
4858 def msg_cb(conn, direction, version, content_type, msg_type, data): function
4864 server_context._msg_callback = msg_cb
/third_party/python/Modules/
D_ssl.c293 PyObject *msg_cb; member
2116 self->ctx->msg_cb ? _PySSL_msg_callback : NULL in PySSL_set_context()
3064 self->msg_cb = NULL; in _ssl__SSLContext_impl()
3180 Py_VISIT(self->msg_cb); in context_traverse()
3189 Py_CLEAR(self->msg_cb); in context_clear()