/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}`" ""
|
/external/chromium_org/third_party/icu/source/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...] |
/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/content/ |
UndoOperation.java | 29 public abstract class UndoOperation<DATA> implements Parcelable { 34 * @param owner Who owns the data being modified by this undo state; must be 57 public DATA getOwnerData() { 58 return (DATA)mOwner.getData(); 72 * Return true if this operation actually contains modification data. The
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/ |
validating_util_test.cc | 24 #define DATA "{'foo': 'bar'}" 34 // The data being wrapped. 35 const char kUnwrappedData[] = DATA; 37 // The timestamp for the wrapped data. 40 // The checksum and data together. 42 DATA; 44 // "Randomly" corrupted checksummed data. The "m" in "checksum" is capitalized. 46 DATA; 48 // The checksum in the middle of data. 49 const char kChecksumInMiddle[] = DATA "\n 84 std::string data; local 110 std::string data; local 146 std::string data = ValidatingUtil::Wrap(kUnwrappedData, kTimestamp); local [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
MessageDigestBenchmark.java | 26 private static final byte[] DATA = new byte[DATA_SIZE]; 29 DATA[i] = (byte)i; 45 digest.update(DATA, 0, DATA_SIZE);
|
/packages/apps/Camera2/src/com/android/camera/data/ |
DataUtils.java | 17 package com.android.camera.data; 31 MediaStore.Images.Media.DATA 38 int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
|
/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 */
|