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

  /external/bluetooth/glib/glib/
Android.mk 27 garray.c \
  /external/bluetooth/glib/
glib.h 33 #include <glib/garray.h>
  /external/bluetooth/glib/tests/
testglib.c 988 GArray *garray; local
1011 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1013 g_array_append_val (garray, i);
1015 if (g_array_index (garray, gint, i) != i)
1016 g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), i);
1017 g_array_free (garray, TRUE);
1019 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1021 g_array_prepend_val (garray, i);
1023 if (g_array_index (garray, gint, i) != (100 - i - 1)
    [all...]

Completed in 335 milliseconds