HomeSort by relevance Sort by last modified time
    Searched defs:getxattr (Results 1 - 12 of 12) sorted by null

  /bionic/libc/arch-arm/syscalls/
getxattr.S 5 ENTRY(getxattr) function
14 END(getxattr)
  /bionic/libc/arch-arm64/syscalls/
getxattr.S 5 ENTRY(getxattr) function
14 END(getxattr)
  /bionic/libc/arch-mips/syscalls/
getxattr.S 5 ENTRY(getxattr) function
19 END(getxattr)
  /bionic/libc/arch-mips64/syscalls/
getxattr.S 5 ENTRY(getxattr) function
25 END(getxattr)
  /bionic/libc/arch-x86/syscalls/
getxattr.S 5 ENTRY(getxattr) function
36 END(getxattr)
  /bionic/libc/arch-x86_64/syscalls/
getxattr.S 5 ENTRY(getxattr) function
16 END(getxattr)
  /external/valgrind/coregrind/
m_libcfile.c 388 SysRes VG_(getxattr) ( const HChar* file_name, const HChar* attr_name, Addr attr_value, SizeT attr_value_len ) function
646 res = VG_(getxattr)(f, "security.capability", (Addr)0, 0);
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 91 public int getxattr(String path, String name, byte[] outValue) throws ErrnoException; method in interface:Os
Posix.java 93 public native int getxattr(String path, String name, byte[] outValue) throws ErrnoException; method in class:Posix
ForwardingOs.java 99 public int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return os.getxattr(path, name, outValue); } method in class:ForwardingOs
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 445 Libcore.os.getxattr(path, NAME_TEST, tmp);
452 assertEquals(VALUE_CAKE.length, Libcore.os.getxattr(path, NAME_TEST, tmp));
463 assertEquals(VALUE_PIE.length, Libcore.os.getxattr(path, NAME_TEST, tmp));
468 Libcore.os.getxattr(path, NAME_TEST, tmp);
  /libcore/luni/src/main/java/android/system/
Os.java 218 /** @hide */ public static int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return Libcore.os.getxattr(path, name, outValue); } method in class:Os

Completed in 308 milliseconds