Home
last modified time | relevance | path

Searched refs:sp (Results 1 – 11 of 11) sorted by relevance

/littlefs-3.7.0-3.6.0/scripts/
Ddata.py23 import subprocess as sp namespace
170 proc = sp.Popen(cmd,
171 stdout=sp.PIPE,
172 stderr=sp.PIPE if not args.get('verbose') else None,
201 proc = sp.Popen(cmd,
202 stdout=sp.PIPE,
203 stderr=sp.PIPE if not args.get('verbose') else None,
242 proc = sp.Popen(cmd,
243 stdout=sp.PIPE,
244 stderr=sp.PIPE if not args.get('verbose') else None,
Dcode.py23 import subprocess as sp namespace
170 proc = sp.Popen(cmd,
171 stdout=sp.PIPE,
172 stderr=sp.PIPE if not args.get('verbose') else None,
201 proc = sp.Popen(cmd,
202 stdout=sp.PIPE,
203 stderr=sp.PIPE if not args.get('verbose') else None,
242 proc = sp.Popen(cmd,
243 stdout=sp.PIPE,
244 stderr=sp.PIPE if not args.get('verbose') else None,
Dbench.py24 import subprocess as sp namespace
568 return sp.call(cmd)
581 proc = sp.Popen(cmd,
582 stdout=sp.PIPE,
583 stderr=sp.PIPE if not args.get('verbose') else None,
611 proc = sp.Popen(cmd,
612 stdout=sp.PIPE,
613 stderr=sp.PIPE if not args.get('verbose') else None,
655 proc = sp.Popen(cmd,
656 stdout=sp.PIPE,
[all …]
Dtest.py24 import subprocess as sp namespace
585 return sp.call(cmd)
598 proc = sp.Popen(cmd,
599 stdout=sp.PIPE,
600 stderr=sp.PIPE if not args.get('verbose') else None,
628 proc = sp.Popen(cmd,
629 stdout=sp.PIPE,
630 stderr=sp.PIPE if not args.get('verbose') else None,
672 proc = sp.Popen(cmd,
673 stdout=sp.PIPE,
[all …]
Dperf.py26 import subprocess as sp namespace
188 err = sp.call(perf + command, close_fds=False)
270 proc = sp.Popen(cmd,
271 stdout=sp.PIPE,
272 stderr=sp.PIPE if not args.get('verbose') else None,
319 proc = sp.Popen(cmd,
320 stdout=sp.PIPE,
321 stderr=sp.PIPE if not args.get('verbose') else None,
417 proc = sp.Popen(cmd,
418 stdout=sp.PIPE,
[all …]
Dstructs.py20 import subprocess as sp namespace
158 proc = sp.Popen(cmd,
159 stdout=sp.PIPE,
160 stderr=sp.PIPE if not args.get('verbose') else None,
199 proc = sp.Popen(cmd,
200 stdout=sp.PIPE,
201 stderr=sp.PIPE if not args.get('verbose') else None,
Dreadblock.py3 import subprocess as sp namespace
13 return sp.run(['xxd', '-g1', '-'], input=block).returncode
Dperfbd.py24 import subprocess as sp namespace
178 proc = sp.Popen(cmd,
179 stdout=sp.PIPE,
180 stderr=sp.PIPE if not args.get('verbose') else None,
227 proc = sp.Popen(cmd,
228 stdout=sp.PIPE,
229 stderr=sp.PIPE if not args.get('verbose') else None,
Dwatch.py22 import subprocess as sp namespace
164 proc = sp.Popen(command,
Dcov.py23 import subprocess as sp namespace
225 proc = sp.Popen(cmd,
226 stdout=sp.PIPE,
227 stderr=sp.PIPE if not args.get('verbose') else None,
/littlefs-3.7.0-3.6.0/
Dlfs.c891 unsigned sp = 0; in lfs_dir_traverse() local
932 LFS_ASSERT(sp < LFS_DIR_TRAVERSE_DEPTH); in lfs_dir_traverse()
935 stack[sp] = (struct lfs_dir_traverse){ in lfs_dir_traverse()
952 sp += 1; in lfs_dir_traverse()
960 data = &stack[sp-1].tag; in lfs_dir_traverse()
997 stack[sp] = (struct lfs_dir_traverse){ in lfs_dir_traverse()
1012 sp += 1; in lfs_dir_traverse()
1051 if (sp > 0) { in lfs_dir_traverse()
1054 dir = stack[sp-1].dir; in lfs_dir_traverse()
1055 off = stack[sp-1].off; in lfs_dir_traverse()
[all …]