Searched refs:pList (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/mDNSResponder-561.1.1/mDNSShared/
H A DGenLinkedList.c37 void InitLinkedList( GenLinkedList *pList, size_t linkOffset) argument
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) argument
49 if ( pList->Tail) {
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
52 pList
59 AddToHead( GenLinkedList *pList, void *elem) argument
70 RemoveFromList( GenLinkedList *pList, void *elem) argument
95 ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem) argument
129 InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset, size_t backLinkOffset) argument
140 DLLAddToHead( GenDoubleLinkedList *pList, void *elem) argument
160 DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem) argument
201 GetHeadPtr( GenLinkedOffsetList *pList) argument
208 GetTailPtr( GenLinkedOffsetList *pList) argument
215 GetOffsetLink( GenLinkedOffsetList *pList, void *elem) argument
226 InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset) argument
235 OffsetAddToTail( GenLinkedOffsetList *pList, void *elem) argument
248 OffsetAddToHead( GenLinkedOffsetList *pList, void *elem) argument
259 OffsetRemoveFromList( GenLinkedOffsetList *pList, void *elem) argument
287 OffsetReplaceElem( GenLinkedOffsetList *pList, void *elemInList, void *newElem) argument
[all...]
H A DGenLinkedList.h34 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...]
/macosx-10.10.1/zlib-55/zlib/
H A Dzlib2ansi58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A DWebBasePluginPackage.mm167 NSDictionary *pList = nil;
170 pList = [NSPropertyListSerialization propertyListWithData:data options:kCFPropertyListImmutable format:nil error:nil];
172 return pList;
195 NSDictionary *pList = [self pListForPath:pListPath createFile:NO];
196 if (pList) {
198 NSString *localizationName = [pList objectForKey:WebPluginLocalizationNameKey];
200 pList = [self pListForPath:pListPath createFile:YES];
201 MIMETypes = [pList objectForKey:WebPluginMIMETypesKey];
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/page/
H A Dparse.y660 ExprList *pList = sqlite3ExprListAppend(0, Y, 0);
661 pList = sqlite3ExprListAppend(pList, X, 0);
663 pList = sqlite3ExprListAppend(pList, E, 0);
665 A = sqlite3ExprFunction(pList, 0);
711 ExprList *pList = sqlite3ExprListAppend(0, X, 0);
712 pList = sqlite3ExprListAppend(pList, Y, 0);
714 if( A ) A->pList
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/dns/
H A DipMore.tcl197 set pList 1
211 if {[llength [lindex $nativeList 0]]==1} {set pList 0; set nativeList [list $nativeList]}
223 if {$pList} { return $rList }
/macosx-10.10.1/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c10246 ** Expr.x.pList is a list of arguments if the expression is an SQL function,
10250 ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is
10287 ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately
10307 ExprList *pList; /* Function arguments or in "<expr> IN (<expr-list)" */ member in union:Expr::__anon700
10347 #define EP_xIsSelect 0x0800 /* x.pSelect is valid (otherwise x.pList is) */
35884 PGroupBlockList *pList; /* Owner list */ member in struct:PGroupBlock
36134 addBlockToList(PGroupBlockList *pList, PGroupBlock *pBlock) argument
36150 freeListIfEmpty(PGroup *pGroup, PGroupBlockList *pList) argument
36171 PGroupBlockList *pList; local
36295 PGroupBlockList *pList = pBlock->pList; local
37325 rowSetListToTree(struct RowSetEntry *pList) argument
40461 PgHdr *pList; /* List of dirty pages to revert */ local
40491 pagerWalFrames( Pager *pPager, PgHdr *pList, Pgno nTruncate, int isCommit, int syncFlags ) argument
41521 pager_write_pagelist(Pager *pPager, PgHdr *pList) argument
43286 PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); local
46976 sqlite3WalFrames( Wal *pWal, int szPage, PgHdr *pList, Pgno nTruncate, int isCommit, int sync_flags ) argument
50229 BtShared *pList; local
72314 ExprList *pList = pExpr->x.pList; /* The argument list */ local
73534 sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken) argument
74001 sqlite3ExprListAppend( Parse *pParse, ExprList *pList, Expr *pExpr ) argument
74047 sqlite3ExprListSetName( Parse *pParse, ExprList *pList, Token *pName, int dequote ) argument
74072 sqlite3ExprListSetSpan( Parse *pParse, ExprList *pList, ExprSpan *pSpan ) argument
74109 sqlite3ExprListDelete(sqlite3 *db, ExprList *pList) argument
74691 ExprList *pList = pExpr->x.pList; local
76032 ExprList *pList = pExpr->x.pList; local
76090 sqlite3ExprCodeExprList( Parse *pParse, ExprList *pList, int target, int doHardCopy ) argument
76710 sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList) argument
80271 sqlite3AddPrimaryKey( Parse *pParse, ExprList *pList, int onError, int autoInc, int sortOrder ) argument
81579 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Token *pEnd, int sortOrder, int ifNotExist ) argument
82202 sqlite3IdListAppend(sqlite3 *db, IdList *pList, Token *pToken) argument
82229 sqlite3IdListDelete(sqlite3 *db, IdList *pList) argument
82243 sqlite3IdListIndex(IdList *pList, const char *zName) argument
82353 sqlite3SrcListAppend( sqlite3 *db, SrcList *pList, Token *pTable, Token *pDatabase ) argument
82388 sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList) argument
82406 sqlite3SrcListDelete(sqlite3 *db, SrcList *pList) argument
86651 ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ local
87313 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
92733 IdList *pList = pRight->pUsing; local
93102 keyInfoFromExprList(Parse *pParse, ExprList *pList) argument
94893 substExprList( sqlite3 *db, ExprList *pList, int iTable, ExprList *pEList ) argument
95055 ExprList *pList; /* The result set of the outer query */ local
95915 ExprList *pList = pF->pExpr->x.pList; local
95938 ExprList *pList = pF->pExpr->x.pList; local
96870 sqlite3PrintExprList(ExprList *pList) argument
97183 Trigger *pList = 0; /* List of triggers to return */ local
97785 Trigger *pList = 0; local
100802 exprListTableUsage(WhereMaskSet *pMaskSet, ExprList *pList) argument
101003 ExprList *pList; /* List of operands to the LIKE operator */ local
101092 ExprList *pList; local
101394 ExprList *pList = 0; /* The RHS of the IN operator */ local
101555 ExprList *pList = pExpr->x.pList; local
101739 referencesOtherTables( ExprList *pList, WhereMaskSet *pMaskSet, int iFirst, int iBase ) argument
101764 findIndexCol( Parse *pParse, ExprList *pList, int iBase, Index *pIdx, int iCol ) argument
103117 whereInScanEst( Parse *pParse, Index *p, ExprList *pList, double *pnRow ) argument
108252 ExprList *pList; local
108264 ExprList *pList; local
108305 ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy118.pExpr); local
114296 char *pList; /* Pointer to position list following iDocid */ member in struct:Fts3Doclist
117563 fts3EvalPhraseMergeToken( Fts3Table *pTab, Fts3Phrase *p, int iToken, char *pList, int nList ) argument
117673 char *pList; local
118192 char *pList = 0; local
122350 PendingList *pList; /* Doclist is assembled here */ member in struct:Fts3DeferredToken
122845 fts3PendingListDelete(PendingList *pList) argument
122860 PendingList *pList; local
122992 PendingList *pList = (PendingList *)fts3HashData(pElem); local
123357 PendingList *pList = (PendingList *)fts3HashData(pElem); local
124501 char *pList = *ppList; local
124537 fts3MsrBufferData( Fts3MultiSegReader *pMsr, char *pList, int nList ) argument
124581 char *pList; local
124827 char *pList; local
125596 char *pList; /* Pointer to start of phrase position list */ member in struct:SnippetPhrase
126806 char *pList; /* Position-list */ member in struct:TermOffset
126826 char *pList; /* Pointer to position list for phrase */ local
[all...]

Completed in 566 milliseconds