Home
last modified time | relevance | path

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

/test/vts/drivers/shell/
DShellDriver.cpp57 FILE* output_fp; in ExecShellCommandPopen() local
60 output_fp = popen(command.c_str(), "r"); in ExecShellCommandPopen()
61 if (output_fp == NULL) { in ExecShellCommandPopen()
71 while (!feof(output_fp)) { in ExecShellCommandPopen()
72 bytes_read = fread(buff, 1, sizeof(buff) - 1, output_fp); in ExecShellCommandPopen()
74 if (ferror(output_fp)) { in ExecShellCommandPopen()
87 result->exit_code = pclose(output_fp) / 256; in ExecShellCommandPopen()