HomeSort by relevance Sort by last modified time
    Searched refs:XATTR_REPLACE (Results 1 - 21 of 21) sorted by null

  /external/strace/xlat/
xattrflags.h 5 #if !(defined(XATTR_REPLACE) || (defined(HAVE_DECL_XATTR_REPLACE) && HAVE_DECL_XATTR_REPLACE))
6 # define XATTR_REPLACE 2
18 XLAT(XATTR_REPLACE),
  /external/strace/tests/
xattr-strings.c 17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
18 printf("fsetxattr(-1, \"%.*s\"..., \"%.*s\"..., %u, XATTR_REPLACE) = %s\n",
xattr.c 70 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_REPLACE) = %s\n",
74 rc = fsetxattr(-1, name, value, sizeof(c_value) - 1, XATTR_CREATE|XATTR_REPLACE);
75 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_CREATE|XATTR_REPLACE)"
  /external/strace/tests-m32/
xattr-strings.c 17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
18 printf("fsetxattr(-1, \"%.*s\"..., \"%.*s\"..., %u, XATTR_REPLACE) = %s\n",
xattr.c 70 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_REPLACE) = %s\n",
74 rc = fsetxattr(-1, name, value, sizeof(c_value) - 1, XATTR_CREATE|XATTR_REPLACE);
75 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_CREATE|XATTR_REPLACE)"
  /external/strace/tests-mx32/
xattr-strings.c 17 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
18 printf("fsetxattr(-1, \"%.*s\"..., \"%.*s\"..., %u, XATTR_REPLACE) = %s\n",
xattr.c 70 rc = fsetxattr(-1, name, z_value, sizeof(c_value), XATTR_REPLACE);
71 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_REPLACE) = %s\n",
74 rc = fsetxattr(-1, name, value, sizeof(c_value) - 1, XATTR_CREATE|XATTR_REPLACE);
75 printf("fsetxattr(-1, \"%s\", \"%s\", %u, XATTR_CREATE|XATTR_REPLACE)"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
xattr.h 34 XATTR_REPLACE = 2 /* set value, fail if attr does not exist. */
35 #define XATTR_REPLACE XATTR_REPLACE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
xattr.h 34 XATTR_REPLACE = 2 /* set value, fail if attr does not exist. */
35 #define XATTR_REPLACE XATTR_REPLACE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
xattr.h 14 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
  /external/f2fs-tools/fsck/
xattr.h 95 #ifndef XATTR_REPLACE
96 #define XATTR_REPLACE 0x2
xattr.c 156 if ((flags & XATTR_REPLACE) && !found) {
  /external/ltp/testcases/kernel/syscalls/setxattr/
setxattr01.c 30 * 1. Any other flags being set except XATTR_CREATE and XATTR_REPLACE,
32 * 2. With XATTR_REPLACE flag set but the attribute does not exist,
40 * 6. Replace the attr value without XATTR_REPLACE flag being set,
42 * 7. Replace attr value with XATTR_REPLACE flag being set,
95 .flags = XATTR_REPLACE,
130 .flags = XATTR_REPLACE,
  /bionic/libc/kernel/uapi/linux/
xattr.h 25 #define XATTR_REPLACE 0x2
  /external/kernel-headers/original/uapi/linux/
xattr.h 21 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/attr/
xattr.h 31 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
  /libcore/luni/src/main/java/android/system/
OsConstants.java 542 /** @hide */ public static final int XATTR_REPLACE = placeholder();
    [all...]
  /libcore/luni/src/main/native/
android_system_OsConstants.cpp 603 initConstant(env, c, "XATTR_REPLACE", XATTR_REPLACE);
    [all...]
  /libcore/luni/src/test/java/libcore/libcore/io/
OsTest.java 546 Libcore.os.setxattr(path, NAME_TEST, VALUE_PIE, OsConstants.XATTR_REPLACE);
547 byte[] xattr_replace = Libcore.os.getxattr(path, NAME_TEST);
549 assertEquals(VALUE_PIE.length, xattr_replace.length);
550 assertStartsWith(VALUE_PIE, xattr_replace);
    [all...]
  /external/python/cpython3/Lib/test/
test_os.py     [all...]
  /external/python/cpython3/Modules/
posixmodule.c     [all...]

Completed in 1197 milliseconds