Home
last modified time | relevance | path

Searched refs:tee (Results 1 - 25 of 75) sorted by relevance

123

/third_party/zlib/
H A Dconfigure53 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
56 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
61 test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log
67 test -n "${CROSS_PREFIX}" && echo Using ${NM} | tee -a configure.log
103 echo "** $0 aborting." | tee -a configure.log
117 echo 'usage:' | tee -a configure.log
118 echo ' configure [--const] [--zprefix] [--prefix=PREFIX] [--eprefix=EXPREFIX]' | tee -a configure.log
119 echo ' [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log
120 echo ' [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
139 --sysconfdir=*) echo "ignored option: --sysconfdir" | tee
[all...]
/third_party/ffmpeg/libavformat/
H A Dtee.c147 TeeContext *tee = avf->priv_data; in close_slaves() local
150 for (i = 0; i < tee->nb_slaves; i++) { in close_slaves()
151 close_slave(&tee->slaves[i]); in close_slaves()
153 av_freep(&tee->slaves); in close_slaves()
432 TeeContext *tee = avf->priv_data; in tee_process_slave_failure() local
433 TeeSlave *tee_slave = &tee->slaves[slave_idx]; in tee_process_slave_failure()
435 tee->nb_alive--; in tee_process_slave_failure()
439 if (!tee->nb_alive) { in tee_process_slave_failure()
440 av_log(avf, AV_LOG_ERROR, "All tee outputs failed.\n"); in tee_process_slave_failure()
447 slave_idx, av_err2str(err_n), tee in tee_process_slave_failure()
454 TeeContext *tee = avf->priv_data; tee_write_header() local
520 TeeContext *tee = avf->priv_data; tee_write_trailer() local
537 TeeContext *tee = avf->priv_data; tee_write_packet() local
[all...]
/third_party/ltp/testcases/kernel/mce-test/drivers/simple/
H A Ddriver.sh83 echo -e "\n$this_case:" | tee -a $RDIR/result
91 trigger 2>$err_log | tee -a $RDIR/result
95 get_result 2>$err_log | tee -a $RDIR/result
97 $CDIR/$case_sh verify 2>$err_log | tee -a $RDIR/result
/third_party/ltp/testcases/kernel/mce-test/stress/tools/fs-metadata/
H A Dk-thread.sh32 echo [$(date "+%m-%d %H:%M:%S")] $* | tee -a $K_LOG
37 echo [$(date "+%m-%d %H:%M:%S")] $* | tee -a $K_LOG
79 echo $$ | tee -a $K_THREADS_PID
H A Dfs-metadata.sh105 echo [$(date "+%m-%d %H:%M:%S")] $* | tee -a $K_LOG
142 echo [$(date "+%m-%d %H:%M:%S")] $* | tee -a $K_LOG
/third_party/ltp/testcases/kernel/mce-test/drivers/kdump/
H A Ddriver.sh269 echo -e "\n$this_case:" | tee -a $RDIR/result
273 trigger_case | tee -a $RDIR/result
281 (get_result; verify_case) | tee -a $RDIR/result
283 echo " Failed: Failed to trigger kdump" | tee -a $RDIR/result
293 echo "Test run complete" | tee -a $RDIR/result
/third_party/node/test/fixtures/wpt/streams/readable-streams/
H A Dpatched-global.any.js37 const [branch1, branch2] = rs.tee();
40 }, 'ReadableStream tee() should not touch Object.prototype properties');
55 const [branch1, branch2] = rs.tee();
59 }, 'ReadableStream tee() should not call the global ReadableStream');
120 const [branch1, branch2] = new ReadableStream().tee();
123 }, 'tee() should not call Promise.prototype.then()');
/third_party/node/deps/v8/tools/
H A Drun-perf.sh39 echo $MAXIMUM_SAMPLE_RATE | sudo tee $SAMPLE_RATE_CONFIG_FILE
45 echo 0 | sudo tee $KERNEL_MAP_CONFIG_FILE
/third_party/python/Lib/test/
H A Dtest_itertools.py1398 a, b = tee([]) # test empty iterator
1402 a, b = tee(irange(n)) # test 100% interleaved
1405 a, b = tee(irange(n)) # test 0% interleaved
1409 a, b = tee(irange(n)) # test dealloc of leading iterator
1415 a, b = tee(irange(n)) # test dealloc of trailing iterator
1425 its = tee(irange(n))
1433 self.assertRaises(TypeError, tee)
1434 self.assertRaises(TypeError, tee, 3)
1435 self.assertRaises(TypeError, tee, [1,2], 'x')
1436 self.assertRaises(TypeError, tee, [
[all...]
/third_party/icu/tools/scripts/
H A Dreticket76 ( svn pg svn:log --revprop -r ${rev} . | tee ${TMPF} | sed -e 's%^%< %g' ) || exit 1
94 ( ( sed -e "s%^ticket:${from}%ticket:${to}%" ${TMPF}.1 && tail -n +2 ${TMPF} ) || exit 2 ) | tee ${TMPF}.fix | sed -e 's%^%> %g'
/third_party/mesa3d/src/freedreno/computerator/examples/
H A Dtest-regfile.sh43 gen_shader 1 | ./computerator -g 128,1,1 | tee reference.log
47 gen_shader $n | ./computerator -g 128,1,1 | tee new.log
/third_party/icu/icu4c/source/samples/udata/
H A DMakefile69 $(INVOKE) ./$(TARGET2) | tee $(TARGET2).out
70 $(INVOKE) ./$(TARGET1) | tee $(TARGET1).out
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dtee.c51 result = tee(pipefd1[0], pipefd2[1], 32768, SPLICE_F_NONBLOCK); in tee_0100()
53 t_error("%s tee failed\n", __func__); in tee_0100()
60 t_error("%s tee failed, buf = %s\n", __func__, buf); in tee_0100()
92 result = tee(fd, pipefd2[1], 32768, SPLICE_F_NONBLOCK); in tee_0200()
/third_party/skia/third_party/externals/icu/source/samples/udata/
H A DMakefile69 $(INVOKE) ./$(TARGET2) | tee $(TARGET2).out
70 $(INVOKE) ./$(TARGET1) | tee $(TARGET1).out
/third_party/mesa3d/.gitlab-ci/common/
H A Dinit-stage2.sh91 echo performance | tee -a /sys/devices/system/cpu/cpufreq/policy*/scaling_governor || true
106 echo $FREEDRENO_HANGCHECK_MS | tee -a /sys/kernel/debug/dri/128/hangcheck_period_ms
/third_party/typescript/tests/baselines/reference/
H A DinferTypeConstraintInstantiationCircularity.js14 tee: T;
26 tee: T;
/third_party/ltp/testcases/kernel/containers/netns/
H A Dnetns_lib.sh179 tee /proc/sys/net/ipv6/conf/veth0/accept_dad \
182 tee /proc/sys/net/ipv6/conf/veth1/accept_dad \
/third_party/ltp/testcases/network/stress/icmp/multi-diffnic/
H A Dicmp4-multi-diffnic01233 | setkey -c 2>&1 | tee $ipsec_log
240 $LTP_RSH $RHOST ${LTPROOT}/testcases/bin/output_ipsec_conf dst $IPSEC_PROTO $IPSEC_MODE $SPI $lhost_addr $rhost_addr' | PATH=/sbin:/usr/sbin:$PATH setkey -c' 2>&1 | tee $ipsec_log
/third_party/ltp/testcases/network/stress/udp/uni-basic/
H A Dudp4-uni-basic01232 | setkey -c 2>&1 | tee $ipsec_log
239 $LTP_RSH $RHOST ${LTPROOT}/testcases/bin/output_ipsec_conf dst $IPSEC_PROTO $IPSEC_MODE $SPI $lhost_addr $rhost_addr' | PATH=/sbin:/usr/sbin:$PATH setkey -c' 2>&1 | tee $ipsec_log
/third_party/toybox/scripts/
H A Dmcm-buildall.sh126 make_toolchain 2>&1 | tee "$OUTPUT"/log/${RENAME:-$PART1}-${TYPE}.log
136 TARGET=$BOOTSTRAP make_toolchain 2>&1 | tee -a "$OUTPUT/log/$BOOTSTRAP"-host.log
H A Dcross.sh39 } | tee cross-log-$TARGET.txt
/third_party/musl/src/linux/
H A Dtee.c5 ssize_t tee(int src, int dest, size_t len, unsigned flags) in tee() function
/third_party/ltp/include/lapi/
H A Dtee.h14 static inline ssize_t tee(int fd_in, int fd_out, in tee() function
/third_party/musl/scripts/
H A Druntest_linux.sh184 " | tee Summary.txt
189 " | tee -a Summary.txt
190 echo "[Skip List]: " | tee -a Summary.txt
192 cat ${SHDIR}/SkipList.txt | tee -a Summary.txt
/third_party/icu/tools/multi/c/
H A DMakefile47 ( make $(MAKE_OPTS) -C $(BLD)/$*/icu/source 2>&1 all install | tee $(BLD)/$*/build.log ) || ( mv $(BLD)/$*/build.log $(BLD)/$*/build.err ; false )
52 ( make $(MAKE_OPTS) -C $(BLD)/r$*/icu/source 2>&1 all install | tee $(BLD)/r$*/build.log ) || ( mv $(BLD)/r$*/build.log $(BLD)/r$*/build.err ; false )

Completed in 9 milliseconds

123