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

  /external/bluetooth/glib/tests/
convert-test.c 147 glong items_written, items_written2; local
154 result = g_utf8_to_ucs4_fast (utf8, utf8_len, &items_written);
156 g_assert (items_written == ucs4_len);
158 for (i = 0; i <= items_written; i++)
165 result = g_utf8_to_ucs4 (utf8, utf8_len, &items_read, &items_written, &error);
177 for (i = 0; i <= items_written; i++)
192 g_assert (items_written == ucs4_len);
194 for (i = 0; i <= items_written; i++)
212 g_assert (items_written == ucs4_len);
214 for (i = 0; i <= items_written; i++
236 glong items_written, items_written2; local
300 glong items_written, items_written2; local
376 glong items_written, items_written2; local
448 glong items_written, items_written2; local
516 glong items_written, items_written2; local
    [all...]
unicode-encoding.c 90 glong items_read, items_written; local
142 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, &items_written, &error);
151 items_written != ucs4_len)
159 ucs4_result = g_utf8_to_ucs4_fast (utf8, -1, &items_written);
162 items_written != ucs4_len)
168 utf8_result = g_ucs4_to_utf8 (ucs4_result, -1, &items_read, &items_written, &error);
177 items_written != strlen (utf8))
233 if (!(utf16_from_utf8 = g_utf8_to_utf16 (utf8, -1, &items_read, &items_written, &error)))
240 utf16_count (utf16_from_utf8) != items_written)
246 if (!(utf16_from_ucs4 = g_ucs4_to_utf16 (ucs4, -1, &items_read, &items_written, &error))
    [all...]
  /external/bluetooth/glib/glib/
gunicode.h 314 glong *items_written,
319 glong *items_written,
323 glong *items_written) G_GNUC_MALLOC;
327 glong *items_written,
332 glong *items_written,
337 glong *items_written,
342 glong *items_written,
gutf8.c 822 * @items_written: location to store the number of characters in the
836 glong *items_written)
916 if (items_written)
917 *items_written = i;
932 * @items_written: location to store number of characters written or %NULL.
952 glong *items_written,
996 if (items_written)
997 *items_written = n_chars;
1012 * @items_written: location to store number of bytes written or %NULL.
1033 glong *items_written,
    [all...]
  /external/srec/portable/src/
PFileWrap.c 76 size_t items_written; local
78 items_written = fwrite ( buffer, size, *count, (FILE *)self );
80 if ( items_written == ( *count ) )
83 *count = items_written;

Completed in 142 milliseconds