OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pList
(Results
1 - 25
of
40
) sorted by null
1
2
/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/nxp/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.cpp
230
static void growingListAdd(GrowingList*
pList
, size_t objSize) {
231
if (
pList
->count ==
pList
->alloc) {
232
size_t oldsize =
pList
->alloc * objSize;
233
pList
->alloc += PAGESIZE / objSize;
234
size_t size =
pList
->alloc * objSize;
235
pList
->data = debug_realloc(
pList
->data, size, oldsize);
237
pList
->count++;
303
static void historyListAdd(MutexInfoList*
pList
, MutexInfo* obj)
[
all
...]
/external/zlib/src/
zlib2ansi
58
my %
pList
= map { $_ => $i++ }
60
my $pMatch = '(\b' . join('|', keys %
pList
) . '\b)\W*$' ;
84
my %tmp = map { /$pMatch/; $_ => $
pList
{$1} }