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

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/regress/
rekey.sh 4 tid="rekey during transfer data"
6 DATA=${OBJ}/data
10 rm -f ${COPY} ${LOG} ${DATA}
11 touch ${DATA}
12 dd if=/bin/ls${EXEEXT} of=${DATA} bs=1k seek=511 count=1 > /dev/null 2>&1
17 cat $DATA | \
24 cmp $DATA ${COPY} || fail "corrupted copy"
32 rm -f ${COPY} ${LOG} ${DATA}
stderr-after-eof.sh 4 tid="stderr data after eof"
6 DATA=/etc/motd
7 DATA=${OBJ}/data
22 # setup data
23 rm -f ${DATA} ${COPY}
24 cp /dev/null ${DATA}
26 (date;echo $i) | $CHECKSUM >> ${DATA}
30 exec sh -c \'"exec > /dev/null; sleep 2; cat ${DATA} 1>&2 $s"\' \
37 fail "ext data received after eof
    [all...]
transfer.sh 4 tid="transfer data"
6 DATA=/bin/ls${EXEEXT}
12 ${SSH} -n -q -$p -F $OBJ/ssh_proxy somehost cat ${DATA} > ${COPY}
14 fail "ssh cat $DATA failed"
16 cmp ${DATA} ${COPY} || fail "corrupted copy"
21 dd if=$DATA obs=${s} 2> /dev/null | \
24 fail "ssh cat $DATA failed"
26 cmp $DATA ${COPY} || fail "corrupted copy"
multiplex.sh 13 DATA=/bin/ls${EXEEXT}
38 ${SSH} -F $OBJ/ssh_config -S$CTL otherhost cat ${DATA} > ${COPY}
39 test -f ${COPY} || fail "ssh -Sctl: failed copy ${DATA}"
40 cmp ${DATA} ${COPY} || fail "ssh -Sctl: corrupted copy of ${DATA}"
44 ${SSH} -F $OBJ/ssh_config -S $CTL otherhost cat ${DATA} > ${COPY}
45 test -f ${COPY} || fail "ssh -S ctl: failed copy ${DATA}"
46 cmp ${DATA} ${COPY} || fail "ssh -S ctl: corrupted copy of ${DATA}"
50 echo "get ${DATA} ${COPY}" |
    [all...]
putty-transfer.sh 4 tid="putty transfer data"
6 DATA=/bin/ls
23 -i putty.rsa$p 127.0.0.1 cat ${DATA} > ${COPY}
25 fail "ssh cat $DATA failed"
27 cmp ${DATA} ${COPY} || fail "corrupted copy"
32 dd if=$DATA obs=${s} 2> /dev/null | \
37 fail "ssh cat $DATA failed"
39 cmp $DATA ${COPY} || fail "corrupted copy"
sftp.sh 6 DATA=/bin/ls${EXEEXT}
12 get $DATA ${COPY}.1
13 put $DATA ${COPY}.2
29 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
30 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
cipher-speed.sh 12 DATA=/bin/ls
13 DATA=/bsd
30 < ${DATA} ) 2>&1 | getbytes
46 < ${DATA} ) 2>&1 | getbytes
conch-ciphers.sh 6 DATA=/bin/ls
24 127.0.0.1 "cat ${DATA}" 2>/dev/null | cat > ${COPY}
26 fail "ssh cat $DATA failed"
28 cmp ${DATA} ${COPY} || fail "corrupted copy"
putty-ciphers.sh 6 DATA=/bin/ls
22 127.0.0.1 cat ${DATA} > ${COPY}
24 fail "ssh cat $DATA failed"
26 cmp ${DATA} ${COPY} || fail "corrupted copy"
ssh-com-sftp.sh 6 DATA=/bin/ls${EXEEXT}
12 get $DATA ${COPY}.1
13 put $DATA ${COPY}.2
60 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
61 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
sftp-cmds.sh 10 DATA=/bin/ls${EXEEXT}
86 echo "get $DATA $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
88 cmp $DATA ${COPY} || fail "corrupted copy after get"
92 echo "get \"$DATA\" $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
94 cmp $DATA ${COPY} || fail "corrupted copy after get"
98 cp $DATA ${QUOTECOPY}
107 cp $DATA "$SPACECOPY"
114 cp $DATA "$GLOBMETACOPY"
123 echo "get $DATA ${COPY}.dd" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
125 cmp $DATA ${COPY}.dd/`basename $DATA` || fail "corrupted copy after get
    [all...]
scp.sh 15 DATA=/bin/ls${EXEEXT}
33 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
34 cmp ${DATA} ${COPY} || fail "corrupted copy"
38 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
39 cmp ${DATA} ${COPY} || fail "corrupted copy"
43 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
44 cmp ${DATA} ${COPY} || fail "corrupted copy"
48 cp ${DATA} ${COPY}
54 cp ${DATA} ${COPY}
60 cp ${DATA} ${COPY
    [all...]
stderr-data.sh 1 # $OpenBSD: stderr-data.sh,v 1.2 2002/03/27 22:39:52 markus Exp $
4 tid="stderr data transfer"
6 DATA=/bin/ls${EXEEXT}
14 exec sh -c \'"exec > /dev/null; sleep 3; cat ${DATA} 1>&2 $s"\' \
20 cmp ${DATA} ${COPY} || fail "stderr corrupt"
24 exec sh -c \'"echo a; exec > /dev/null; sleep 3; cat ${DATA} 1>&2 $s"\' \
30 cmp ${DATA} ${COPY} || fail "stderr corrupt"
reexec.sh 6 DATA=/bin/ls${EXEEXT}
27 cat ${DATA} > ${COPY}
29 fail "ssh cat $DATA failed"
31 cmp ${DATA} ${COPY} || fail "corrupted copy"
dynamic-forward.sh 8 DATA=/bin/ls${EXEEXT}
46 somehost cat $DATA > $OBJ/ls.copy
47 test -f $OBJ/ls.copy || fail "failed copy $DATA"
48 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
sftp-glob.sh 42 DATA=${DIR}/file
54 touch "${DATA}" "${GLOB1}" "${GLOB2}" "${QUOTE}" "${SPACE}"
58 sftp_ls "${DIR}/fil*" "file glob" "${DATA}" ""
59 sftp_ls "${BASE}/d*" "dir glob" "`basename ${DATA}`" ""
forwarding.sh 5 DATA=/bin/ls${EXEEXT}
29 somehost cat $DATA > $OBJ/ls.copy
30 test -f $OBJ/ls.copy || fail "failed copy $DATA"
31 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
  /external/icu4c/test/cintltst/
cposxtst.c 41 const char* DATA[] = {
71 for (i=0; DATA[i]!=NULL; i+=4) {
72 int32_t set_num = T_CString_stringToInteger(DATA[i], 10);
73 int32_t msg_num = T_CString_stringToInteger(DATA[i+1], 10);
80 u_uastrcpy(exp, DATA[i+2]);
92 str, DATA[i+2]);
95 if (len != (int32_t) uprv_strlen(DATA[i+2])) {
97 len, uprv_strlen(DATA[i+2]));
100 if (uprv_strcmp(err, DATA[i+3]) != 0) {
102 err, DATA[i+3])
    [all...]
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 30 * The ContentProvider contract for associating data with ana data array account.
31 * This may be used by providers that want to store this data in a standard way.
36 * A reference to the name of the account to which this data belongs
42 * A reference to the type of the account to which this data belongs
48 * The sync data associated with this account.
51 public static final String DATA = "data";
59 private static final String[] DATA_PROJECTION = new String[]{Columns.DATA, Columns._ID};
85 return c.getBlob(c.getColumnIndexOrThrow(Columns.DATA));
    [all...]
  /external/doclava/res/assets/templates/
lists.cs 1 var DATA = [
  /external/tcpdump/
tftp.h 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 #define SEGSIZE 512 /* data segment size */
50 #define DATA 03 /* data packet */
62 char th_data[1]; /* data or error string */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/arpa/
tftp.h 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 #define SEGSIZE 512 /* data segment size */
45 #define DATA 03 /* data packet */
56 char th_data[1]; /* data or error string */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
tftp.h 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 #define SEGSIZE 512 /* data segment size */
45 #define DATA 03 /* data packet */
56 char th_data[1]; /* data or error string */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
tftp.h 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 #define SEGSIZE 512 /* data segment size */
45 #define DATA 03 /* data packet */
56 char th_data[1]; /* data or error string */
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_ThumbnailsTest.java 83 values.put(Thumbnails.DATA, path);
94 assertEquals(path, c.getString(c.getColumnIndex(Thumbnails.DATA)));
107 assertEquals(path, c.getString(c.getColumnIndex(Thumbnails.DATA)));
126 new String[]{ Media._ID, Media.DATA }, null, null, null);
129 String imagePath = c.getString(c.getColumnIndex(Media.DATA));
151 new String[] { Thumbnails._ID, Thumbnails.DATA, Thumbnails.IMAGE_ID});
156 String thumbPath = c.getString(c.getColumnIndex(Thumbnails.DATA));
168 new String[] { Thumbnails._ID, Thumbnails.DATA, Thumbnails.IMAGE_ID});
178 new String[]{ Media._ID, Media.DATA}, null, null, null);
181 imagePath = c.getString(c.getColumnIndex(Media.DATA));
    [all...]

Completed in 859 milliseconds

1 2 3 4 5 6 7 8 91011>>