Lines Matching defs:rc
41 int rc;
45 rc = SUPR3Init(NULL);
46 RTPrintf("tstContiguous: SUPR3Init -> rc=%Rrc\n", rc);
47 rcRet += rc != 0;
48 if (!rc)
64 rc = SUPR3ContFree(pv, 5);
65 rcRet += rc != 0;
66 if (rc)
67 RTPrintf("tstContiguous: SUPR3ContFree failed! rc=%Rrc\n", rc);
82 rc = SUPR3ContFree(apv[i], 1 + (i % 11));
83 rcRet += rc != 0;
84 if (rc)
85 RTPrintf("tstContiguous: i=%d SUPR3ContFree failed! rc=%Rrc\n", i, rc);
94 rc = SUPR3Term(false /*fForced*/);
95 RTPrintf("tstContiguous: SUPR3Term -> rc=%Rrc\n", rc);
96 rcRet += rc != 0;