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
54
) sorted by null
1
2
3
/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
...]
/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);
normalizecharacters01.js
97
var
pList
;
112
pList
= doc.getElementsByTagName("p");
113
pElem =
pList
.item(0);
118
pList
= doc.getElementsByTagName("p");
119
pElem =
pList
.item(0);
normalizecharacters02.js
97
var
pList
;
118
pList
= doc.getElementsByTagName("p");
119
pElem =
pList
.item(0);
124
pList
= doc.getElementsByTagName("p");
125
pElem =
pList
.item(0);
normalizecharacters03.js
97
var
pList
;
112
pList
= doc.getElementsByTagName("p");
113
pElem =
pList
.item(0);
118
pList
= doc.getElementsByTagName("p");
119
pElem =
pList
.item(0);
Completed in 293 milliseconds
1
2
3