Searched refs:GByteArray (Results 1 – 6 of 6) sorted by relevance
/external/bluetooth/glib/glib/ |
D | garray.h | 39 typedef struct _GByteArray GByteArray; typedef 142 GByteArray* g_byte_array_new (void); 143 GByteArray* g_byte_array_sized_new (guint reserved_size); 144 guint8* g_byte_array_free (GByteArray *array, 146 GByteArray* g_byte_array_append (GByteArray *array, 149 GByteArray* g_byte_array_prepend (GByteArray *array, 152 GByteArray* g_byte_array_set_size (GByteArray *array, 154 GByteArray* g_byte_array_remove_index (GByteArray *array, 156 GByteArray* g_byte_array_remove_index_fast (GByteArray *array, 158 GByteArray* g_byte_array_remove_range (GByteArray *array, [all …]
|
D | garray.c | 633 GByteArray* g_byte_array_new (void) in g_byte_array_new() 635 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, 0); in g_byte_array_new() 638 GByteArray* g_byte_array_sized_new (guint reserved_size) in g_byte_array_sized_new() 640 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, reserved_size); in g_byte_array_sized_new() 643 guint8* g_byte_array_free (GByteArray *array, in g_byte_array_free() 649 GByteArray* g_byte_array_append (GByteArray *array, in g_byte_array_append() 658 GByteArray* g_byte_array_prepend (GByteArray *array, in g_byte_array_prepend() 667 GByteArray* g_byte_array_set_size (GByteArray *array, in g_byte_array_set_size() 675 GByteArray* g_byte_array_remove_index (GByteArray *array, in g_byte_array_remove_index() 683 GByteArray* g_byte_array_remove_index_fast (GByteArray *array, in g_byte_array_remove_index_fast() [all …]
|
/external/bluetooth/glib/docs/reference/glib/ |
D | glib-sections.txt | 2156 GByteArray
|
/external/bluetooth/glib/tests/ |
D | testglib.c | 986 GByteArray *gbarray; in test_arrays()
|
/external/bluetooth/glib/gio/ |
D | gfile.c | 5159 GByteArray *content; in g_file_load_contents() 5228 GByteArray *content;
|
D | ChangeLog | 3216 New implementation that avoids using GByteArray
|