Home
last modified time | relevance | path

Searched refs:DIR (Results 1 – 9 of 9) sorted by relevance

/libcore/support/src/test/java/tests/resources/x509/
Dcreate.sh19 DIR=$(dirname "$0")
21 if [ ! -f "$DIR/privkey.pem" ]; then
22 openssl genrsa -out "$DIR/privkey.pem" 2048
25 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch > /tmp/cert-rsa-r…
26 …t-rsa-req.pem -pubkey -noout | openssl rsa -pubin -pubout -outform der > "$DIR/cert-rsa-pubkey.der"
27DIR/default.cnf" -days 3650 -extensions usr_cert -req -signkey "$DIR/privkey.pem" -outform d -set_…
30 openssl asn1parse -in "$DIR/cert-rsa.der" -inform d -out "$DIR/cert-rsa-tbs.der" -noout -strparse 4
31 SIG_OFFSET=$(openssl asn1parse -in "$DIR/cert-rsa.der" -inform d | tail -1 | cut -f1 -d:)
32 openssl asn1parse -in "$DIR/cert-rsa.der" -inform d -strparse "$SIG_OFFSET" -noout -out "$DIR/cert-…
35 openssl x509 -in "$DIR/cert-rsa.der" -inform d -noout -startdate -enddate > "$DIR/cert-rsa-dates.tx…
[all …]
/libcore/ojluni/src/test/
Dartrun-testng17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21 $DIR/artrun -Xmx512m org.testng.TestNG -verbose 3 "$DIR/$TESTNG_FILE"
Dgen-test-list22 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
23 test_property_files="$(find "$DIR" -name TEST.properties)"
/libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
DFtpURLConnection.java109 static final int DIR = 3; field in FtpURLConnection
359 type = DIR; in decodePath()
448 if (filename == null || type == DIR) { in getInputStream()
624 type = DIR;
650 value = (type == ASCII ? "a" : type == DIR ? "d" : "i");
/libcore/ojluni/src/main/java/sun/net/ftp/
DFtpDirEntry.java44 FILE, DIR, PDIR, CDIR, LINK enumConstant
/libcore/ojluni/src/main/native/
DUnixNativeDispatcher.c128 typedef DIR* fdopendir_func(int);
667 DIR* dir; in Java_sun_nio_fs_UnixNativeDispatcher_opendir0()
680 DIR* dir; in Java_sun_nio_fs_UnixNativeDispatcher_fdopendir()
697 DIR* dirp = jlong_to_ptr(dir); in Java_sun_nio_fs_UnixNativeDispatcher_closedir()
745 DIR* dirp = jlong_to_ptr(value); in Java_sun_nio_fs_UnixNativeDispatcher_readdir()
DUnixFileSystem_md.c307 DIR *dir = NULL; in Java_java_io_UnixFileSystem_list0()
DUNIXProcess_md.c429 DIR *dp; in closeDescriptors()
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
DFtpClient.java285 …file.setType(dir ? FtpDirEntry.Type.DIR : (line.charAt(0) == 'l' ? FtpDirEntry.Type.LINK : FtpDirE… in parseLine()
356 file.setType(FtpDirEntry.Type.DIR); in parseLine()