/external/chromium_org/tools/gyp/test/ios/ |
gyptest-archs.py | 36 def GetStdout(cmdlist): 37 proc = subprocess.Popen(cmdlist, stdout=subprocess.PIPE)
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-archs.py | 20 def GetStdout(cmdlist): 21 proc = subprocess.Popen(cmdlist, stdout=subprocess.PIPE)
|
gyptest-app.py | 18 def GetStdout(cmdlist): 19 return subprocess.Popen(cmdlist,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pipes.py | 242 cmdlist = list[0][1] 248 cmdlist = cmdlist + ' |\n' + cmd 250 cmdlist = cmdlist + '\n' + cmd 257 cmdlist = trapcmd + '\n' + cmdlist + '\n' + rmcmd 259 return cmdlist
|
pdb.py | 294 cmdlist = self.commands[self.commands_bnum] 296 cmdlist.append(cmd+' '+arg) 298 cmdlist.append(cmd) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pipes.py | 242 cmdlist = list[0][1] 248 cmdlist = cmdlist + ' |\n' + cmd 250 cmdlist = cmdlist + '\n' + cmd 257 cmdlist = trapcmd + '\n' + cmdlist + '\n' + rmcmd 259 return cmdlist
|
pdb.py | 294 cmdlist = self.commands[self.commands_bnum] 296 cmdlist.append(cmd+' '+arg) 298 cmdlist.append(cmd) [all...] |
/system/core/fastbootd/ |
protocol.c | 59 static struct fastboot_cmd *cmdlist; variable in typeref:struct:fastboot_cmd 70 cmd->next = cmdlist; 71 cmdlist = cmd; 157 for (cmd = cmdlist; cmd; cmd = cmd->next) {
|
/system/core/sh/ |
nodes.h | 52 struct nodelist *cmdlist; member in struct:npipe
|
nodes.c | 137 sizenodelist(n->npipe.cmdlist); 234 new->npipe.cmdlist = copynodelist(n->npipe.cmdlist);
|
jobs.c | 106 STATIC void cmdlist(union node *, int); 1271 for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) { 1312 cmdlist(n->nfor.args, 1); 1334 cmdlist(n->ncmd.args, 1); 1335 cmdlist(n->ncmd.redirect, 0); 1380 cmdlist(union node *np, int sep) function
|
show.c | 103 for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
|
eval.c | 499 for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) 504 for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
|
parser.c | 264 pipenode->npipe.cmdlist = lp; [all...] |
/hardware/qcom/msm8960/kernel-headers/linux/ |
msm_kgsl.h | 557 struct kgsl_ibdesc __user *cmdlist; member in struct:kgsl_submit_commands
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_kgsl.h | 855 * @cmdlist: User pointer to a list of kgsl_ibdesc structures 856 * @numcmds: Number of commands listed in cmdlist 872 struct kgsl_ibdesc __user *cmdlist; member in struct:kgsl_submit_commands
|
/hardware/qcom/msm8x74/kernel-headers/linux/ |
msm_kgsl.h | 557 struct kgsl_ibdesc __user *cmdlist; member in struct:kgsl_submit_commands
|
/hardware/qcom/msm8x74/original-kernel-headers/linux/ |
msm_kgsl.h | 855 * @cmdlist: User pointer to a list of kgsl_ibdesc structures 856 * @numcmds: Number of commands listed in cmdlist 872 struct kgsl_ibdesc __user *cmdlist; member in struct:kgsl_submit_commands
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
xcode_emulation.py | 274 def _GetStdout(self, cmdlist): 275 job = subprocess.Popen(cmdlist, stdout=subprocess.PIPE) 279 raise GypError('Error %d running %s' % (job.returncode, cmdlist[0])) [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 102 input ::= cmdlist. 103 cmdlist ::= cmdlist ecmd. label 104 cmdlist ::= ecmd. label [all...] |