Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dutilities.c142 unsigned char *pThis; local
150 pThis = buffer;
153 while (pThis < buffer) {
155 (((*pThis)&0xff) == 0xff) ? '*' : ' ',
156 (*pThis)&0xff);
157 pThis++;
163 while (pThis < buffer) {
164 (void) fprintf(NetTrace, "%.2x", (*pThis)&0xff);
165 pThis++;
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c1989 MemPage *pThis; in reparentPage() local
1993 pThis = sqlitepager_lookup(pPager, pgno); in reparentPage()
1994 if( pThis && pThis->isInit ){ in reparentPage()
1995 if( pThis->pParent!=pNewParent ){ in reparentPage()
1996 if( pThis->pParent ) sqlitepager_unref(pThis->pParent); in reparentPage()
1997 pThis->pParent = pNewParent; in reparentPage()
2000 pThis->idxParent = idx; in reparentPage()
2001 sqlitepager_unref(pThis); in reparentPage()