Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dos.cpp173 SECURITY_ATTRIBUTES saAttr = {sizeof(SECURITY_ATTRIBUTES)}; in ExecCmd() local
174 saAttr.bInheritHandle = TRUE; // Pipe handles are inherited by child process. in ExecCmd()
175 saAttr.lpSecurityDescriptor = NULL; in ExecCmd()
181 if (!CreatePipe(&p.hRead, &p.hWrite, &saAttr, 0)) in ExecCmd()
/external/python/cpython2/Modules/
Dposixmodule.c5544 SECURITY_ATTRIBUTES saAttr; in _PyPopen() local
5551 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); in _PyPopen()
5552 saAttr.bInheritHandle = TRUE; in _PyPopen()
5553 saAttr.lpSecurityDescriptor = NULL; in _PyPopen()
5555 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) in _PyPopen()
5573 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) in _PyPopen()
5587 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) in _PyPopen()