Lines Matching refs:tmpBuf
554 void *tmpBuf = OsalMemCalloc(len);
555 return (tmpBuf == NULL) ? 0 : (uintptr_t)LOS_PaddrQuery(tmpBuf);
560 void *tmpBuf = NULL;
563 tmpBuf = LOS_PaddrToKVaddr((paddr_t)buf);
564 OsalMemFree(tmpBuf);
574 uintptr_t tmpBuf = 0;
583 if ((tmpBuf = Pl022AllocBufPhy(msg->len)) == 0) {
589 dmaMsgRx.destAddr = (msg->rbuf == NULL) ? tmpBuf : (uintptr_t)(LOS_PaddrQuery(msg->rbuf));
596 dmaMsgTx.srcAddr = (msg->wbuf == NULL) ? tmpBuf : (uintptr_t)(LOS_PaddrQuery(msg->wbuf));
621 Pl022RleaseBufPhy(tmpBuf);