Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libdns_sd/java/common/
H A DJNISupport.c254 JNIEXPORT void JNICALL Java_com_apple_dnssd_AppleService_HaltOperation( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_HaltOperation() argument
257 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_HaltOperation()
262 OpContext *pContext = (OpContext*) (*pEnv)->GetLongField( pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_HaltOperation()
266 (*pEnv)->SetLongField( pEnv, pThis, contextField, 0); in Java_com_apple_dnssd_AppleService_HaltOperation()
278 JNIEXPORT jint JNICALL Java_com_apple_dnssd_AppleService_BlockForData( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_BlockForData() argument
283 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_BlockForData()
288 OpContext *pContext = (OpContext*) (*pEnv)->GetLongField( pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_BlockForData()
322 …IEXPORT jint JNICALL Java_com_apple_dnssd_AppleService_ProcessResults( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_ProcessResults() argument
327 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_ProcessResults()
329 OpContext *pContext = (OpContext*) (*pEnv)->GetLongField( pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_ProcessResults()
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dutilities.c144 unsigned char *pThis; local
152 pThis = buffer;
155 while (pThis < buffer) {
157 (((*pThis)&0xff) == 0xff) ? '*' : ' ',
158 (*pThis)&0xff);
159 pThis++;
165 while (pThis < buffer) {
166 (void) fprintf(NetTrace, "%.2x", (*pThis)&0xff);
167 pThis++;
/titanic_41/usr/src/lib/libsqlite/src/
H A Dbtree.c1991 MemPage *pThis; in reparentPage() local
1995 pThis = sqlitepager_lookup(pPager, pgno); in reparentPage()
1996 if( pThis && pThis->isInit ){ in reparentPage()
1997 if( pThis->pParent!=pNewParent ){ in reparentPage()
1998 if( pThis->pParent ) sqlitepager_unref(pThis->pParent); in reparentPage()
1999 pThis->pParent = pNewParent; in reparentPage()
2002 pThis->idxParent = idx; in reparentPage()
2003 sqlitepager_unref(pThis); in reparentPage()