/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/ |
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,
|
gutf8.c | 924 * @items_read: location to store number of bytes read, or %NULL. 948 glong *items_read, 965 if (items_read) 997 if (items_read) 998 *items_read = in - str; 1008 * @items_read: location to store number of characters read, or %NULL. 1022 * @error set. In that case, @items_read will be 1029 glong *items_read, 1067 if (items_read) 1068 *items_read = i [all...] |
/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;
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
unicode.sgml | 795 @items_read: 808 @items_read: 832 @items_read: 845 @items_read: 858 @items_read: 871 @items_read:
|
/external/bluetooth/glib/ |
ChangeLog.pre-2-10 | 380 * tests/convert-test.c: Don't test items_read and [all...] |