Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dedk2module.c3674 SECURITY_ATTRIBUTES saAttr; in _PyPopen() local
3681 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); in _PyPopen()
3682 saAttr.bInheritHandle = TRUE; in _PyPopen()
3683 saAttr.lpSecurityDescriptor = NULL; in _PyPopen()
3685 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) in _PyPopen()
3703 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) in _PyPopen()
3717 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) in _PyPopen()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c5264 SECURITY_ATTRIBUTES saAttr; in _PyPopen() local
5271 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); in _PyPopen()
5272 saAttr.bInheritHandle = TRUE; in _PyPopen()
5273 saAttr.lpSecurityDescriptor = NULL; in _PyPopen()
5275 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) in _PyPopen()
5293 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) in _PyPopen()
5307 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) in _PyPopen()