Searched refs:is_readable (Results 1 – 19 of 19) sorted by relevance
/third_party/boost/libs/iterator/doc/ |
D | issues.rst | 76 2. Change the ``is_readable`` specification to be: 77 ``is_readable<X>::type`` is ``true_type`` if the 80 otherwise. Also, ``is_readable`` is required to satisfy 84 Remove the requirement for support of the ``is_readable`` trait from 129 2. We discovered that the ``is_readable`` trait can be implemented 131 Therefore we remove the requirement for ``is_readable`` from the 133 ``is_readable`` so that it works for any iterator type. 139 ``is_readable`` no longer in need of special hints,
|
/third_party/glib/glib/ |
D | giounix.c | 427 channel->is_readable = TRUE; in g_io_unix_get_flags() 431 channel->is_readable = FALSE; in g_io_unix_get_flags() 435 channel->is_readable = TRUE; in g_io_unix_get_flags() 556 channel->is_readable = TRUE; in g_io_channel_new_file() 561 channel->is_readable = FALSE; in g_io_channel_new_file() 567 channel->is_readable = TRUE; in g_io_channel_new_file()
|
D | giochannel.c | 466 channel->is_readable = FALSE; in g_io_channel_close() 526 channel->is_readable = FALSE; in g_io_channel_shutdown() 1015 if (channel->is_readable) in g_io_channel_get_flags() 1366 if (channel->is_readable) in g_io_channel_set_encoding() 1672 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR); in g_io_channel_read_line() 1726 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR); in g_io_channel_read_line_string() 1939 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR); in g_io_channel_read_to_end() 2023 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR); in g_io_channel_read_chars() 2135 g_return_val_if_fail (channel->is_readable, G_IO_STATUS_ERROR); in g_io_channel_read_unichar()
|
D | giowin32.c | 848 else if (watch->channel->is_readable) in g_io_win32_check() 1745 channel->is_readable = FALSE; in g_io_channel_new_file() 1790 channel->is_readable = in g_io_win32_fd_get_flags_internal() 1798 channel->is_readable = in g_io_win32_fd_get_flags_internal() 1835 channel->is_readable = PeekConsoleInput (handle, &record, 1, &count); in g_io_win32_console_get_flags_internal() 1990 channel->is_readable = IsWindow (win32_channel->hwnd); in g_io_channel_win32_new_messages() 2114 channel->is_readable = TRUE; in g_io_channel_win32_new_socket()
|
D | giochannel.h | 120 guint is_readable : 1; /* Cached GIOFlag */ member
|
/third_party/libsoup/tests/ |
D | chunk-io-test.c | 39 gboolean is_readable; member 82 return ((SlowInputStream *)stream)->is_readable; in slow_input_stream_is_readable() 91 if (((SlowInputStream *)stream)->is_readable) { in slow_input_stream_read_nonblocking() 92 ((SlowInputStream *)stream)->is_readable = FALSE; in slow_input_stream_read_nonblocking() 108 ((SlowInputStream *)stream)->is_readable = TRUE; in slow_input_stream_create_source() 123 pollable_interface->is_readable = slow_input_stream_is_readable; in slow_pollable_input_stream_init()
|
/third_party/glib/gio/ |
D | gpollableinputstream.h | 73 gboolean (*is_readable) (GPollableInputStream *stream); member
|
D | gpollableinputstream.c | 111 return G_POLLABLE_INPUT_STREAM_GET_INTERFACE (stream)->is_readable (stream); in g_pollable_input_stream_is_readable()
|
D | gsocketinputstream.c | 210 iface->is_readable = g_socket_input_stream_pollable_is_readable; in g_socket_input_stream_pollable_iface_init()
|
D | gunixinputstream.c | 163 iface->is_readable = g_unix_input_stream_pollable_is_readable; in g_unix_input_stream_pollable_iface_init()
|
D | gmemoryinputstream.c | 158 iface->is_readable = g_memory_input_stream_is_readable; in g_memory_input_stream_pollable_iface_init()
|
D | gconverterinputstream.c | 133 iface->is_readable = g_converter_input_stream_is_readable; in g_converter_input_stream_pollable_iface_init()
|
/third_party/glib/gio/tests/ |
D | converter-stream.c | 967 gboolean is_readable; in test_converter_pollable() local 1030 is_readable = g_pollable_input_stream_is_readable (pollable_in); in test_converter_pollable() 1036 if (!is_readable) in test_converter_pollable()
|
/third_party/libsoup/libsoup/ |
D | soup-filter-input-stream.c | 160 pollable_interface->is_readable = soup_filter_input_stream_is_readable; in soup_filter_input_stream_pollable_init()
|
D | soup-content-sniffer-stream.c | 332 pollable_interface->is_readable = soup_content_sniffer_stream_is_readable; in soup_content_sniffer_stream_pollable_init()
|
D | soup-multipart-input-stream.c | 315 pollable_interface->is_readable = soup_multipart_input_stream_is_readable; in soup_multipart_input_stream_pollable_init()
|
D | soup-body-input-stream.c | 409 pollable_interface->is_readable = soup_body_input_stream_is_readable; in soup_body_input_stream_pollable_init()
|
/third_party/python/Tools/c-analyzer/c_common/ |
D | fsutil.py | 310 def is_readable(file, *, user=None, check=False): function
|
/third_party/PyYAML/yaml/ |
D | _yaml.pyx | 260 cdef is_readable 264 is_readable = 1 268 is_readable = 0 270 if is_readable:
|