Searched refs:cmdstring (Results 1 – 2 of 2) sorted by relevance
/external/openssh/ |
D | logintest.c | 90 char cmdstring[256], stripline[8]; in testAPI() local 161 snprintf(cmdstring, sizeof(cmdstring), "who | grep '%s '", in testAPI() 163 system(cmdstring); in testAPI() 181 system(cmdstring); in testAPI() 208 snprintf(cmdstring, sizeof(cmdstring), "last | grep '%s ' | head -3", in testAPI() 210 system(cmdstring); in testAPI()
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 4679 char *cmdstring; in os2emx_popen2() local 4682 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) in os2emx_popen2() 4693 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize); in os2emx_popen2() 4711 char *cmdstring; in os2emx_popen3() local 4714 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) in os2emx_popen3() 4725 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize); in os2emx_popen3() 4743 char *cmdstring; in os2emx_popen4() local 4746 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) in os2emx_popen4() 4757 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize); in os2emx_popen4() 4780 _PyPopen(char *cmdstring, int mode, int n, int bufsize) in _PyPopen() argument [all …]
|