Home
last modified time | relevance | path

Searched refs:pRet (Results 1 – 4 of 4) sorted by relevance

/foundation/graphic/standard/frameworks/vsync/include/
Dreturn_value_tester.h46 auto pRet = std::any_cast<T>(&retval); in Get() local
47 if (pRet != nullptr) { in Get()
48 ret = *pRet; in Get()
/foundation/graphic/standard/frameworks/wm/include/
Dsingleton_container.h47 auto pRet = std::any_cast<sptrT>(&instance); in Get() local
48 if (pRet != nullptr) { in Get()
49 ret = *pRet; in Get()
/foundation/graphic/standard/utils/gslogger/export/
Dgslogger.h57 auto pRet = std::any_cast<sptrT>(&data_); in GetData() local
58 if (pRet != nullptr) { in GetData()
59 ret = *pRet; in GetData()
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/
Dnstackx_file_manager.c514 int32_t pRet = 0; in WriteToFile() local
539 pRet = (int32_t)pwrite(fileInfo->fd, payLoad, length, (int64_t)fileOffset); in WriteToFile()
540 if (pRet >= 0) { in WriteToFile()
541 ret = (uint16_t)pRet; in WriteToFile()
545 if ((pRet < 0) || (ret < length)) { in WriteToFile()
546 LOGE(TAG, "fwrite error %d write %hu target %hu pRet:%d", GetErrno(), ret, length, pRet); in WriteToFile()