Home
last modified time | relevance | path

Searched refs:pRes (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dmemcache.c196 static int memcache_free_entry(LDAPMemCache *cache, ldapmemcacheRes *pRes);
197 static int memcache_expired(LDAPMemCache *cache, ldapmemcacheRes *pRes,
199 static int memcache_add_to_list(LDAPMemCache *cache, ldapmemcacheRes *pRes,
201 static int memcache_add_res_to_list(ldapmemcacheRes *pRes, LDAPMessage *pMsg,
203 static int memcache_free_from_list(LDAPMemCache *cache, ldapmemcacheRes *pRes,
208 static int memcache_append(LDAP *ld, int msgid, LDAPMessage *pRes);
209 static int memcache_append_last(LDAP *ld, int msgid, LDAPMessage *pRes);
998 ldapmemcacheRes *pRes;
1006 (void*)&key, (void*)(&pRes), NULL);
1011 *ppRes = pRes->ldmemcr_resHead;
[all …]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h71 int (*Moveto)(BtCursor*, const void *pKey, int nKey, int *pRes);
75 int (*First)(BtCursor*, int *pRes);
76 int (*Last)(BtCursor*, int *pRes);
77 int (*Next)(BtCursor*, int *pRes);
78 int (*Previous)(BtCursor*, int *pRes);
82 int nIgnore, int *pRes);
121 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ argument
122 (btCOps(pCur)->Moveto(pCur, pKey, nKey, pRes))
126 #define sqliteBtreeFirst(pCur, pRes) (btCOps(pCur)->First(pCur, pRes)) argument
127 #define sqliteBtreeLast(pCur, pRes) (btCOps(pCur)->Last(pCur, pRes)) argument
[all …]
H A Dbtree_rb.c138 int *pRes
141 static int memRbtreeNext(RbtCursor* pCur, int *pRes);
142 static int memRbtreeLast(RbtCursor* pCur, int *pRes);
143 static int memRbtreePrevious(RbtCursor* pCur, int *pRes);
691 int nIgnore, int *pRes) in memRbtreeKeyCompare() argument
696 *pRes = -1; in memRbtreeKeyCompare()
699 *pRes = -1; in memRbtreeKeyCompare()
701 *pRes = key_compare(pCur->pNode->pKey, pCur->pNode->nKey-nIgnore, in memRbtreeKeyCompare()
875 int *pRes in memRbtreeMoveto() argument
880 *pRes = -1; in memRbtreeMoveto()
[all …]
H A Dbtree.c1531 static int fileBtreeFirst(BtCursor *pCur, int *pRes){ in fileBtreeFirst() argument
1537 *pRes = 1; in fileBtreeFirst()
1540 *pRes = 0; in fileBtreeFirst()
1550 static int fileBtreeLast(BtCursor *pCur, int *pRes){ in fileBtreeLast() argument
1557 *pRes = 1; in fileBtreeLast()
1560 *pRes = 0; in fileBtreeLast()
1590 int fileBtreeMoveto(BtCursor *pCur, const void *pKey, int nKey, int *pRes){ in fileBtreeMoveto() argument
1609 if( pRes ) *pRes = 0; in fileBtreeMoveto()
1627 if( pRes ) *pRes = c; in fileBtreeMoveto()
1643 static int fileBtreeNext(BtCursor *pCur, int *pRes){ in fileBtreeNext() argument
[all …]
H A Dpager.c320 static int read32bits(int format, OsFile *fd, u32 *pRes){ in read32bits() argument
329 *pRes = res; in read32bits()