Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dbase.cpp665 FILE *pipeHandle = popen(cmdString, "r"); in RunPipeComand() local
666 if (pipeHandle == nullptr) { in RunPipeComand()
671 while (!feof(pipeHandle)) { in RunPipeComand()
672 bytesOnce = fread(outBuf, 1, sizeOutBuf - bytesRead, pipeHandle); in RunPipeComand()
683 pclose(pipeHandle); in RunPipeComand()