Home
last modified time | relevance | path

Searched full:tee (Results 1 – 25 of 563) sorted by relevance

12345678910>>...23

/external/python/cpython2/Modules/zlib/
Dconfigure51 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
54 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
59 test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log
65 test -n "${CROSS_PREFIX}" && echo Using ${NM} | tee -a configure.log
99 echo "** $0 aborting." | tee -a configure.log
113 echo 'usage:' | tee -a configure.log
114 …echo ' configure [--const] [--zprefix] [--prefix=PREFIX] [--eprefix=EXPREFIX]' | tee -a configur…
115 echo ' [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log
116 … echo ' [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
135 --sysconfdir=*) echo "ignored option: --sysconfdir" | tee -a configure.log; shift ;;
[all …]
/external/rust/crates/libz-sys/src/zlib/
Dconfigure51 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
54 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
59 test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log
65 test -n "${CROSS_PREFIX}" && echo Using ${NM} | tee -a configure.log
99 echo "** $0 aborting." | tee -a configure.log
113 echo 'usage:' | tee -a configure.log
114 …echo ' configure [--const] [--zprefix] [--prefix=PREFIX] [--eprefix=EXPREFIX]' | tee -a configur…
115 echo ' [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log
116 … echo ' [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
135 --sysconfdir=*) echo "ignored option: --sysconfdir" | tee -a configure.log; shift ;;
[all …]
/external/guice/core/test/com/google/inject/
DPerformanceComparison.java75 RootBeanDefinition tee = new RootBeanDefinition(TeeImpl.class, true);
76 tee.setLazyInit(true);
79 tee.setConstructorArgumentValues(teeValues);
83 barValues.addGenericArgumentValue(new RuntimeBeanReference("tee"));
97 beanFactory.registerBeanDefinition("tee", tee);
118 bind(Tee.class).to(TeeImpl.class);
139 final Tee tee = new TeeImpl("test");
146 Bar bar = new BarImpl(tee, 5);
147 Bar copy = new BarImpl(tee, 5);
254 Tee getTee(); in getTee()
[all …]
DInjectorTest.java97 bind(Tee.class).to(TeeImpl.class); in createFooInjector()
157 Tee getTee();
167 Tee tee;
170 void initialize(Tee tee) {
171 this.tee = tee;
175 public Tee getTee() {
176 return tee;
185 interface Tee {
192 static class TeeImpl implements Tee {
/external/arm-trusted-firmware/docs/plat/
Dwarp7.rst12 BootROM --> TF-A BL2 --> BL32(OP-TEE) --> BL33(U-Boot) --> Linux
14 In the WaRP7 port we encapsulate OP-TEE, DTB and U-Boot into a FIP. This FIP is
36 OP-TEE
39 https://github.com/OP-TEE/optee_os.git
56 - tee-header_v2.bin
57 - tee-pager_v2.bin
58 - tee-pageable_v2.bin
68 cp /path/to/optee/out/arm-plat-imx/core/tee-header_v2.bin fiptool_images
69 cp /path/to/optee/out/arm-plat-imx/core/tee-pager_v2.bin fiptool_images
70 cp /path/to/optee/out/arm-plat-imx/core/tee-pageable_v2.bin fiptool_images
[all …]
Dstm32mp1.rst89 or if Op-TEE is used:
91 ROM code -> BL2 (compiled with BL2_AT_EL3) -> OP-TEE -> BL33 (U-Boot)
115 To build TF-A with OP-TEE support for all bootable devices:
143 OP-TEE artifacts go into separate partitions as follows:
145 - teeh: tee-header_v2.stm32
146 - teed: tee-pageable_v2.stm32
147 - teex: tee-pager_v2.stm32
/external/rust/crates/libz-sys/src/zlib-ng/
Dconfigure58 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
61 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
66 test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log
131 echo "** $0 aborting." | tee -a configure.log
145 echo 'usage:' | tee -a configure.log
146 echo ' configure [--prefix=PREFIX] [--eprefix=EXPREFIX]' | tee -a configure.log
147 …echo ' [--static] [--32] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.l…
148 … echo ' [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
149 echo ' [--warn] Enables extra compiler warnings' | tee -a configure.log
150 …echo ' [--debug] Enables extra debug prints during operation' | tee -a config…
[all …]
/external/arm-trusted-firmware/docs/components/spd/
Doptee-dispatcher.rst1 OP-TEE Dispatcher
4 `OP-TEE OS`_ is a Trusted OS running as Secure EL1.
6 To build and execute OP-TEE follow the instructions at
7 `OP-TEE build.git`_
13 .. _OP-TEE OS: https://github.com/OP-TEE/build
14 .. _OP-TEE build.git: https://github.com/OP-TEE/build
/external/rust/crates/itertools/src/
Dtee.rs7 /// Common buffer object for the two tee halves
18 /// See [`.tee()`](crate::Itertools::tee) for more information.
21 pub struct Tee<I> struct
28 pub fn new<I>(iter: I) -> (Tee<I>, Tee<I>) in new() argument
32 let t1 = Tee{rcbuffer: Rc::new(RefCell::new(buffer)), id: true}; in new()
33 let t2 = Tee{rcbuffer: t1.rcbuffer.clone(), id: false}; in new()
37 impl<I> Iterator for Tee<I> implementation
75 impl<I> ExactSizeIterator for Tee<I> implementation
/external/kernel-headers/original/uapi/linux/
Dtee.h35 * This file describes the API provided by a TEE driver to user space.
37 * Each TEE driver defines a TEE specific protocol which is used for the
51 #define TEE_GEN_CAP_GP (1 << 0)/* GlobalPlatform compliant TEE */
59 * TEE Implementation ID
65 * OP-TEE specific capabilities
70 * struct tee_ioctl_version_data - TEE version
71 * @impl_id: [out] TEE implementation id
75 * Identifies the TEE implementation, @impl_id is one of TEE_IMPL_ID_* above.
86 * TEE_IOC_VERSION - query version of TEE
88 * Takes a tee_ioctl_version_data struct and returns with the TEE version
[all …]
/external/ltp/testcases/realtime/perf/latency/
Drun_auto.sh11 echo "Logging to: " | tee -a $LOG_FILE
12 echo "$LOG_FILE " | tee -a $LOG_FILE
13 echo "and to local individual .out files " | tee -a $LOG_FILE
29 echo "pthread_cond_many configuration:" | tee -a $LOG_FILE
30 echo "number of threads = $nthread " | tee -a $LOG_FILE
31 echo "number of iterations = $iter " | tee -a $LOG_FILE
32 echo "number of processes = $nproc " | tee -a $LOG_FILE
/external/ltp/testcases/kernel/syscalls/tee/
Dtee02.c9 * 1) tee() returns -1 and sets errno to EINVAL if fd_in does
11 * 2) tee() returns -1 and sets errno to EINVAL if fd_out does
13 * 3) tee() returns -1 and sets errno to EINVAL if fd_in and
25 #include "lapi/tee.h"
56 TEST(tee(*(tc->fdin), *(tc->fdout), TEE_TEST_LEN, 0)); in tee_verify()
59 tst_res(TFAIL, "tee() returned %ld, " in tee_verify()
67 "tee() failed unexpectedly; expected: %d - %s", in tee_verify()
72 tst_res(TPASS | TTERRNO, "tee() failed as expected"); in tee_verify()
/external/compiler-rt/test/sanitizer_common/TestCases/
Doptions-include.cc11 // RUN: %env_tool_opts=help=0:include='"%t.options1.txt"' %run %t 2>&1 | tee %t.out
14 // RUN: %env_tool_opts=include='"%t.options1.txt"',help=0 %run %t 2>&1 | tee %t.out
17 // RUN: %env_tool_opts=include='"%t.options-not-found.txt"',help=1 not %run %t 2>&1 | tee %t.out
21 // RUN: %env_tool_opts=include_if_exists='"%t.options-not-found.txt"',help=1 %run %t 2>&1 | tee %t.…
25 // RUN: %env_tool_opts=include='"%t.options.%b"' %run %t 2>&1 | tee %t.out
28 // RUN: %env_tool_opts=include='"%t.options-not-found.%b"' not %run %t 2>&1 | tee %t.out
31 // RUN: %env_tool_opts=include_if_exists='"%t.options.%b"' %run %t 2>&1 | tee %t.out
34 // RUN: %env_tool_opts=include_if_exists='"%t.options-not-found.%b"' %run %t 2>&1 | tee %t.out
/external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/patches/csharp_v1.0.1/
Dgit_repo.patch45 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
47 +RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.6 main" | tee /etc/a…
48 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
49 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
50 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
63 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
65 +RUN echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.lis…
66 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
67 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
68 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
/external/grpc-grpc/tools/interop_matrix/patches/csharp_v1.0.1/
Dgit_repo.patch45 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
47 +RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.6 main" | tee /etc/a…
48 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
49 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
50 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
63 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
65 +RUN echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.lis…
66 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
67 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
68 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
/external/ComputeLibrary/scripts/
Dcheck_bad_style.sh16 …e-dir=assembly --exclude-dir=convolution --exclude-dir=arm_gemm "/\*\*$" $FILES | tee bad_style.log
24 …clude-dir=convolution --exclude-dir=arm_gemm --exclude=Doxyfile "@brief" $FILES | tee bad_style.log
32 …dir=arm_gemm "\buint " --exclude-dir=cl_kernels --exclude-dir=cs_shaders $FILES | tee bad_style.log
40 …ir=assembly --exclude-dir=convolution --exclude-dir=arm_gemm "float32_t" $FILES | tee bad_style.log
48 …=assembly --exclude-dir=convolution --exclude-dir=arm_gemm "arm[_ ]\?cv" $FILES | tee bad_style.log
56 …ly --exclude-dir=convolution --exclude-dir=arm_gemm "#.*if.*defined[^(]" $FILES | tee bad_style.log
64 …embly --exclude-dir=convolution --exclude-dir=arm_gemm "#else$\|#endif$" $FILES | tee bad_style.log
72 …olution --exclude-dir=arm_gemm "ARM_COMPUTE_AARCH64_V8_2" ./tests/validation/CL | tee bad_style.log
/external/cpuinfo/test/dmesg/
Dgalaxy-a8-2018.log1791 [ 1.383135] [7: swapper/0: 1] Trustonic TEE: mobicore_init: MobiCore mcDrvModuleApi ver…
1792 [ 1.383316] [7: swapper/0: 1] Trustonic TEE: mobicore_probe: MobiCore t-base-EXYNOS64-A…
1793 [ 1.383649] [7: swapper/0: 1] Trustonic TEE: __mc_switch_core: <- cpu=0x00000001, activ…
1795 [ 1.383709] [0: tee_fastcall: 1733] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 0 -> 1
3504 [ 3.322667] [4: kworker/4:1: 1964] Trustonic TEE: mtk|*** Trustonic TEE MTK, Build: Jul 26 2…
3505 [ 3.322689] [4: kworker/4:1: 1964] Trustonic TEE: mtk|MTK: t-base-EXYNOS64-Android-400A-V012…
3507 [ 3.323481] [5: mcDriverDaemon: 2786] Trustonic TEE: mobicore_start:
3518 [ 3.323569] [5: mcDriverDaemon: 2786] Trustonic TEE: mobicore_start: SWd uses LPAE MMU table fo…
3519 [ 3.324985] [5: mcDriverDaemon: 2786] Trustonic TEE: admin_open: daemon connection open, TGID 2…
3524 [ 3.432355] [2: kworker/2:1: 1963] Trustonic TEE: 601|TA SPT2 : Starting.
[all …]
Dgalaxy-s8-global.log302 [ 1.088975] [5: swapper/0: 1] Trustonic TEE: mobicore_init: MobiCore mcDrvModuleApi ver…
303 [ 1.089096] [5: swapper/0: 1] Trustonic TEE: mobicore_probe: MobiCore t-base-EXYNOS64-A…
304 [ 1.089281] [5: swapper/0: 1] Trustonic TEE: __mc_switch_core: <- cpu=0x00000001, activ…
306 [ 1.089346] [0: tee_fastcall: 1730] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 0 -> 1
2574 [ 2.419006] [6: kworker/6:1: 1254] Trustonic TEE: mtk|*** Trustonic TEE MTK, Build: Feb 3 2…
2575 [ 2.419018] [6: kworker/6:1: 1254] Trustonic TEE: mtk|MTK: t-base-EXYNOS64-Android-400A-V011…
2576 [ 2.421585] [5: mcDriverDaemon: 3130] Trustonic TEE: mobicore_start:
2587 [ 2.421655] [5: mcDriverDaemon: 3130] Trustonic TEE: mobicore_start: SWd uses LPAE MMU table fo…
2588 [ 2.422124] [3: mcDriverDaemon: 3130] Trustonic TEE: admin_open: daemon connection open, TGID 3…
2589 [ 2.527368] [0: kworker/0:1: 1275] Trustonic TEE: 601|TA SPT2 : Starting.
[all …]
Dgalaxy-j7-prime.log452 [ 4.564337] [6: mcDriverDaemon: 2117] [c6] Trustonic TEE: admin_open: opened by PID(2117), name…
453 [ 4.564551] [0: kworker/0:2: 1239] [c0] Trustonic TEE: *** <t MTK, Build: May 5 2016, 21:33…
454 [ 4.564568] [0: kworker/0:2: 1239] [c0] Trustonic TEE: t-base-EXYNOS64-Android-310B-V007-201…
455 [ 4.565875] [1: mcDriverDaemon: 2117] [c1] Trustonic TEE: mobicore_start:
465 [ 4.565999] [1: mcDriverDaemon: 2117] [c1] Trustonic TEE: mobicore_start: SWd uses LPAE MMU tab…
466 [ 4.567271] [7: mcDriverDaemon: 2117] [c7] Trustonic TEE: admin_open: admin connection open, PI…
488 [ 4.678027] [3: kworker/3:1: 1479] [c3] Trustonic TEE: 501|SEC_DRIVER_2.0_2016.03.10
489 [ 4.703853] [3: kworker/3:1: 1479] [c3] Trustonic TEE: 601|drTima: starting main driver thre…
490 [ 4.703873] [3: kworker/3:1: 1479] [c3] Trustonic TEE: 601|SCRYPTO DRV [INFO]: OpenSSL prema…
491 [ 4.703887] [3: kworker/3:1: 1479] [c3] Trustonic TEE: 601|SCRYPTO DRV [INFO]: Embedded …
[all …]
/external/toybox/toys/posix/
Dtee.c1 /* tee.c - cat to multiple outputs.
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/tee.html
7 USE_TEE(NEWTOY(tee, "ia", TOYFLAG_USR|TOYFLAG_BIN))
9 config TEE
10 bool "tee"
13 usage: tee [-ai] [FILE...]
/external/vogar/src/vogar/commands/
DCommand.java54 private final PrintStream tee; field in Command
66 this.tee = null; in Command()
75 this.tee = builder.tee; in Command()
125 if (tee != null) { in gatherOutput()
126 tee.println(outputLine); in gatherOutput()
239 private PrintStream tee = null; field in Command.Builder
253 this.tee = other.tee; in Builder()
282 public Builder tee(PrintStream printStream) { in tee() method in Command.Builder
283 tee = printStream; in tee()
/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/
DREADME.md18 The secure firmware utilizes the OP-TEE implementation of the Global Platform specifications. The O…
19 …this repository but is obtained directly from the public release. The build of OP-TEE is based on a
20 native Linux build, however the following installation steps allow OP-TEE to be built under Windows…
27 See the [optee_os documentation](https://github.com/OP-TEE/optee_os/blob/master/documentation/build…
51 If you do not already have a version of the OP-TEE OS repo cloned on your machine you may run:
57 #### 5. Build OP-TEE OS for the target platform
65 Additional information on Microsoft IoT fork of OP-TEE OS can be found [here](https://github.com/ms…
/external/iptables/extensions/
Dlibxt_TEE.c2 * "TEE" target extension for iptables
45 "TEE target options:\n" in tee_tg_help()
57 printf(" TEE gw:%s", xtables_ipaddr_to_numeric(&info->gw.in)); in tee_tg_print()
59 printf(" TEE gw:%s", xtables_ipaddr_to_anyname(&info->gw.in)); in tee_tg_print()
70 printf(" TEE gw:%s", xtables_ip6addr_to_numeric(&info->gw.in6)); in tee_tg6_print()
72 printf(" TEE gw:%s", xtables_ip6addr_to_anyname(&info->gw.in6)); in tee_tg6_print()
131 .name = "TEE",
145 .name = "TEE",
Dlibxt_TEE.txlate1 # iptables-translate -t mangle -A PREROUTING -j TEE --gateway 192.168.0.2 --oif eth0
4 # iptables-translate -t mangle -A PREROUTING -j TEE --gateway 192.168.0.2
7 ip6tables-translate -t mangle -A PREROUTING -j TEE --gateway ab12:00a1:1112:acba::
10 ip6tables-translate -t mangle -A PREROUTING -j TEE --gateway ab12:00a1:1112:acba:: --oif eth0
/external/arm-trusted-firmware/plat/hisilicon/hikey960/
Dhikey960_def.h24 * DDR for OP-TEE (32MB from 0x3E00000-0x3FFFFFFF) is divided in several
26 * - Secure DDR (default is the top 16MB) used by OP-TEE
27 * - Non-secure DDR used by OP-TEE (shared memory and padding) (4MB)
28 * - Secure DDR (4MB aligned on 4MB) for OP-TEE's "Secure Data Path" feature
29 * - Non-secure DDR (8MB) reserved for OP-TEE's future use

12345678910>>...23