Home
last modified time | relevance | path

Searched defs:path (Results 1 – 25 of 61) sorted by relevance

123

/libcore/luni/src/main/java/java/net/
DInetUnixAddress.java31 public InetUnixAddress(String path) { in InetUnixAddress()
38 public InetUnixAddress(byte[] path) { in InetUnixAddress()
DURLStreamHandler.java98 String path; in parseURL() local
200 private static String relativePath(String base, String path) { in relativePath()
244 String authority, String userInfo, String path, String query, in setURL()
/libcore/luni/src/main/native/
Djava_io_File.cpp42 ScopedUtfChars path(env, javaPath); in File_canonicalizePath() local
57 ScopedUtfChars path(env, javaPath); in File_setLastModifiedImpl() local
78 ScopedReaddir(const char* path) { in ScopedReaddir()
124 ScopedUtfChars path(env, javaPath); in readDirectory() local
Dreadlink.cpp23 bool readlink(const char* path, std::string& result) { in readlink()
Dcanonicalize_path.cpp48 bool canonicalize_path(const char* path, std::string& resolved) { in canonicalize_path()
/libcore/luni/src/test/java/tests/security/
DCertPathBuilderTest.java40 public abstract void validateCertPath(CertPath path); in validateCertPath()
48 CertPath path = builderResult.getCertPath(); in testCertPathBuilder() local
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java66 @Override public boolean access(String path, int mode) throws ErrnoException { in access()
71 @Override public void chmod(String path, int mode) throws ErrnoException { in chmod()
76 @Override public void chown(String path, int uid, int gid) throws ErrnoException { in chown()
151 @Override public void lchown(String path, int uid, int gid) throws ErrnoException { in lchown()
166 @Override public StructStat lstat(String path) throws ErrnoException { in lstat()
171 @Override public void mkdir(String path, int mode) throws ErrnoException { in mkdir()
176 @Override public void mkfifo(String path, int mode) throws ErrnoException { in mkfifo()
181 @Override public FileDescriptor open(String path, int flags, int mode) throws ErrnoException { in open()
233 @Override public String readlink(String path) throws ErrnoException { in readlink()
253 @Override public void remove(String path) throws ErrnoException { in remove()
[all …]
DMemoryMappedFile.java50 public static MemoryMappedFile mmapRO(String path) throws ErrnoException { in mmapRO()
DOs.java45 public boolean access(String path, int mode) throws ErrnoException; in access()
48 public void chmod(String path, int mode) throws ErrnoException; in chmod()
49 public void chown(String path, int uid, int gid) throws ErrnoException; in chown()
94 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
98 public StructStat lstat(String path) throws ErrnoException; in lstat()
100 public void mkdir(String path, int mode) throws ErrnoException; in mkdir()
101 public void mkfifo(String path, int mode) throws ErrnoException; in mkfifo()
107 public FileDescriptor open(String path, int flags, int mode) throws ErrnoException; in open()
119 public String readlink(String path) throws ErrnoException; in readlink()
123 public void remove(String path) throws ErrnoException; in remove()
[all …]
DForwardingOs.java54 …public boolean access(String path, int mode) throws ErrnoException { return os.access(path, mode);… in access()
57 public void chmod(String path, int mode) throws ErrnoException { os.chmod(path, mode); } in chmod()
58 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);… in chown()
102 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown()
106 public StructStat lstat(String path) throws ErrnoException { return os.lstat(path); } in lstat()
108 public void mkdir(String path, int mode) throws ErrnoException { os.mkdir(path, mode); } in mkdir()
109 public void mkfifo(String path, int mode) throws ErrnoException { os.mkfifo(path, mode); } in mkfifo()
115 …public FileDescriptor open(String path, int flags, int mode) throws ErrnoException { return os.ope… in open()
126 public String readlink(String path) throws ErrnoException { return os.readlink(path); } in readlink()
130 public void remove(String path) throws ErrnoException { os.remove(path); } in remove()
[all …]
/libcore/luni/src/test/java/libcore/dalvik/system/
DPathClassLoaderTest.java42 String path = pathClassLoader.findLibrary("duplicated"); in testLibraryPathSearchOrder() local
43 assertEquals(applicationLib.toString(), path); in testLibraryPathSearchOrder() local
/libcore/luni/src/main/java/libcore/net/url/
DUrlUtils.java34 public static String canonicalizePath(String path, boolean discardRelativePrefix) { in canonicalizePath()
89 public static String authoritySafePath(String authority, String path) { in authoritySafePath()
/libcore/luni/src/main/java/java/io/
DFileOutputStream.java115 public FileOutputStream(String path) throws FileNotFoundException { in FileOutputStream()
126 public FileOutputStream(String path, boolean append) throws FileNotFoundException { in FileOutputStream()
DFilePermission.java26 public FilePermission(String path, String actions) { super(""); } in FilePermission()
DFile.java104 private String path; field in File
133 public File(String path) { in File()
417 private static native String canonicalizePath(String path); in canonicalizePath()
599 private static native boolean setLastModifiedImpl(String path, long time); in setLastModifiedImpl()
745 private static native String[] listImpl(String path); in listImpl()
/libcore/dalvik/src/main/java/dalvik/system/
DDexPathList.java138 private static ArrayList<File> splitDexPath(String path) { in splitDexPath()
149 private static File[] splitLibraryPath(String path) { in splitLibraryPath()
273 private static String optimizedPathFor(File path, in optimizedPathFor()
382 String path = new File(directory, fileName).getPath(); in findLibrary() local
/libcore/luni/src/main/java/java/util/prefs/
DFilePreferencesImpl.java41 private final String path; field in FilePreferencesImpl
70 public FilePreferencesImpl(String path, boolean isUserNode) { in FilePreferencesImpl()
/libcore/luni/src/test/java/tests/targets/security/cert/
DCertificateTest.java629 CertPath path = certificateFactory.generateCertPath(getCertList(true, false)); in testVerifyMD2_chain() local
668 CertPath path = certificateFactory.generateCertPath(getCertList(false, false)); in testVerifyMD5_chain() local
DCertPathBuilderTestPKIX.java75 public void validateCertPath(CertPath path) { in validateCertPath()
/libcore/luni/src/main/java/javax/xml/parsers/
DFilePathToURI.java55 public static String filepath2URI(String path){ in filepath2URI()
/libcore/luni/src/main/java/javax/xml/transform/stream/
DFilePathToURI.java55 public static String filepath2URI(String path){ in filepath2URI()
/libcore/support/src/test/java/tests/support/
DSupport_TestWebData.java109 private Support_TestWebData(String path, String type) { in Support_TestWebData()
146 public static void initDynamicTestWebData(String path, String type) { in initDynamicTestWebData()
/libcore/luni/src/test/java/libcore/java/io/
DOldObjectOutputStreamPutFieldTest.java120 private byte[] getRefContent(String path) throws Exception { in getRefContent()
/libcore/luni/src/test/java/libcore/java/net/
DOldAndroidURITest.java30 private static void construct(String str, String host, String path, boolean absolute) in construct()
/libcore/luni/src/main/java/android/system/
DOs.java48 …public static boolean access(String path, int mode) throws ErrnoException { return Libcore.os.acce… in access()
60 …public static void chmod(String path, int mode) throws ErrnoException { Libcore.os.chmod(path, mod… in chmod()
65 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p… in chown()
235 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown()
255 …public static StructStat lstat(String path) throws ErrnoException { return Libcore.os.lstat(path);… in lstat()
265 …public static void mkdir(String path, int mode) throws ErrnoException { Libcore.os.mkdir(path, mod… in mkdir()
270 …public static void mkfifo(String path, int mode) throws ErrnoException { Libcore.os.mkfifo(path, m… in mkfifo()
300 …public static FileDescriptor open(String path, int flags, int mode) throws ErrnoException { return… in open()
355 …public static String readlink(String path) throws ErrnoException { return Libcore.os.readlink(path… in readlink()
375 public static void remove(String path) throws ErrnoException { Libcore.os.remove(path); } in remove()
[all …]

123