Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libdns_sd/java/common/
H A DJNISupport.c203 JNIEXPORT void JNICALL Java_com_apple_dnssd_AppleService_HaltOperation( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_HaltOperation() argument
206 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_HaltOperation()
211 … OpContext *pContext = (OpContext*) (long) (*pEnv)->GetLongField(pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_HaltOperation()
215 (*pEnv)->SetLongField(pEnv, pThis, contextField, 0); in Java_com_apple_dnssd_AppleService_HaltOperation()
227 JNIEXPORT jint JNICALL Java_com_apple_dnssd_AppleService_BlockForData( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_BlockForData() argument
232 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_BlockForData()
237 … OpContext *pContext = (OpContext*) (long) (*pEnv)->GetLongField(pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_BlockForData()
271 …IEXPORT jint JNICALL Java_com_apple_dnssd_AppleService_ProcessResults( JNIEnv *pEnv, jobject pThis) in Java_com_apple_dnssd_AppleService_ProcessResults() argument
276 jclass cls = (*pEnv)->GetObjectClass( pEnv, pThis); in Java_com_apple_dnssd_AppleService_ProcessResults()
278 … OpContext *pContext = (OpContext*) (long) (*pEnv)->GetLongField(pEnv, pThis, contextField); in Java_com_apple_dnssd_AppleService_ProcessResults()
[all …]
/titanic_50/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_50/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()