Searched refs:pipeHandle (Results 1 – 3 of 3) sorted by relevance
| /developtools/hdc/hdc_rust/src/cffi/ |
| D | base.cpp | 40 FILE *pipeHandle = popen(cmdString, "r"); in RunPipeComand() local 41 if (pipeHandle == nullptr) { in RunPipeComand() 46 while (!feof(pipeHandle)) { in RunPipeComand() 47 bytesOnce = fread(outBuf, 1, sizeOutBuf - bytesRead, pipeHandle); in RunPipeComand() 58 pclose(pipeHandle); in RunPipeComand()
|
| D | usb_util.cpp | 83 FILE *pipeHandle = popen(cmdString, "r"); in RunPipeComand() local 84 if (pipeHandle == nullptr) { in RunPipeComand() 89 while (!feof(pipeHandle)) { in RunPipeComand() 90 bytesOnce = fread(outBuf, 1, sizeOutBuf - bytesRead, pipeHandle); in RunPipeComand() 101 pclose(pipeHandle); in RunPipeComand()
|
| /developtools/hdc/src/common/ |
| D | base.cpp | 710 FILE *pipeHandle = popen(cmdString, "r"); in RunPipeComand() local 711 if (pipeHandle == nullptr) { in RunPipeComand() 716 while (!feof(pipeHandle)) { in RunPipeComand() 717 bytesOnce = fread(outBuf, 1, sizeOutBuf - bytesRead, pipeHandle); in RunPipeComand() 728 pclose(pipeHandle); in RunPipeComand()
|