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

  /bionic/libc/arch-arm/syscalls/
setxattr.S 5 ENTRY(setxattr) function
22 END(setxattr)
  /bionic/libc/arch-arm64/syscalls/
setxattr.S 5 ENTRY(setxattr) function
14 END(setxattr)
  /bionic/libc/arch-mips/syscalls/
setxattr.S 5 ENTRY(setxattr) function
19 END(setxattr)
  /bionic/libc/arch-mips64/syscalls/
setxattr.S 5 ENTRY(setxattr) function
25 END(setxattr)
  /bionic/libc/arch-x86/syscalls/
setxattr.S 5 ENTRY(setxattr) function
49 END(setxattr)
  /bionic/libc/arch-x86_64/syscalls/
setxattr.S 5 ENTRY(setxattr) function
16 END(setxattr)
  /frameworks/native/cmds/installd/tests/
installd_cache_test.cpp 109 static void setxattr(const char* path, const char* key) { function in namespace:android::installd
111 ::setxattr(fullPath, key, "", 0, 0);
191 setxattr("com.example/cache/bar", "user.cache_tombstone");
220 setxattr("com.example/cache/foo", "user.cache_group");
262 setxattr("com.example/cache/group", "user.cache_group");
263 setxattr("com.example/cache/group/tomb", "user.cache_tombstone");
264 setxattr("com.example/cache/tomb", "user.cache_tombstone");
265 setxattr("com.example/cache/tomb/group", "user.cache_group");
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 381 @Override public void setxattr(String path, String name, byte[] value, int flags) method in class:BlockGuardOs
384 os.setxattr(path, name, value, flags);
ForwardingOs.java 175 public void setxattr(String path, String name, byte[] value, int flags) throws ErrnoException { os.setxattr(path, name, value, flags); } method in class:ForwardingOs
Linux.java 249 public native void setxattr(String path, String name, byte[] value, int flags) throws ErrnoException; method in class:Linux
Os.java 162 public void setxattr(String path, String name, byte[] value, int flags) throws ErrnoException; method in interface:Os
  /libcore/luni/src/main/java/android/system/
Os.java 527 * See <a href="http://man7.org/linux/man-pages/man2/setxattr.2.html">setxattr(2)</a>
529 public static void setxattr(String path, String name, byte[] value, int flags) throws ErrnoException { Libcore.os.setxattr(path, name, value, flags); }; method in class:Os
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 521 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE);
528 Libcore.os.setxattr(path, NAME_TEST, VALUE_PIE, OsConstants.XATTR_CREATE);
534 Libcore.os.setxattr(path, NAME_TEST, VALUE_PIE, OsConstants.XATTR_REPLACE);
586 // setxattr
588 Libcore.os.setxattr(null, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE);
592 Libcore.os.setxattr(path, null, VALUE_CAKE, OsConstants.XATTR_CREATE);
596 Libcore.os.setxattr(path, NAME_TEST, null, OsConstants.XATTR_CREATE);
625 Libcore.os.setxattr("", NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE);
635 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE);
638 // setxattr(2) requires root permission for writing to this file, will get EACCES otherwise
    [all...]
  /prebuilts/sdk/26/
android.jar 

Completed in 368 milliseconds