Searched defs:pList (Results 1 - 16 of 16) sorted by relevance

/illumos-gate/usr/src/common/ficl/
H A Dhash.c72 ficlWord **pList; local
78 pList = hash->table;
80 pList = hash->table + (word->hash % hash->size);
83 word->link = *pList;
84 *pList = word;
H A Dsystem.c355 ficlVm *pList = system->vmList; local
362 for (; pList != NULL; pList = pList->link) {
363 if (pList->link == vm) {
364 pList->link = vm->link;
369 if (pList)
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DGenLinkedList.c30 void InitLinkedList( GenLinkedList *pList, size_t linkOffset) argument
31 /* Initialize the block of memory pointed to by pList as a linked list. */
33 pList->Head = NULL;
34 pList->Tail = NULL;
35 pList->LinkOffset = linkOffset;
39 void AddToTail( GenLinkedList *pList, void *elem) argument
42 if ( pList->Tail) {
43 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
45 pList
52 AddToHead( GenLinkedList *pList, void *elem) argument
63 RemoveFromList( GenLinkedList *pList, void *elem) argument
88 ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem) argument
122 InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset, size_t backLinkOffset) argument
133 DLLAddToHead( GenDoubleLinkedList *pList, void *elem) argument
153 DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem) argument
194 GetHeadPtr( GenLinkedOffsetList *pList) argument
201 GetTailPtr( GenLinkedOffsetList *pList) argument
208 GetOffsetLink( GenLinkedOffsetList *pList, void *elem) argument
219 InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset) argument
228 OffsetAddToTail( GenLinkedOffsetList *pList, void *elem) argument
241 OffsetAddToHead( GenLinkedOffsetList *pList, void *elem) argument
252 OffsetRemoveFromList( GenLinkedOffsetList *pList, void *elem) argument
280 OffsetReplaceElem( GenLinkedOffsetList *pList, void *elemInList, void *newElem) argument
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dinsert.c32 ** The pList parameter holds EXPRLIST in the first form of the INSERT
33 ** statement above, and pSelect is NULL. For the second form, pList is
92 ExprList *pList, /* List of values to be inserted */
243 assert( pList!=0 );
246 assert( pList );
247 nColumn = pList->nExpr;
250 if( sqliteExprResolveIds(pParse, &dummy, 0, pList->a[i].pExpr) ){
253 if( sqliteExprCheck(pParse, pList->a[i].pExpr, 0, 0) ){
372 sqliteExprCode(pParse, pList->a[keyColumn].pExpr);
396 sqliteExprCode(pParse, pList
89 sqliteInsert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
[all...]
H A Dexpr.c77 Expr *sqliteExprFunction(ExprList *pList, Token *pToken){ argument
81 /* sqliteExprListDelete(pList); // Leak pList when malloc fails */
85 pNew->pList = pList;
105 sqliteExprListDelete(p->pList);
138 pNew->pList = sqliteExprListDup(p->pList);
248 ** Add a new element to the end of an expression list. If pList is
251 ExprList *sqliteExprListAppend(ExprList *pList, Exp argument
285 sqliteExprListDelete(ExprList *pList) argument
771 ExprList *pList = pExpr->pList; local
993 ExprList *pList = p->pList; local
1153 ExprList *pList = pExpr->pList; local
1273 sqliteExprCodeExprList( Parse *pParse, ExprList *pList, int includeTypes ) argument
[all...]
H A Dtclsqlite.c233 Tcl_Obj *pList = (Tcl_Obj*)clientData; local
251 Tcl_ListObjAppendElement(0, pList, pElem);
810 Tcl_Obj *pList = Tcl_NewObj(); local
812 rc = sqlite_exec(pDb->db, zSql, DbEvalCallback2, pList, &zErrMsg);
813 Tcl_SetObjResult(interp, pList);
H A Dtest1.c694 Tcl_Obj *pList, *pElem; local
698 pList = Tcl_NewObj();
701 Tcl_ListObjAppendElement(interp, pList, pElem);
703 Tcl_SetObjResult(interp, pList);
H A Dbtree_rb.c1320 static void execute_rollback_list(Rbtree *pRbtree, BtRollbackOp *pList) argument
1328 while( pList ){
1329 switch( pList->eOp ){
1331 cur.pTree = sqliteHashFind( &pRbtree->tblHash, 0, pList->iTab );
1333 cur.iTree = pList->iTab;
1335 memRbtreeInsert( &cur, pList->pKey,
1336 pList->nKey, pList->pData, pList->nData );
1339 cur.pTree = sqliteHashFind( &pRbtree->tblHash, 0, pList
[all...]
H A Dbuild.c664 ** Designate the PRIMARY KEY for the table. pList is a list of names
665 ** of columns that form the primary key. If pList is NULL, then the
683 void sqliteAddPrimaryKey(Parse *pParse, IdList *pList, int onError){ argument
694 if( pList==0 ){
698 for(i=0; i<pList->nId; i++){
700 if( sqliteStrICmp(pList->a[i].zName, pTab->aCol[iCol].zName)==0 ) break;
704 if( pList->nId>1 ) iCol = -1;
714 sqliteCreateIndex(pParse, 0, 0, pList, onError, 0, 0);
715 pList = 0;
719 sqliteIdListDelete(pList);
1475 sqliteCreateIndex( Parse *pParse, Token *pName, SrcList *pTable, IdList *pList, int onError, Token *pStart, Token *pEnd ) argument
1843 sqliteIdListAppend(IdList *pList, Token *pToken) argument
1899 sqliteSrcListAppend(SrcList *pList, Token *pTable, Token *pDatabase) argument
1953 sqliteSrcListAssignCursors(Parse *pParse, SrcList *pList) argument
1965 sqliteSrcListAddAlias(SrcList *pList, Token *pToken) argument
1976 sqliteIdListDelete(IdList *pList) argument
1990 sqliteIdListIndex(IdList *pList, const char *zName) argument
2002 sqliteSrcListDelete(SrcList *pList) argument
[all...]
H A Dselect.c269 IdList *pList; local
272 pList = pTerm->pUsing;
273 for(j=0; j<pList->nId; j++){
274 if( columnIndex(pTerm->pTab, pList->a[j].zName)<0 ||
275 columnIndex(pOther->pTab, pList->a[j].zName)<0 ){
277 "not present in both tables", pList->a[j].zName);
280 addWhereTerm(pList->a[j].zName, pTerm->pTab, pOther->pTab, &p->pWhere);
1537 assert( pExpr->pLeft==0 && pExpr->pRight==0 && pExpr->pList==0 );
1546 assert( pExpr->pList==0 );
1547 pExpr->pList
1561 substExprList(ExprList *pList, int iTable, ExprList *pEList) argument
1648 ExprList *pList; /* The result set of the outer query */ local
1858 ExprList *pEList, *pList, eList; local
[all...]
H A DvdbeInt.h266 Keylist *pList; /* A list of ROWIDs */ member in struct:Vdbe
H A Dpager.c1260 static int pager_write_pagelist(PgHdr *pList){ argument
1264 if( pList==0 ) return SQLITE_OK;
1265 pPager = pList->pPager;
1266 while( pList ){
1267 assert( pList->dirty );
1268 sqliteOsSeek(&pPager->fd, (pList->pgno-1)*(off_t)SQLITE_PAGE_SIZE);
1269 CODEC(pPager, PGHDR_TO_DATA(pList), pList->pgno, 6);
1270 TRACE2("STORE %d\n", pList->pgno);
1271 rc = sqliteOsWrite(&pPager->fd, PGHDR_TO_DATA(pList), SQLITE_PAGE_SIZ
1286 PgHdr *p, *pList; local
[all...]
H A DsqliteInt.h658 ** Expr.pRight and Expr.pLeft are subexpressions. Expr.pList is a list
690 ExprList *pList; /* A list of expressions used as function arguments member in struct:Expr
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_eeprom.c102 ath9k_hw_get_lower_upper_index(uint8_t target, uint8_t *pList, argument
107 if (target <= pList[0]) {
111 if (target >= pList[listSize - 1]) {
117 if (pList[i] == target) {
121 if (target < pList[i + 1]) {
/illumos-gate/usr/src/lib/libsun_ima/common/
H A Dima.c2045 SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES *pList; local
2062 &pList);
2063 for (j = 0; j < pList->keyCount; j++) {
2064 if (wcsncmp(pList->keys[j].name, targetProps.name,
2065 wslen(pList->keys[j].name)) == 0) {
2069 (void) IMA_FreeMemory(pList);
2082 &pList);
2083 for (j = 0; j < pList->keyCount; j++) {
2084 if (wcsncmp(pList->keys[j].name, targetProps.name,
2085 wslen(pList
[all...]
/illumos-gate/usr/src/cmd/iscsiadm/
H A Discsiadm_main.c711 printSendTargets(SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES *pList) argument
718 for (i = 0; i < pList->keyCount; i++) {
719 if (pList->keys[i].address.ipAddress.ipv4Address == IMA_TRUE) {
727 pList->keys[i].name);
729 inet_ntop(af, &(pList->keys[i].address.ipAddress.ipAddress),
730 outBuf, inetSize), pList->keys[i].address.portNumber);
731 (void) fprintf(stdout, ", %d", pList->keys[i].tpgt);
1769 SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES *pList; local
1908 discAddrProps.discoveryAddress, &pList);
1916 printSendTargets(pList);
1947 SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES *pList; local
[all...]

Completed in 107 milliseconds