Searched refs:list (Results 1 - 24 of 24) sorted by relevance

/system/core/libcutils/
H A Ddir_hash.c117 struct list { struct
119 struct list *next;
123 struct list *const *ra = a;
124 struct list *const *rb = b;
130 struct list **out) {
131 struct list *list = NULL; local
132 struct list *f;
150 struct list *node = malloc(sizeof(struct list));
269 struct list **list; local
[all...]
/system/core/toolbox/
H A Did.c31 gid_t list[64]; local
34 max = getgroups(64, list);
43 print_gid(list[0]);
46 print_gid(list[n]);
/system/extras/showslab/
H A Dshowslab.c58 * Returns the head of the new list of slab_info structures, or NULL on error.
158 * provided slab_info linked list
160 static void free_slablist(struct slab_info *list) argument
162 while (list) {
163 struct slab_info *temp = list->next;
164 free(list);
165 list = temp;
171 struct slab_info list; local
172 struct slab_info *p = &list;
187 return list
193 slabsort(struct slab_info *list) argument
272 struct slab_info *list, *p; local
[all...]
/system/core/init/
H A Dinit.h59 #define list_for_each(node, list) \
60 for (node = (list)->next; node != (list); node = node->next)
62 void list_init(struct listnode *list);
63 void list_add_tail(struct listnode *list, struct listnode *item);
66 #define list_empty(list) ((list) == (list)->next)
67 #define list_head(list) ((list)
[all...]
/system/core/sh/
H A Dexpand.h14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
44 struct strlist *list; member in struct:arglist
H A Deval.c14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
358 arglist.lastp = &arglist.list;
367 for (sp = arglist.list ; sp ; sp = sp->next) {
399 arglist.lastp = &arglist.list;
403 if (casematch(patp, arglist.list->text)) {
448 * Compute the names of the files in a redirection list.
458 fn.lastp = &fn.list;
466 redir->nfile.expfname = fn.list->text;
472 fixredir(redir, fn.list
[all...]
H A Dvar.c14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
316 * Process a linked list of variable assignments.
320 listsetvar(struct strlist *list, int flags) argument
325 for (lp = list ; lp ; lp = lp->next) {
332 listmklocal(struct strlist *list, int flags) argument
336 for (lp = list ; lp ; lp = lp->next)
385 * Generate a list of exported variables. This routine is used to construct
458 * Command to list all variables which are set. Currently this command
513 static struct var **list; /* stati local
[all...]
H A Dparser.c14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
80 struct heredoc *next; /* next here document in list */
89 struct heredoc *heredoclist; /* list of here documents to read */
104 STATIC union node *list(int);
145 return list(1);
150 list(int nlflag) function
319 n1->nif.test = list(0);
322 n1->nif.ifpart = list(0);
328 n2->nif.test = list(
[all...]
H A Dexpand.c14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
81 struct ifsregion *next; /* next region in list */
89 struct nodelist *argbackq; /* list of back quote expressions */
90 struct ifsregion ifsfirst; /* first struct in list of ifs regions */
91 struct ifsregion *ifslastp; /* last struct in list */
92 struct arglist exparg; /* holds expanded arg list */
128 * placing the resulting list of arguments in arglist. If EXP_FULL is true,
149 exparg.lastp = &exparg.list;
156 exparg.lastp = &exparg.list;
1285 msort(struct strlist *list, int len) argument
[all...]
/system/extras/latencytop/
H A Dlatencytop.c43 static struct latency_entry *read_global_stats(struct latency_entry *list, int erase);
44 static struct latency_entry *read_process_stats(struct latency_entry *list, int erase, int pid);
45 static struct latency_entry *read_thread_stats(struct latency_entry *list, int erase, int pid, int tid, int fatal);
51 static struct latency_entry *read_latency_file(FILE *f, struct latency_entry *list);
174 static struct latency_entry *read_global_stats(struct latency_entry *list, int erase) { argument
194 e = read_latency_file(f, list);
201 static struct latency_entry *read_process_stats(struct latency_entry *list, int erase, int pid) { argument
216 e = list;
231 static struct latency_entry *read_thread_stats(struct latency_entry *list, int erase, int pid, int tid, int fatal) { argument
246 return list;
325 read_latency_file(FILE *f, struct latency_entry *list) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/inc/
H A DosTIType.h12 **| notice, this list of conditions and the following disclaimer. |**
14 **| notice, this list of conditions and the following disclaimer in |**
154 #define PACKED_ENUM(name, list) ENUM { list(ENUM_BODY) } __attribute__ ((packed)) name
H A Desta_drv.h12 **| notice, this list of conditions and the following disclaimer. |**
14 **| notice, this list of conditions and the following disclaimer in |**
185 struct list_head list; member in struct:tiwlan_req
232 struct list_head list; member in struct:tiwlan_net_dev
/system/core/adb/
H A Dfdevent.c366 fdevent *list = &list_pending; local
368 node->next = list;
369 node->prev = list->prev;
371 list->prev = node;
384 fdevent *list = &list_pending; local
385 fdevent *node = list->next;
387 if(node == list) return 0;
389 list->next = node->next;
390 list->next->prev = list;
[all...]
H A Dsysdeps_win32.c1623 fdevent *list = &list_pending; local
1625 node->next = list;
1626 node->prev = list->prev;
1628 list->prev = node;
1641 fdevent *list = &list_pending; local
1642 fdevent *node = list->next;
1644 if(node == list) return 0;
1646 list->next = node->next;
1647 list->next->prev = list;
[all...]
H A Dsockets.c53 /* the the list of currently closing local sockets.
77 insert_local_socket(asocket* s, asocket* list) argument
79 s->next = list;
114 ** the list out from under you, your options are limited.
195 // be sure to hold the socket list lock when calling this
237 /* otherwise, put on the closing list
335 ** socket will be placed on the closing socket list.
/system/wlan/ti/wilink_6_1/platforms/os/linux/src/
H A Dosapi.c12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in
55 #include <linux/list.h>
829 va_list list; local
842 va_start(list, uParamsNum);
848 uParam = va_arg (list, TI_UINT32);
887 va_start(list, uParamsNum);
893 uParam = va_arg(list, TI_UINT32);
911 va_end(list);
916 va_end(list);
[all...]
H A Dosmemapi.c12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in
55 #include <linux/list.h>
/system/bluetooth/data/
H A Dauto_pairing.conf6 // The following companies are included in the list below:
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
H A Dosapi.c12 **| notice, this list of conditions and the following disclaimer. |**
14 **| notice, this list of conditions and the following disclaimer in |**
51 #include <linux/list.h>
321 INIT_LIST_HEAD(&tmr->req.list);
420 list_del_init(&tmr->req.list);
1495 list_del(&tmr->req.list);
1496 list_add_tail(&tmr->req.list, &drv->request_q);
H A Dosmemapi.c12 **| notice, this list of conditions and the following disclaimer. |**
14 **| notice, this list of conditions and the following disclaimer in |**
52 #include <linux/list.h>
H A Desta_drv.c12 **| notice, this list of conditions and the following disclaimer. |**
14 **| notice, this list of conditions and the following disclaimer in |**
76 #include <linux/list.h>
130 /* Drivers list */
899 tiwlan_req_t *req = list_entry(entry, tiwlan_req_t, list);
1137 list_add_tail(&req.list, &drv->request_q);
1705 list_add(&drv->list, &tiwlan_drv_list);
2115 tiwlan_net_dev_t *drv = (tiwlan_net_dev_t *)list_entry(l, tiwlan_net_dev_t, list);
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
H A Dcu_cmd.c1500 console_printf_terminal("BSS list size: %d, number of BSSes to start discovery: %d\n",
1525 console_printf_terminal("\nChannel list: ");
1598 bssList_t list; local
1601 /* get list */
1602 if ( (TI_RESULT_OK != TI_GetScanBssList( g_id_adapter, &list )) || (0 == list.numOfEntries) )
1607 /* console_printf_terminal list */
1611 for ( i = 0; i < list.numOfEntries; i++ )
1615 print_mac_2_str(list.BSSList[ i ].BSSID.addr), band2Str[ list
3194 OS_802_11_BSSID_LIST_EX *list;/* = (OS_802_11_BSSID_LIST_EX *) data; */ local
[all...]
H A Dg_tester.c1351 OS_802_11_BSSID_LIST_EX *list;/* = (OS_802_11_BSSID_LIST_EX *) data; */ local
1360 res = TI_GetBSSIDList(g_id_adapter, &list);
1361 if( res || !list )
1377 bssid = &list->Bssid[0];
1378 number_items = list->NumberOfItems;
1426 free(list);
2233 /* get list */
/system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
H A Dcu_cmd.c729 os_error_printf(CU_MSG_INFO2, (PS8)"\nChannel list: ");
1014 os_error_printf(CU_MSG_ERROR, (PS8)"ERROR - CuCmd_Bssid_List - cant get Bssid list size\n");
1022 os_error_printf(CU_MSG_ERROR, (PS8)"ERROR - CuCmd_Bssid_List - cant allocate Bssid list\n");
1030 /* os_error_printf(CU_MSG_ERROR, (PS8)"ERROR - CuCmd_Bssid_List - size of list is %d, indicating empty list\n",
1037 os_error_printf(CU_MSG_ERROR, (PS8)"ERROR - CuCmd_Bssid_List - cant get Bssid list\n");
1051 /* print the list to the terminal */
1072 os_error_printf(CU_MSG_ERROR, (PS8)"ERROR - CuCmd_Bssid_List - cant allocate Bssid list\n");
1090 /* print the list to the terminal */
2736 os_error_printf(CU_MSG_INFO2, (PS8)"BSS list siz
2765 bssList_t list; local
[all...]

Completed in 659 milliseconds