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

  /external/bluetooth/glib/glib/
garray.h 39 typedef struct _GByteArray GByteArray;
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
    [all...]
garray.c 633 GByteArray* g_byte_array_new (void)
635 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, 0);
638 GByteArray* g_byte_array_sized_new (guint reserved_size)
640 return (GByteArray*) g_array_sized_new (FALSE, FALSE, 1, reserved_size);
643 guint8* g_byte_array_free (GByteArray *array,
649 GByteArray* g_byte_array_append (GByteArray *array,
658 GByteArray* g_byte_array_prepend (GByteArray *array,
667 GByteArray* g_byte_array_set_size (GByteArray *array
    [all...]
  /external/bluetooth/glib/tests/
testglib.c 986 GByteArray *gbarray;
    [all...]
  /external/bluetooth/glib/gio/
gfile.c     [all...]

Completed in 257 milliseconds