Lines Matching refs:pRet
92 sqlite3_mutex *pRet = 0; in counterMutexAlloc() local
102 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
107 pRet = &g.aStatic[eStaticType]; in counterMutexAlloc()
110 pRet->eType = eType; in counterMutexAlloc()
111 pRet->pReal = pReal; in counterMutexAlloc()
112 return pRet; in counterMutexAlloc()
268 Tcl_Obj *pRet; in test_read_mutex_counters() local
276 pRet = Tcl_NewObj(); in test_read_mutex_counters()
277 Tcl_IncrRefCount(pRet); in test_read_mutex_counters()
279 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewStringObj(aName[ii], -1)); in test_read_mutex_counters()
280 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewIntObj(g.aCounter[ii])); in test_read_mutex_counters()
282 Tcl_SetObjResult(interp, pRet); in test_read_mutex_counters()
283 Tcl_DecrRefCount(pRet); in test_read_mutex_counters()