Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/plugin-lib/
H A DbuildebpfPlugin.py61 foutput = serr.decode("utf-8")
63 foutput = rawout.decode("utf-8")
67 return proc, foutput
H A DnsPlugin.py140 foutput = serr.decode("utf-8")
142 foutput = rawout.decode("utf-8")
146 return proc, foutput
/OK3568_Linux_fs/external/rktoolkit/
H A Dvendor_storage.c127 FILE *foutput = NULL; in vendor_storage_read() local
153 foutput=fopen(output,"wb"); in vendor_storage_read()
154 if (!foutput) { in vendor_storage_read()
158 fwrite(req->data, req->len, 1, foutput); in vendor_storage_read()
159 fclose(foutput); in vendor_storage_read()
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/
H A Dtdc.py202 foutput = serr.decode("utf-8", errors="ignore")
204 foutput = rawout.decode("utf-8", errors="ignore")
206 foutput = "Command \"{}\" timed out\n".format(command)
211 return proc, foutput
232 (proc, foutput) = exec_cmd(args, pm, stage, cmd)
238 print("\n{} *** Error message: \"{}\"".format(prefix, foutput),