Home
last modified time | relevance | path

Searched refs:S_ISLNK (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/ravenwood/runtime-test/test/com/android/ravenwood/runtimetest/
DOsConstantsTest.java26 import static android.system.OsConstants.S_ISLNK;
204 assertTrue(S_ISLNK(OsConstants.S_IFLNK)); in test_S_ISLNK()
206 assertFalse(S_ISLNK(OsConstants.S_IFBLK)); in test_S_ISLNK()
207 assertFalse(S_ISLNK(OsConstants.S_IFCHR)); in test_S_ISLNK()
208 assertFalse(S_ISLNK(OsConstants.S_IFDIR)); in test_S_ISLNK()
209 assertFalse(S_ISLNK(OsConstants.S_IFIFO)); in test_S_ISLNK()
210 assertFalse(S_ISLNK(OsConstants.S_IFMT)); in test_S_ISLNK()
211 assertFalse(S_ISLNK(OsConstants.S_IFREG)); in test_S_ISLNK()
212 assertFalse(S_ISLNK(OsConstants.S_IFSOCK)); in test_S_ISLNK()
213 assertFalse(S_ISLNK(OsConstants.S_IRGRP)); in test_S_ISLNK()
[all …]
/frameworks/base/libs/androidfw/
Dmisc.cpp63 #if defined(S_ISLNK) in getFileType()
64 else if (S_ISLNK(sb.st_mode)) in getFileType()
/frameworks/libs/binary_translation/kernel_api/
Dopen_emulation.cc188 !(S_ISLNK(cur_stat.st_mode) && (flags & AT_SYMLINK_NOFOLLOW)) && in IsProcSelfMaps()
208 if (S_ISLNK(cur_stat.st_mode) && (flags & AT_SYMLINK_NOFOLLOW)) { in TryTranslateProcCpuinfoPath()
/frameworks/base/tools/aapt2/util/
DFiles.cpp90 #if defined(S_ISLNK)
91 } else if (S_ISLNK(sb.st_mode)) {
/frameworks/compile/mclinker/lib/Support/Unix/
DPathV3.inc168 if (S_ISLNK(path_stat.st_mode))
/frameworks/base/core/java/android/os/
DParcelFileDescriptor.java30 import static android.system.OsConstants.S_ISLNK;
751 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) { in getStatSize()
/frameworks/base/core/jni/
Dfd_utils.cpp259 } else if (S_ISLNK(f_stat.st_mode)) { in CreateFromFd()
/frameworks/native/libs/vr/libpdx_uds/
Dipc_helper.cpp533 else if (ret == 0 && S_ISLNK(stat_buf.st_mode)) in WaitForEndpoint()
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/android/system/
DOsConstants.java89 public static boolean S_ISLNK(int mode) { return (mode & S_IFMT) == S_IFLNK; } in S_ISLNK() method in OsConstants
/frameworks/native/cmds/installd/
DInstalldNativeService.cpp3368 } else if (S_ISLNK(libStat.st_mode)) { in linkNativeLibraryDirectory()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt27641 method public static boolean S_ISLNK(int);