Home
last modified time | relevance | path

Searched refs:XATTR_CREATE (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/libcore/io/
DOsTest.java533 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr()
540 Libcore.os.setxattr(path, NAME_TEST, VALUE_PIE, OsConstants.XATTR_CREATE); in test_xattr()
600 Libcore.os.setxattr(null, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_NPE()
604 Libcore.os.setxattr(path, null, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_NPE()
608 Libcore.os.setxattr(path, NAME_TEST, null, OsConstants.XATTR_CREATE); in test_xattr_NPE()
637 Libcore.os.setxattr("", NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_Errno()
650 Libcore.os.setxattr(path, NAME_TEST, VALUE_CAKE, OsConstants.XATTR_CREATE); in test_xattr_Errno()
/libcore/luni/src/main/java/android/system/
DOsConstants.java541 /** @hide */ public static final int XATTR_CREATE = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp602 initConstant(env, c, "XATTR_CREATE", XATTR_CREATE); in OsConstants_initConstants()