Home
last modified time | relevance | path

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

/third_party/glib/gio/
Dgdatainputstream.c1081 gsize stop_chars_len_unsigned; in g_data_input_stream_read_async() local
1086 stop_chars_len_unsigned = strlen (stop_chars); in g_data_input_stream_read_async()
1088 stop_chars_len_unsigned = (gsize) stop_chars_len; in g_data_input_stream_read_async()
1090 data->stop_chars = g_memdup2 (stop_chars, stop_chars_len_unsigned); in g_data_input_stream_read_async()
1091 data->stop_chars_len = stop_chars_len_unsigned; in g_data_input_stream_read_async()
1346 gsize stop_chars_len_unsigned; in g_data_input_stream_read_upto() local
1351 stop_chars_len_unsigned = strlen (stop_chars); in g_data_input_stream_read_upto()
1353 stop_chars_len_unsigned = (gsize) stop_chars_len; in g_data_input_stream_read_upto()
1359 while ((found_pos = scan_for_chars (stream, &checked, stop_chars, stop_chars_len_unsigned)) == -1) in g_data_input_stream_read_upto()