Lines Matching refs:rbuf
207 void * rbuf = malloc(rbuf_size); in threadProc() local
222 void *tmpBuf = realloc(rbuf, rbuf_size); in threadProc()
224 rbuf = tmpBuf; in threadProc()
226 free(rbuf); in threadProc()
227 rbuf = NULL; in threadProc()
230 if (!rbuf) { in threadProc()
234 … RS::dispatch->ContextGetMessage(rs->mContext, rbuf, rbuf_size, &receiveLen, sizeof(receiveLen), in threadProc()
239 ALOGE("RS Error %s", (const char *)rbuf); in threadProc()
242 rs->mErrorFunc(usrID, (const char *)rbuf); in threadProc()
258 rs->mMessageFunc(usrID, rbuf, receiveLen); in threadProc()
269 if (rbuf) { in threadProc()
270 free(rbuf); in threadProc()