Home
last modified time | relevance | path

Searched refs:devnull (Results 1 – 25 of 64) sorted by relevance

123

/external/libmicrohttpd/src/testspdy/
Dtest_proxies.c106 pid_t devnull; in main() local
110 devnull = open("/dev/null", O_WRONLY); in main()
111 if (-1 == devnull) in main()
113 if (1 != devnull) in main()
115 dup2(devnull, 1); in main()
116 close(devnull); in main()
130 pid_t devnull; in main() local
135 devnull = open("/dev/null", O_WRONLY); in main()
136 if (-1 == devnull) in main()
138 if (1 != devnull) in main()
[all …]
Dtest_session_timeout.c272 pid_t devnull; in childproc() local
287 devnull = open("/dev/null", O_WRONLY); in childproc()
288 if (-1 == devnull) in childproc()
290 if (1 != devnull) in childproc()
292 dup2(devnull, 1); in childproc()
293 close(devnull); in childproc()
295 devnull = open("/dev/null", O_WRONLY); in childproc()
296 if (-1 == devnull) in childproc()
298 if (2 != devnull) in childproc()
300 dup2(devnull, 2); in childproc()
[all …]
Dtest_misc.c78 int devnull; in create_child() local
81 devnull = open("/dev/null", O_WRONLY); in create_child()
82 if (-1 == devnull) in create_child()
84 if (1 != devnull) in create_child()
86 dup2(devnull, 1); in create_child()
87 close(devnull); in create_child()
/external/chromium-trace/catapult/telemetry/telemetry/core/
Dcros_interface.py34 with open(os.devnull, 'w') as devnull:
37 stdout=devnull,
38 stderr=devnull,
39 stdin=devnull,
59 with open(os.devnull, 'w') as devnull:
64 stdin=devnull)
120 with open(os.devnull, 'w') as devnull:
123 stdin=devnull,
124 stdout=devnull,
125 stderr=devnull)
[all …]
/external/libvpx/libvpx/test/
Dstress.sh37 && eval "curl --retry 1 -L -o $1 ${DATA_URL}${root} ${devnull}")
96 "${enc_args}" ${devnull} &
106 "${enc_args}" ${devnull} &
121 "-o ${VPX_TEST_OUTPUT_DIR}/${i}.rt.webm" ${devnull} &
127 eval "${decoder}" "-t ${threads}" "${webm}" "--noblit" ${devnull} &
Dvpxdec.sh39 cat "${input}" | eval "${VPX_TEST_PREFIX}" "${decoder}" - "$@" ${devnull}
49 eval "${VPX_TEST_PREFIX}" "${decoder}" "$input" "$@" ${devnull}
Dvpxenc.sh103 "$@" ${devnull}
115 "$@" ${devnull}
Dset_maps.sh39 ${devnull}
Dsimple_encoder.sh39 ${devnull}
Dtwopass_encoder.sh40 ${devnull}
Dpostproc.sh41 ${devnull}
/external/autotest/client/site_tests/firmware_TouchMTB/tools/
Dmtplot_play.py49 devnull = open(os.devnull, 'w')
50 proc = subprocess.Popen(mtplot_cmd.split(), stdout=devnull)
70 devnull.close()
/external/skia/tools/
Dgit-sync-deps49 with open(os.devnull, 'w') as devnull:
52 subprocess.call([git, '--version'], stdout=devnull)
145 with open(os.devnull, 'w') as devnull:
149 cwd=directory, stderr=devnull):
/external/autotest/client/bin/
Dautotestd_monitor18 devnull = open(os.devnull, 'w') variable
26 return subprocess.Popen(argv, stderr=devnull)
28 return subprocess.Popen(argv, stdout=outstream, stderr=devnull)
/external/ImageMagick/PerlMagick/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
31 my $devnull = devnull(); function
38 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
82 system("pexports \"$d\" >\"$wrkdir/libMagickCore.def\" 2>$devnull");
88 …em("dlltool -D \"$d\" -d \"$wrkdir/libMagickCore.def\" -l \"$wrkdir/libMagickCore.a\" 2>$devnull");
131 my $devnull = devnull(); function
132 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
/external/ImageMagick/PerlMagick/quantum/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
31 my $devnull = devnull(); function
38 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
82 system("pexports \"$d\" >\"$wrkdir/libMagickCore.def\" 2>$devnull");
88 …em("dlltool -D \"$d\" -d \"$wrkdir/libMagickCore.def\" -l \"$wrkdir/libMagickCore.a\" 2>$devnull");
131 my $devnull = devnull(); function
132 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
/external/ImageMagick/PerlMagick/default/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
31 my $devnull = devnull(); function
38 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
82 system("pexports \"$d\" >\"$wrkdir/libMagickCore.def\" 2>$devnull");
88 …em("dlltool -D \"$d\" -d \"$wrkdir/libMagickCore.def\" -l \"$wrkdir/libMagickCore.a\" 2>$devnull");
131 my $devnull = devnull(); function
132 my $conf = `identify -list Configure 2>$devnull` || `convert -list Configure 2>$devnull`;
/external/wpa_supplicant_8/src/utils/
Dos_unix.c190 int devnull; in os_daemon() local
195 devnull = open("/dev/null", O_RDWR); in os_daemon()
196 if (devnull < 0) in os_daemon()
199 if (dup2(devnull, STDIN_FILENO) < 0) { in os_daemon()
200 close(devnull); in os_daemon()
204 if (dup2(devnull, STDOUT_FILENO) < 0) { in os_daemon()
205 close(devnull); in os_daemon()
209 if (dup2(devnull, STDERR_FILENO) < 0) { in os_daemon()
210 close(devnull); in os_daemon()
/external/autotest/client/site_tests/platform_DebugDaemonGetPerfData/
Dplatform_DebugDaemonGetPerfData.py136 devnull = open('/dev/null', 'w')
142 process = subprocess.Popen(cmd, stdout=devnull, shell=True)
153 devnull.close()
/external/libvpx/libvpx/build/make/
Diosbuild.sh18 devnull='> /dev/null 2>&1'
62 ${devnull}
64 eval make dist ${devnull}
318 devnull=
/external/autotest/server/site_tests/autoupdate_EndToEndTest/
Dupdate_engine_performance_monitor.py198 si = open(os.devnull, 'r')
199 so = open(os.devnull, 'a+')
200 se = open(os.devnull, 'a+', 0)
/external/autotest/scheduler/
Dmonitor_db_babysitter98 devnull = open(os.devnull, 'w')
99 self.proc = subprocess.Popen(self.args, stdout=devnull)
/external/libcxx/utils/libcxx/
Dcompiler.py202 source_files = os.devnull
229 cmd, out, err, rc = self.compile(os.devnull, out=os.devnull,
270 cmd = self.compileCmd('-', os.devnull, flags)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dperf_profiler.py237 with open(os.devnull, 'w') as devnull:
242 stdout=subprocess.PIPE, stderr=devnull).communicate()[0]
/external/google-benchmark/
Dmingw.py122 with open(os.devnull, 'w') as devnull:
123 subprocess.check_call(cmd, stdout = devnull)

123