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

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/regress/
sftp-perm.sh 22 rm -f ${COPY} ${COPY}.1
23 test -d ${COPY}.dd && { rmdir ${COPY}.dd || fatal "rmdir ${COPY}.dd"; }
86 "put $DATA $COPY" \
88 "cmp $DATA $COPY" \
89 "test ! -f $COPY"
93 "chmod 0700 $COPY" \
94 "touch $COPY; chmod 0400 $COPY"
    [all...]
sftp-batch.sh 8 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd ${BATCH}.*
11 get $DATA $COPY
12 put ${COPY} ${COPY}.1
13 rm ${COPY}
14 -put ${COPY} ${COPY}.
    [all...]
sftp-badcmds.sh 10 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd
12 rm -f ${COPY}
14 echo "get $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
16 test -f ${COPY} && fail "existing copy after get nonexistent"
18 rm -f ${COPY}.dd/*
23 test -f ${COPY}.dd/$x && fail "existing copy after get nonexistent
    [all...]
sftp-cmds.sh 19 QUOTECOPY=${COPY}".\"blah\""
20 QUOTECOPY_ARG=${COPY}'.\"blah\"'
22 SPACECOPY="${COPY} this has spaces.txt"
23 SPACECOPY_ARG="${COPY}\ this\ has\ spaces.txt"
25 GLOBMETACOPY="${COPY} [metachar].txt"
27 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd ${COPY}.dd
    [all...]
sftp.sh 9 get $DATA ${COPY}.1
10 put $DATA ${COPY}.2
19 rm -f ${COPY}.1 ${COPY}.2
26 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
27 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
31 rm -f ${COPY}.1 ${COPY}.2
    [all...]
stderr-after-eof.sh 7 rm -f ${DATA} ${COPY}
15 2> ${COPY}
20 egrep 'Disconnecting: Received extended_data after EOF' ${COPY} &&
22 cmp ${DATA} ${COPY} || fail "stderr corrupt"
24 rm -f ${DATA} ${COPY}
ssh-com-sftp.sh 10 get $DATA ${COPY}.1
11 put $DATA ${COPY}.2
51 rm -f ${COPY}.1 ${COPY}.2
58 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
59 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
64 rm -f ${COPY}.1 ${COPY}.2
    [all...]
stderr-data.sh 11 2> ${COPY}
16 cmp ${DATA} ${COPY} || fail "stderr corrupt"
17 rm -f ${COPY}
21 > /dev/null 2> ${COPY}
26 cmp ${DATA} ${COPY} || fail "stderr corrupt"
27 rm -f ${COPY}
transfer.sh 8 rm -f ${COPY}
9 ${SSH} -n -q -$p -F $OBJ/ssh_proxy somehost cat ${DATA} > ${COPY}
13 cmp ${DATA} ${COPY} || fail "corrupted copy"
17 rm -f ${COPY}
19 ${SSH} -q -$p -F $OBJ/ssh_proxy somehost "cat > ${COPY}"
23 cmp $DATA ${COPY} || fail "corrupted copy"
26 rm -f ${COPY}
conch-ciphers.sh 16 rm -f ${COPY}
21 127.0.0.1 "cat ${DATA}" 2>/dev/null | cat > ${COPY}
25 cmp ${DATA} ${COPY} || fail "corrupted copy"
27 rm -f ${COPY}
putty-ciphers.sh 17 rm -f ${COPY}
19 cat ${DATA} > ${COPY}
23 cmp ${DATA} ${COPY} || fail "corrupted copy"
25 rm -f ${COPY}
putty-transfer.sh 15 rm -f ${COPY}
20 -i putty.rsa$p cat ${DATA} > ${COPY}
24 cmp ${DATA} ${COPY} || fail "corrupted copy"
28 rm -f ${COPY}
32 "cat > ${COPY}"
36 cmp $DATA ${COPY} || fail "corrupted copy"
40 rm -f ${COPY}
sftp-chroot.sh 26 ${SFTP} -S "$SSH" -F $OBJ/ssh_config host:/${FILENAME} $COPY \
29 cmp $PRIVDATA $COPY || fail "$PRIVDATA $COPY differ"
scp.sh 16 DIR=${COPY}.dd
17 DIR2=${COPY}.dd2
26 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
30 verbose "$tid: simple copy local file to local file"
32 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
33 cmp ${DATA} ${COPY} || fail "corrupted copy"
35 verbose "$tid: simple copy local file to remote file"
37 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed
    [all...]
  /external/elfutils/libelf/
gelf_update_ehdr.c 77 /* Copy the data. */
79 #define COPY(name) \
81 COPY (e_type);
82 COPY (e_machine);
83 COPY (e_version);
84 COPY (e_entry);
85 COPY (e_phoff);
86 COPY (e_shoff);
87 COPY (e_flags);
88 COPY (e_ehsize)
    [all...]
gelf_getshdr.c 58 /* Copy the elements one-by-one. */
68 #define COPY(name) \
70 COPY (sh_name);
71 COPY (sh_type);
72 COPY (sh_flags);
73 COPY (sh_addr);
74 COPY (sh_offset);
75 COPY (sh_size);
76 COPY (sh_link);
77 COPY (sh_info)
    [all...]
gelf_update_shdr.c 74 #define COPY(name) \
76 COPY (sh_name);
77 COPY (sh_type);
78 COPY (sh_flags);
79 COPY (sh_addr);
80 COPY (sh_offset);
81 COPY (sh_size);
82 COPY (sh_link);
83 COPY (sh_info);
84 COPY (sh_addralign)
    [all...]
gelf_getehdr.c 72 #define COPY(name) \
74 COPY (e_type);
75 COPY (e_machine);
76 COPY (e_version);
77 COPY (e_entry);
78 COPY (e_phoff);
79 COPY (e_shoff);
80 COPY (e_flags);
81 COPY (e_ehsize);
82 COPY (e_phentsize)
    [all...]
gelf_getsym.c 77 /* This might look like a simple copy operation but it's
79 #define COPY(name) \
81 COPY (st_name);
82 /* Please note that we can simply copy the `st_info' element since
85 COPY (st_info);
86 COPY (st_other);
87 COPY (st_shndx);
88 COPY (st_value);
89 COPY (st_size);
gelf_update_sym.c 83 #define COPY(name) \
85 COPY (st_name);
86 COPY (st_value);
87 COPY (st_size);
88 /* Please note that we can simply copy the `st_info' element since
91 COPY (st_info);
92 COPY (st_other);
93 COPY (st_shndx);
gelf_getphdr.c 65 /* Copy the elements one-by-one. */
93 #define COPY(Name) result->Name = phdr->Name
94 COPY (p_type);
95 COPY (p_offset);
96 COPY (p_vaddr);
97 COPY (p_paddr);
98 COPY (p_filesz);
99 COPY (p_memsz);
100 COPY (p_flags);
101 COPY (p_align)
    [all...]
gelf_getsymshndx.c 96 /* This might look like a simple copy operation but it's
98 #define COPY(name) \
100 COPY (st_name);
101 /* Please note that we can simply copy the `st_info' element since
104 COPY (st_info);
105 COPY (st_other);
106 COPY (st_shndx);
107 COPY (st_value);
108 COPY (st_size);
gelf_update_symshndx.c 108 #define COPY(name) \
110 COPY (st_name);
111 COPY (st_value);
112 COPY (st_size);
113 /* Please note that we can simply copy the `st_info' element since
116 COPY (st_info);
117 COPY (st_other);
118 COPY (st_shndx);
gelf_update_phdr.c 96 #define COPY(name) \
98 COPY (p_type);
99 COPY (p_offset);
100 COPY (p_vaddr);
101 COPY (p_paddr);
102 COPY (p_filesz);
103 COPY (p_memsz);
104 COPY (p_flags);
105 COPY (p_align);
130 /* Just copy the data. *
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetOpcodes.h 61 /// register-to-register copy into a specific register class. This is only
65 /// instructions are insufficient. It is emitted as a COPY MachineInstr.
83 /// COPY - Target-independent register copy. This instruction can also be
84 /// used to copy between subregisters of virtual registers.
85 COPY = 13

Completed in 338 milliseconds

1 2 3 4 5 6 7 8 91011>>