HomeSort by relevance Sort by last modified time
    Searched refs:ln (Results 1 - 25 of 772) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
tbb_ext.c 42 .ln = "Non-volatile trusted counter",
48 .ln = "Non-volatile non-trusted counter",
54 .ln = "Trusted Boot Firmware (BL2) hash (SHA256)",
60 .ln = "Trusted World Public Key",
66 .ln = "Non-Trusted World Public Key",
72 .ln = "SoC Firmware content certificate public key",
78 .ln = "AP ROM patch hash",
84 .ln = "SCP Firmware content certificate public key",
90 .ln = "SCP Firmware (BL30) hash (SHA256)",
96 .ln = "Trusted OS Firmware content certificate public key"
    [all...]
  /external/toybox/tests/
readlink.test 18 ln -sf notfound link
21 ln -sf ../../ link
24 ln -sf file link
26 ln -sf . link
28 ln -snf link link
42 ln -s . here &&
43 ln -s ./sub dir &&
51 ln -sf / link || exit 1
55 rm -f link && ln -sf link link || exit 1
63 ln -s link1 link
    [all...]
du.test 14 ln -s ../du_2 du_test/xyz
21 ln -s . du_test/up
pwd.test 15 ln -s . sym
  /external/ltp/testcases/kernel/fs/racer/
fs_racer_file_link.sh 28 ln -s $file $DIR/$new_file 2> /dev/null
29 ln $file $DIR/$new_file 2> /dev/null
fs_racer_file_symlink.sh 28 ln -s $file $DIR/$new_file 2> /dev/null
29 ln -s $file/$file/$file $DIR/$new_file 2> /dev/null
  /external/valgrind/none/tests/
allexec_prepare_prereq 17 ln -f $1/allexec allexec32
19 ln -f -s allexec64 allexec32
23 ln -f $2/allexec allexec64
25 ln -f -s allexec32 allexec64
  /toolchain/binutils/binutils-2.25/gas/testsuite/lib/
doboth 7 ln -s $x tmp.0
11 ln -s $y tmp.0
  /tools/test/connectivity/tools/lab/metrics/
read_metric.py 77 for ln in result.splitlines():
78 if ln.startswith(' Timing cached'):
79 cached_reads += float(ln.split()[-2])
80 elif ln.startswith(' Timing buffered'):
81 buffered_reads += float(ln.split()[-2])
  /external/libmtp/src/
util.c 103 uint32_t ln, lc; local
111 ln = ( remain > 16 ) ? 16 : remain;
113 for (i = 0; i < ln; i++) {
118 if ( ln < 16 ) {
119 int width = ((16-ln)/2)*5 + (2*(ln%2));
124 for (i = 0; i < ln; i++) {
132 remain -= ln;
133 dump_boundry += ln;
  /system/extras/tests/kernel.config/
scrape_mmap_addr.cpp 16 std::string ln; local
22 while (getline(m_file, ln)) {
24 if (std::regex_match (ln,sm, reg)) {
  /external/libvorbis/lib/
lsp.h 24 extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,
  /external/python/cpython2/Mac/BuildScript/scripts/
postflight.documentation 14 ln -fhs "${FWK_DOCDIR}/index.html" "${APPDIR}/Python Documentation.html"
21 ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html"
  /test/vts/testcases/
run-on-host.mk 38 ln -fs `realpath $(TARGET_OUT)/bin` /system/
39 ln -fs `realpath $(TARGET_OUT)/etc` /system/
40 ln -fs `realpath $(TARGET_OUT)/lib` /system/
42 ln -fs `realpath $(TARGET_OUT)/lib64` /system/; \
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
ResourceBasedPeriodFormatterDataService.java 102 String ln = localeName; local
103 while (!availableLocales.contains(ln)) {
104 int ix = ln.lastIndexOf("_");
106 ln = ln.substring(0, ix);
107 } else if (!"test".equals(ln)) {
108 ln = "test";
110 ln = null;
114 if (ln != null) {
115 String name = PATH + "pfd_" + ln + ".xml"
    [all...]
  /external/f2fs-tools/fsck/
Makefile.am 12 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
13 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs
14 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs
15 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
  /art/test/115-native-bridge/
run 23 ln -sf ${LIBPATH}/libnativebridgetest.so .
27 ln -sf ${LIBPATH}/libarttest.so libarttest2.so
28 ln -sf ${LIBPATH}/libarttestd.so libarttestd2.so
  /prebuilts/go/darwin-x86/src/net/
tcpsock_plan9.go 40 func (ln *TCPListener) ok() bool { return ln != nil && ln.fd != nil && ln.fd.ctl != nil }
42 func (ln *TCPListener) accept() (*TCPConn, error) {
43 fd, err := ln.fd.acceptPlan9()
50 func (ln *TCPListener) close() error {
51 if _, err := ln.fd.ctl.WriteString("hangup"); err != nil {
52 ln.fd.ctl.Close()
55 if err := ln.fd.ctl.Close(); err != nil
    [all...]
  /prebuilts/go/linux-x86/src/net/
tcpsock_plan9.go 40 func (ln *TCPListener) ok() bool { return ln != nil && ln.fd != nil && ln.fd.ctl != nil }
42 func (ln *TCPListener) accept() (*TCPConn, error) {
43 fd, err := ln.fd.acceptPlan9()
50 func (ln *TCPListener) close() error {
51 if _, err := ln.fd.ctl.WriteString("hangup"); err != nil {
52 ln.fd.ctl.Close()
55 if err := ln.fd.ctl.Close(); err != nil
    [all...]
  /external/swiftshader/third_party/LLVM/utils/git/
find-rev 29 for ln in p.stdout:
30 if ln.startswith('commit '):
31 lastCommit = ln.split(' ',2)[1]
32 elif ln.startswith(' git-svn-id: '):
33 _,repo,_ = ln.strip().split(' ')
  /device/huawei/angler/aosp/
Android.mk 15 ln -sf /vendor/etc/izat.conf $(PRODUCT_OUT)/system/etc/izat.conf; \
16 ln -sf /vendor/etc/flp.conf $(PRODUCT_OUT)/system/etc/flp.conf; \
17 ln -sf /vendor/etc/sap.conf $(PRODUCT_OUT)/system/etc/sap.conf; \
18 ln -sf /vendor/etc/pp_calib_data_SAMSUNG_S6E3HA3X01_5P7_1440P_CMD_DUAL0.xml $(PRODUCT_OUT)/system/etc/pp_calib_data_SAMSUNG_S6E3HA3X01_5P7_1440P_CMD_DUAL0.xml; \
20 ln -sf /vendor/etc/data/dsi_config.xml $(PRODUCT_OUT)/system/etc/data/dsi_config.xml; \
21 ln -sf /vendor/etc/data/netmgr_config.xml $(PRODUCT_OUT)/system/etc/data/netmgr_config.xml; \
23 ln -sf /vendor/etc/cne/profile.txt $(PRODUCT_OUT)/system/etc/cne/profile.txt; \
25 ln -sf /vendor/bin/imscmservice $(PRODUCT_OUT)/system/bin/imscmservice; \
26 ln -sf /vendor/bin/imsdatadaemon $(PRODUCT_OUT)/system/bin/imsdatadaemon; \
27 ln -sf /vendor/bin/imsqmidaemon $(PRODUCT_OUT)/system/bin/imsqmidaemon;
    [all...]
  /external/llvm/utils/git/
find-rev 29 for ln in p.stdout:
30 if ln.startswith('commit '):
31 lastCommit = ln.split(' ',2)[1]
32 elif ln.startswith(' git-svn-id: '):
33 _,repo,_ = ln.strip().split(' ')
  /external/llvm/utils/Target/ARM/
analyze-match-table.py 12 for ln in lines:
13 ln = ln.split("{", 1)[1]
14 ln = ln.rsplit("}", 1)[0]
15 a,bc = ln.split("{", 1)
  /external/swiftshader/third_party/LLVM/utils/Target/ARM/
analyze-match-table.py 12 for ln in lines:
13 ln = ln.split("{", 1)[1]
14 ln = ln.rsplit("}", 1)[0]
15 a,bc = ln.split("{", 1)
  /external/libcxx/utils/google-benchmark/tools/
compare_bench.py 25 for ln in output_lines:
26 print(ln)

Completed in 996 milliseconds

1 2 3 4 5 6 7 8 91011>>