HomeSort by relevance Sort by last modified time
    Searched full:glist (Results 1 - 25 of 166) sorted by null

1 2 3 4 5 6 7

  /external/bluetooth/glib/glib/
glist.h 38 typedef struct _GList GList;
43 GList *next;
44 GList *prev;
49 GList* g_list_alloc (void) G_GNUC_WARN_UNUSED_RESULT;
50 void g_list_free (GList *list);
51 void g_list_free_1 (GList *list);
53 GList* g_list_append (GList *list,
55 GList* g_list_prepend (GList *list
    [all...]
glist.c 40 #define _g_list_alloc() g_slice_new (GList)
41 #define _g_list_alloc0() g_slice_new0 (GList)
42 #define _g_list_free1(list) g_slice_free (GList, list)
44 GList*
52 * @list: a #GList
54 * Frees all of the memory used by a #GList.
63 g_list_free (GList *list)
65 g_slice_free_chain (GList, list, next);
70 * @list: a #GList element
72 * Frees one #GList element
    [all...]
gqueue.h 34 #include <glib/glist.h>
42 GList *head;
43 GList *tail;
62 GList * g_queue_find (GQueue *queue,
64 GList * g_queue_find_custom (GQueue *queue,
93 GList *sibling,
96 GList *sibling,
104 GList *link_);
106 GList *link_);
109 GList *link_)
    [all...]
gcompletion.h 34 #include <glib/glist.h>
51 GList* items;
55 GList* cache;
61 GList* items);
63 GList* items);
65 GList* g_completion_complete (GCompletion* cmp,
68 GList* g_completion_complete_utf8 (GCompletion *cmp,
Android.mk 25 glist.c \
ghash.h 35 #include <glib/glist.h>
98 GList * g_hash_table_get_keys (GHashTable *hash_table);
99 GList * g_hash_table_get_values (GHashTable *hash_table);
  /external/bluetooth/glib/gio/
gunixvolumemonitor.c 47 GList *last_mountpoints;
48 GList *last_mounts;
50 GList *volumes;
51 GList *mounts;
110 static GList *
114 GList *l;
124 static GList *
128 GList *l;
138 static GList *
258 diff_sorted_lists (GList *list1,
    [all...]
gappinfo.h 101 GList *filenames,
107 GList *uris,
146 GList *files,
152 GList *uris,
173 GList * g_app_info_get_all (void);
174 GList * g_app_info_get_all_for_type (const char *content_type);
206 GList *files);
209 GList *files);
225 GList *files);
228 GList *files)
    [all...]
gvolumemonitor.h 101 GList * (* get_connected_drives) (GVolumeMonitor *volume_monitor);
102 GList * (* get_volumes) (GVolumeMonitor *volume_monitor);
103 GList * (* get_mounts) (GVolumeMonitor *volume_monitor);
134 GList * g_volume_monitor_get_connected_drives (GVolumeMonitor *volume_monitor);
135 GList * g_volume_monitor_get_volumes (GVolumeMonitor *volume_monitor);
136 GList * g_volume_monitor_get_mounts (GVolumeMonitor *volume_monitor);
gwin32volumemonitor.c 45 GList *volumes;
46 GList *mounts;
127 static GList *
133 GList *list = NULL;
155 static GList *
159 GList *l = NULL;
167 static GList *
174 GList *list = NULL;
184 * does nothing, the returned GList is always NULL. But what was
gwin32appinfo.c 253 GList *files,
263 GList *l;
330 GList *uris,
395 GList **prognames)
450 GList **progids)
475 GList **progids,
476 GList **prognames)
497 GList *list)
508 GList *
511 GList *progids = NULL
    [all...]
gemblemedicon.c 57 GList *emblems;
150 * Returns: a #GList of #GEmblem <!-- -->s that is owned by @emblemed
155 GList *
169 * Adds @emblem to the #GList of #GEmblem <!-- -->s.
188 GList *list;
219 GList *list1, *list2;
248 GList *l;
gunionvolumemonitor.c 46 GList *monitors;
84 GList *l;
102 static GList *
107 GList *res;
108 GList *l;
128 static GList *
133 GList *res;
134 GList *l;
154 static GList *
159 GList *res
    [all...]
gvolumemonitor.c 267 * Returns: a #GList of connected #GDrive objects.
269 GList *
290 * Returns: a #GList of #GVolume objects.
292 GList *
313 * Returns: a #GList of #GMount objects.
315 GList *
  /external/bluetooth/glib/tests/
list-test.c 31 * glist sort tests
36 GList *list = NULL;
62 GList *list = NULL;
88 GList *list = NULL;
113 GList *list = NULL;
141 GList *list = NULL;
142 GList *st;
165 GList *list = NULL;
166 GList *st;
sequence-test.c 127 GList *list;
186 GList **link = user_data;
236 GList *list;
286 queue_link_index (SequenceInfo *seq, GList *link)
298 GList **begin_link,
299 GList **end_link)
341 GList **link)
358 GList *list;
376 queue_insert_before (SequenceInfo *seq, GList *link, gpointer data)
443 GList *link = seq->queue->head
    [all...]
  /dalvik/vm/compiler/
Utility.c 100 void dvmInitGrowableList(GrowableList *gList, size_t initLength)
102 gList->numAllocated = initLength;
103 gList->numUsed = 0;
104 gList->elemList = (void **) dvmCompilerNew(sizeof(void *) * initLength,
109 static void expandGrowableList(GrowableList *gList)
111 int newLength = gList->numAllocated;
118 memcpy(newArray, gList->elemList, sizeof(void *) * gList->numAllocated);
119 gList->numAllocated = newLength;
120 gList->elemList = newArray
    [all...]
CompilerUtility.h 49 void dvmInitGrowableList(GrowableList *gList, size_t initLength);
50 void dvmInsertGrowableList(GrowableList *gList, void *elem);
  /external/bluetooth/glib/docs/reference/glib/tmpl/
linked_lists_double.sgml 10 The #GList structure and its associated functions provide a standard
33 Note that most of the #GList functions expect to be passed a pointer to
38 There is no function to create a #GList. %NULL is considered to be the empty
39 list so you simply set a #GList* to %NULL.
71 <!-- ##### STRUCT GList ##### -->
73 The #GList struct is used for each element in a doubly-linked list.
185 Allocates space for one #GList element.
190 @Returns: a pointer to the newly-allocated #GList element.
347 A convenience macro to gets the previous element in a #GList.
350 @list: an element in a #GList
    [all...]
allocators.sgml 5 deprecated way to allocate chunks of memory for GList, GSList and GNode
12 small pieces of memory for use with the #GList, #GSList and #GNode data
  /external/bluetooth/glib/gio/fen/
fen-missing.c 42 static GList *missing_list = NULL;
50 GList *existing_list = NULL;
51 GList *idx = NULL;
68 missing_list = g_list_remove_link (missing_list, (GList *)idx->data);
69 g_list_free_1 ((GList *)idx->data);
90 GList *idx;
  /external/bluetooth/glib/gio/inotify/
inotify-missing.c 37 static GList *missing_sub_list = NULL;
82 GList *link;
104 GList *nolonger_missing = NULL;
105 GList *l;
133 GList *llink = l->data;
159 GList *l;
inotify-path.c 52 GList* children;
58 GList *subs;
131 GList *dir_list;
194 GList *dir_list = g_hash_table_lookup (wd_dir_hash, GINT_TO_POINTER (wd));
210 GList *dir_list = g_hash_table_lookup (wd_dir_hash, GINT_TO_POINTER (wd));
230 GList *l = NULL;
290 GList *l = NULL;
305 ip_event_dispatch (GList *dir_list,
306 GList *pair_dir_list,
309 GList *dirl
    [all...]
  /external/webkit/JavaScriptCore/wtf/gtk/
GOwnPtr.cpp 32 template <> void freeOwnedGPtr<GList>(GList* ptr)
GOwnPtr.h 32 typedef struct _GList GList;
44 template<> void freeOwnedGPtr<GList>(GList*);

Completed in 733 milliseconds

1 2 3 4 5 6 7