Home
last modified time | relevance | path

Searched refs:pNode (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c104 BtRbNode *pNode; member
169 p->pNode = 0; in checkReadLocks()
282 static char *append_node(char * orig, BtRbNode *pNode, int indent) in append_node() argument
291 sprintf(buf, "%p", pNode); in append_node()
294 if( pNode ){ in append_node()
296 if( pNode->isBlack ){ in append_node()
301 orig = append_node( orig, pNode->pLeft, indent ); in append_node()
302 orig = append_node( orig, pNode->pRight, indent ); in append_node()
314 static void print_node(BtRbNode *pNode) in print_node() argument
316 char * str = append_node(0, pNode, 0); in print_node()
[all …]
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/
H A Dmemcache.c517 ldapmemcacheld *pNode = NULL, *pNextNode = NULL; in ldap_memcache_destroy() local
529 for (pNode = cache->ldmemc_lds; pNode; pNode = pNextNode, i++) { in ldap_memcache_destroy()
530 LDAP_MUTEX_LOCK( pNode->ldmemcl_ld, LDAP_MEMCACHE_LOCK ); in ldap_memcache_destroy()
531 cache->ldmemc_lds = pNode->ldmemcl_next; in ldap_memcache_destroy()
532 pNode->ldmemcl_ld->ld_memcache = NULL; in ldap_memcache_destroy()
533 LDAP_MUTEX_UNLOCK( pNode->ldmemcl_ld, LDAP_MEMCACHE_LOCK ); in ldap_memcache_destroy()
534 pNextNode = pNode->ldmemcl_next; in ldap_memcache_destroy()
535 NSLDAPI_FREE(pNode); in ldap_memcache_destroy()