HomeSort by relevance Sort by last modified time
    Searched refs:items_read (Results 1 - 5 of 5) sorted by null

  /external/bluetooth/glib/tests/
convert-test.c 146 glong items_read, items_read2; local
165 result = g_utf8_to_ucs4 (utf8, utf8_len, &items_read, &items_written, &error);
172 g_assert (error || items_read2 == items_read);
191 g_assert (items_read == error_pos);
201 g_assert (items_read == error_pos);
211 g_assert (items_read == utf8_len);
235 glong items_read, items_read2; local
240 result = g_ucs4_to_utf8 (ucs4, ucs4_len, &items_read, &items_written, &error);
248 g_assert (error || items_read2 == items_read);
267 g_assert (items_read == error_pos)
299 glong items_read, items_read2; local
375 glong items_read, items_read2; local
447 glong items_read, items_read2; local
515 glong items_read, items_read2; local
    [all...]
unicode-encoding.c 90 glong items_read, items_written; local
126 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, NULL, &error);
128 if (!ucs4_result || items_read == strlen (utf8))
142 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, &items_written, &error);
150 items_read != strlen (utf8) ||
168 utf8_result = g_ucs4_to_utf8 (ucs4_result, -1, &items_read, &items_written, &error);
176 items_read != ucs4_len ||
233 if (!(utf16_from_utf8 = g_utf8_to_utf16 (utf8, -1, &items_read, &items_written, &error)))
239 if (items_read != strlen (utf8) ||
246 if (!(utf16_from_ucs4 = g_ucs4_to_utf16 (ucs4, -1, &items_read, &items_written, &error))
    [all...]
  /external/bluetooth/glib/glib/
gutf8.c 927 * @items_read: location to store number of bytes read, or %NULL.
951 glong *items_read,
968 if (items_read)
1000 if (items_read)
1001 *items_read = in - str;
1011 * @items_read: location to store number of characters read, or %NULL.
1025 * @error set. In that case, @items_read will be
1032 glong *items_read,
1070 if (items_read)
1071 *items_read = i
    [all...]
gunicode.h 313 glong *items_read,
318 glong *items_read,
326 glong *items_read,
331 glong *items_read,
336 glong *items_read,
341 glong *items_read,
  /external/srec/portable/src/
PFileWrap.c 44 size_t items_read; local
47 items_read = fread ( buffer, size, *count, (FILE *)self );
49 if ( items_read > 0 )
52 *count = items_read;
61 *count = items_read;

Completed in 177 milliseconds