HomeSort by relevance Sort by last modified time
    Searched refs:pList (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/mdnsresponder/mDNSShared/
GenLinkedList.c 37 void InitLinkedList( GenLinkedList *pList, size_t linkOffset)
38 /* Initialize the block of memory pointed to by pList as a linked list. */
40 pList->Head = NULL;
41 pList->Tail = NULL;
42 pList->LinkOffset = linkOffset;
46 void AddToTail( GenLinkedList *pList, void *elem)
49 if ( pList->Tail) {
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
52 pList->Head = elem
    [all...]
GenLinkedList.h 34 void InitLinkedList( GenLinkedList *pList, size_t linkOffset);
36 void AddToHead( GenLinkedList *pList, void *elem);
37 void AddToTail( GenLinkedList *pList, void *elem);
39 int RemoveFromList( GenLinkedList *pList, void *elem);
41 int ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem);
55 void InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset,
58 void DLLAddToHead( GenDoubleLinkedList *pList, void *elem);
60 void DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem);
76 void InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset);
78 void *GetHeadPtr( GenLinkedOffsetList *pList);
    [all...]
  /packages/apps/Nfc/jni/
com_android_nfc_list.h 38 bool listInit(listHead* pList);
39 bool listDestroy(listHead* pList);
40 bool listAdd(listHead* pList, void* pData);
41 bool listRemove(listHead* pList, void* pData);
42 bool listGetAndRemoveNext(listHead* pList, void** ppData);
43 void listDump(listHead* pList);
com_android_nfc_list.cpp 26 bool listInit(listHead* pList)
28 pList->pFirst = NULL;
29 if(pthread_mutex_init(&pList->mutex, NULL) == -1)
38 bool listDestroy(listHead* pList)
42 bListNotEmpty = listGetAndRemoveNext(pList, NULL);
45 if(pthread_mutex_destroy(&pList->mutex) == -1)
54 bool listAdd(listHead* pList, void* pData)
72 pthread_mutex_lock(&pList->mutex);
75 if (pList->pFirst == NULL)
78 pList->pFirst = pNode
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties_parser.c 116 static NODE* static_listFindNodeElement(NODE* pList,char* pName,bool bIsCaseSensitive)
122 while (pList!=NULL)
126 nCmp=strcmp(pName,pList->pName);
130 nCmp=STRICMP(pName,pList->pName);
134 pList=pList->pRight;
138 pList=pList->pLeft;
145 return pList;
149 static S_RESULT static_listSortedAddNode(NODE* pList,NODE* pNode
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
list.h 108 * pList: Pointer to list control structure of list to be deleted
113 * - pList != NULL.
120 extern VOID LST_Delete(IN struct LST_LIST* pList);
142 * pList: Pointer to list control structure.
147 * - pList != NULL.
150 extern struct LST_ELEM* LST_First(IN struct LST_LIST* pList);
166 * pList: Pointer to list control structure of list whose head
174 * - pList != NULL.
181 extern struct LST_ELEM* LST_GetHead(IN struct LST_LIST* pList);
219 * pList: Pointer to list control structure
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
list.h 108 * pList: Pointer to list control structure of list to be deleted
113 * - pList != NULL.
120 extern VOID LST_Delete(IN struct LST_LIST* pList);
142 * pList: Pointer to list control structure.
147 * - pList != NULL.
150 extern struct LST_ELEM* LST_First(IN struct LST_LIST* pList);
166 * pList: Pointer to list control structure of list whose head
174 * - pList != NULL.
181 extern struct LST_ELEM* LST_GetHead(IN struct LST_LIST* pList);
219 * pList: Pointer to list control structure
    [all...]
  /bionic/libc/bionic/
pthread_debug.c 409 static void growingListAdd(GrowingList* pList, size_t objSize) {
410 if (pList->count == pList->alloc) {
411 size_t oldsize = pList->alloc * objSize;
412 pList->alloc += PAGESIZE / objSize;
413 size_t size = pList->alloc * objSize;
414 pList->data = debug_realloc(pList->data, size, oldsize);
416 pList->count++;
482 static void historyListAdd(MutexInfoList* pList, MutexInfo* obj)
    [all...]
  /external/zlib/
zlib2ansi 58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentnormalizedocument03.js 103 var pList;
112 pList = doc.getElementsByTagName("p");
113 elem = pList.item(0);
122 pList = doc.getElementsByTagName("p");
123 elem = pList.item(0);
132 pList = doc.getElementsByTagName("p");
133 elem = pList.item(0);
documentnormalizedocument04.js 102 var pList;
109 pList = doc.getElementsByTagName("p");
110 elem = pList.item(0);
119 pList = doc.getElementsByTagName("p");
120 elem = pList.item(0);
129 pList = doc.getElementsByTagName("p");
130 elem = pList.item(0);
canonicalform01.js 92 var pList;
121 pList = doc.getElementsByTagName("p");
122 pElem = pList.item(0);
127 pList = doc.getElementsByTagName("p");
128 pElem = pList.item(0);
canonicalform02.js 97 var pList;
118 pList = doc.getElementsByTagName("p");
119 pElem = pList.item(0);
124 pList = doc.getElementsByTagName("p");
125 pElem = pList.item(0);
cdatasections01.js 100 var pList;
109 pList = doc.getElementsByTagName("p");
110 elem = pList.item(0);
119 pList = doc.getElementsByTagName("p");
120 elem = pList.item(0);
checkcharacternormalization01.js 97 var pList;
112 pList = doc.getElementsByTagName("p");
113 pElem = pList.item(0);
118 pList = doc.getElementsByTagName("p");
119 pElem = pList.item(0);
checkcharacternormalization03.js 97 var pList;
118 pList = doc.getElementsByTagName("p");
119 pElem = pList.item(0);
124 pList = doc.getElementsByTagName("p");
125 pElem = pList.item(0);
comments01.js 100 var pList;
107 pList = doc.getElementsByTagName("p");
108 elem = pList.item(0);
117 pList = doc.getElementsByTagName("p");
118 elem = pList.item(0);
entities01.js 92 var pList;
115 pList = doc.getElementsByTagName("p");
116 pElem = pList.item(0);
121 pList = doc.getElementsByTagName("p");
122 pElem = pList.item(0);
entities02.js 92 var pList;
116 pList = doc.getElementsByTagName("p");
117 pElem = pList.item(0);
122 pList = doc.getElementsByTagName("p");
123 pElem = pList.item(0);
entities03.js 92 var pList;
113 pList = doc.getElementsByTagName("p");
114 pElem = pList.item(0);
119 pList = doc.getElementsByTagName("p");
120 pElem = pList.item(0);
entities04.js 91 var pList;
114 pList = doc.getElementsByTagName("p");
115 pElem = pList.item(0);
120 pList = doc.getElementsByTagName("p");
121 pElem = pList.item(0);
infoset01.js 92 var pList;
116 pList = doc.getElementsByTagName("p");
117 pElem = pList.item(0);
122 pList = doc.getElementsByTagName("p");
123 pElem = pList.item(0);
infoset02.js 92 var pList;
113 pList = doc.getElementsByTagName("p");
114 pElem = pList.item(0);
119 pList = doc.getElementsByTagName("p");
120 pElem = pList.item(0);
infoset04.js 102 var pList;
111 pList = doc.getElementsByTagName("p");
112 elem = pList.item(0);
121 pList = doc.getElementsByTagName("p");
122 elem = pList.item(0);
infoset09.js 101 var pList;
108 pList = doc.getElementsByTagName("p");
109 elem = pList.item(0);
119 pList = doc.getElementsByTagName("p");
120 elem = pList.item(0);

Completed in 716 milliseconds

1 2 3