Home
last modified time | relevance | path

Searched full:chost (Results 1 – 25 of 29) sorted by relevance

12

/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dconfigure.yml37 chost: arm-linux-gnueabi
45 chost: arm-linux-gnueabi
53 chost: arm-linux-gnueabihf
61 chost: arm-linux-gnueabihf
69 chost: arm-linux-gnueabihf
77 chost: arm-linux-gnueabihf
85 chost: aarch64-linux-gnu
93 chost: aarch64-linux-gnu
101 chost: aarch64-linux-gnu
109 chost: aarch64-linux-gnu
[all …]
Dpkgcheck.yml28 chost: arm-linux-gnueabihf
36 chost: aarch64-linux-gnu
44 chost: powerpc-linux-gnu
52 chost: powerpc64le-linux-gnu
111 CHOST: ${{ matrix.chost }}
122 CHOST: ${{ matrix.chost }}
137 CHOST: ${{ matrix.chost }}
152 CHOST: ${{ matrix.chost }}
/external/curl/tests/unit/
Dunit1660.c51 const char *chost; /* if non-NULL, use to lookup with */
109 static void showsts(struct stsentry *e, const char *chost)
112 printf("'%s' is not HSTS\n", chost);
115 chost, e->host, e->expires,
125 const char *chost;
157 chost = headers[i].chost ? headers[i].chost : headers[i].host;
158 e = Curl_hsts(h, chost, TRUE);
159 showsts(e, chost);
165 chost = "expire.example";
167 e = Curl_hsts(h, chost, TRUE);
[all …]
/external/linux-kselftest/tools/testing/selftests/wireguard/qemu/
DMakefile57 CHOST := aarch64-linux-musl macro
69 CHOST := aarch64_be-linux-musl macro
81 CHOST := arm-linux-musleabi macro
93 CHOST := armeb-linux-musleabi macro
106 CHOST := x86_64-linux-musl macro
117 CHOST := i686-linux-musl macro
128 CHOST := mips64-linux-musl macro
140 CHOST := mips64el-linux-musl macro
152 CHOST := mips-linux-musl macro
164 CHOST := mipsel-linux-musl macro
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/
Dabicheck.sh17 Obeys CHOST, CONFIGURE_ARGS, CFLAGS, and LDFLAGS.
83 if test "$CHOST" = ""
85 # Note: don't export CHOST here, as we don't want configure seeing it
88 CHOST=$(detect_chost)
96 # Canonicalize CHOST to work around bug in original zlib's configure
101 CHOST=$(sh $TESTDIR/../tools/config.sub $CHOST)
103 if test "$CHOST" = ""
105 echo "abicheck: SKIP, as we don't know CHOST"
109 ABIFILE="test/abi/zlib$suffix-$ABI_GIT_COMMIT-$CHOST$M32.abi"
Dpkgcheck.sh22 $ export CHOST=arm-linux-gnueabihf
23 …rt CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-arm.cmake -DCMAKE_C_COMPILER_TARGET=${CHOST}"
27 $ export CHOST=aarch64-linux-gnu
28 …MAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-aarch64.cmake -DCMAKE_C_COMPILER_TARGET=${CHOST}"
32 $ export CHOST=powerpc-linux-gnu
37 $ export CHOST=powerpc64le-linux-gnu
41 $ export CC=${CHOST}-gcc
/external/rust/crates/libz-sys/src/zlib-ng/tools/
Dconfig.sub2 # Canonicalize CHOST.
6 # https://wiki.gentoo.org/wiki/CHOST
/external/autotest/site_utils/
Dtest_runner_utils.py316 for chost in companion_hosts.split(" "):
317 _write_host_info(results_directory, _HOST_INFO_SUBDIR, chost,
318 ch_info[chost], False)
570 for chost in companion_hosts.split(" "):
573 logging.info('Auto-detecting labels for %s', chost)
575 chost_labels += list(set(_auto_detect_labels(chost)))
576 ch_info[chost] = host_info.HostInfo(chost_labels, {})
/external/cronet/third_party/boringssl/src/third_party/googletest/docs/
Dpkgconfig.md122 which is obviously wrong and points to the `CBUILD` and not `CHOST` root. In
143 including `${CHOST}` in build system calls, see the excellent tutorial by Diego
/external/cronet/third_party/googletest/src/docs/
Dpkgconfig.md126 which is obviously wrong and points to the `CBUILD` and not `CHOST` root. In
147 including `${CHOST}` in build system calls, see the excellent tutorial by Diego
/external/googletest/docs/
Dpkgconfig.md122 which is obviously wrong and points to the `CBUILD` and not `CHOST` root. In
143 including `${CHOST}` in build system calls, see the excellent tutorial by Diego
/external/curl/tests/data/
Dtest46949 %hex[Warning: The argument '%e2%80%9chost:' starts with a unicode quote where maybe an ]hex%
Dtest47052 %hex[Warning: The argument '%e2%80%9chost:fake%e2%80%9d' starts with a unicode quote where ]hex%
/external/python/cpython3/Lib/xmlrpc/
Dclient.py1255 chost, self._extra_headers, x509 = self.get_host_info(host)
1256 self._connection = host, http.client.HTTPConnection(chost)
1380 chost, self._extra_headers, x509 = self.get_host_info(host)
1381 self._connection = host, http.client.HTTPSConnection(chost,
/external/python/cpython2/Lib/
Dxmlrpclib.py1387 chost, self._extra_headers, x509 = self.get_host_info(host)
1389 self._connection = host, httplib.HTTPConnection(chost)
1519 chost, self._extra_headers, x509 = self.get_host_info(host)
1520 self._connection = host, HTTPS(chost, None, context=self.context, **(x509 or {}))
/external/rust/crates/libz-sys/src/zlib/
Dconfigure34 if [ -n "${CHOST}" ]; then
35 …uname="`echo "${CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e '…
36 CROSS_PREFIX="${CHOST}-"
DChangeLog327 - Fix CROSS_PREFIX executable testing, CHOST extract, mingw* [Torok]
/external/python/cpython2/Modules/zlib/
Dconfigure34 if [ -n "${CHOST}" ]; then
35 …uname="`echo "${CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e '…
36 CROSS_PREFIX="${CHOST}-"
/external/icu/icu4c/source/data/zone/
DtzdbNames.txt207 sd{"CHOST"}
/external/cronet/third_party/icu/source/data/zone/
DtzdbNames.txt207 sd{"CHOST"}
/external/rust/crates/libz-sys/src/zlib-ng/
Dconfigure25 if [ -n "${CHOST}" ]; then
26 # normalize the chost before parsing it
27 NORM_CHOST=$(sh "$SRCDIR"/tools/config.sub $CHOST)
29 CROSS_PREFIX="${CHOST}-"
2172 if test $QEMU_ARCH; then QEMU_RUN="qemu-$QEMU_ARCH -L /usr/${CHOST}/"; fi
/external/libvpx/build/make/
Dconfigure.sh783 gcctarget="${CHOST:-$(gcc -dumpmachine 2> /dev/null)}"
/external/autotest/client/common_lib/
Dutils.py1667 if 'CHOST' in os.environ:
1668 args.append('--host=' + os.environ['CHOST'])
/external/sdv/vsomeip/third_party/boost/date_time/data/
Ddate_time_zonespec.csv272 "Asia/Choibalsan","CHOT","CHOT","CHOST","CHOST","+08:00:00","+01:00:00","-1;6;3","+02:00:00","-1;6;…
/external/cronet/third_party/icu/source/common/
Dputil.cpp814 {-32400, 1, "CHOT", "CHOST", "Asia/Choibalsan"},

12