Searched refs:pRes (Results 1 – 5 of 5) sorted by relevance
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | memcache.c | 197 static int memcache_free_entry(LDAPMemCache *cache, ldapmemcacheRes *pRes); 198 static int memcache_expired(LDAPMemCache *cache, ldapmemcacheRes *pRes, 200 static int memcache_add_to_list(LDAPMemCache *cache, ldapmemcacheRes *pRes, 202 static int memcache_add_res_to_list(ldapmemcacheRes *pRes, LDAPMessage *pMsg, 204 static int memcache_free_from_list(LDAPMemCache *cache, ldapmemcacheRes *pRes, 209 static int memcache_append(LDAP *ld, int msgid, LDAPMessage *pRes); 210 static int memcache_append_last(LDAP *ld, int msgid, LDAPMessage *pRes); 999 ldapmemcacheRes *pRes; 1007 (void*)&key, (void*)(&pRes), NULL); 1012 *ppRes = pRes->ldmemcr_resHead; [all …]
|
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | btree.h | 74 int (*Moveto)(BtCursor*, const void *pKey, int nKey, int *pRes); 78 int (*First)(BtCursor*, int *pRes); 79 int (*Last)(BtCursor*, int *pRes); 80 int (*Next)(BtCursor*, int *pRes); 81 int (*Previous)(BtCursor*, int *pRes); 85 int nIgnore, int *pRes); 124 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ argument 125 (btCOps(pCur)->Moveto(pCur, pKey, nKey, pRes)) 129 #define sqliteBtreeFirst(pCur, pRes) (btCOps(pCur)->First(pCur, pRes)) argument 130 #define sqliteBtreeLast(pCur, pRes) (btCOps(pCur)->Last(pCur, pRes)) argument [all …]
|
H A D | btree_rb.c | 141 int *pRes 144 static int memRbtreeNext(RbtCursor* pCur, int *pRes); 145 static int memRbtreeLast(RbtCursor* pCur, int *pRes); 146 static int memRbtreePrevious(RbtCursor* pCur, int *pRes); 694 int nIgnore, int *pRes) in memRbtreeKeyCompare() argument 699 *pRes = -1; in memRbtreeKeyCompare() 702 *pRes = -1; in memRbtreeKeyCompare() 704 *pRes = key_compare(pCur->pNode->pKey, pCur->pNode->nKey-nIgnore, in memRbtreeKeyCompare() 878 int *pRes in memRbtreeMoveto() argument 883 *pRes = -1; in memRbtreeMoveto() [all …]
|
H A D | btree.c | 1533 static int fileBtreeFirst(BtCursor *pCur, int *pRes){ in fileBtreeFirst() argument 1539 *pRes = 1; in fileBtreeFirst() 1542 *pRes = 0; in fileBtreeFirst() 1552 static int fileBtreeLast(BtCursor *pCur, int *pRes){ in fileBtreeLast() argument 1559 *pRes = 1; in fileBtreeLast() 1562 *pRes = 0; in fileBtreeLast() 1592 int fileBtreeMoveto(BtCursor *pCur, const void *pKey, int nKey, int *pRes){ in fileBtreeMoveto() argument 1611 if( pRes ) *pRes = 0; in fileBtreeMoveto() 1629 if( pRes ) *pRes = c; in fileBtreeMoveto() 1645 static int fileBtreeNext(BtCursor *pCur, int *pRes){ in fileBtreeNext() argument [all …]
|
H A D | pager.c | 322 static int read32bits(int format, OsFile *fd, u32 *pRes){ in read32bits() argument 331 *pRes = res; in read32bits()
|