HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 26 - 50 of 17133) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/asm/
mman.h 20 #define arch_mmap_check(addr, len, flags) (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0)
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
AccessFlags.java 22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
AccessFlags.java 22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
arm_cpudetect.c 15 static int arm_cpu_env_flags(int *flags) {
19 *flags = (int)strtol(env, NULL, 0);
22 *flags = 0;
38 int flags; local
40 if (!arm_cpu_env_flags(&flags)) {
41 return flags;
45 flags |= HAS_EDSP;
48 flags |= HAS_MEDIA;
51 flags |= HAS_NEON;
53 return flags & mask
63 int flags; local
    [all...]
  /bionic/libc/bionic/
open.cpp 38 static inline int force_O_LARGEFILE(int flags) {
40 return flags; // No need, and aarch64's strace gets confused.
42 return flags | O_LARGEFILE;
51 int open(const char* pathname, int flags, ...) {
54 if ((flags & O_CREAT) != 0) {
56 va_start(args, flags);
61 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode);
65 int __open_2(const char* pathname, int flags) {
66 if (__predict_false((flags & O_CREAT) != 0)) {
70 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0)
    [all...]
  /art/test/134-nodex2oat-nofallback/
run 17 flags="${@}"
20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 7 int flags; member in struct:__anon7177
  /external/skia/platform_tools/android/apps/visualbenchsdl/src/main/java/com/skia/
VisualBenchActivity.java 16 String flags = this.getIntent().getStringExtra("cmdLineFlags"); local
17 if (flags != null && !flags.isEmpty()) {
18 return flags.split("\\s+");
  /external/strace/
swapon.c 9 int flags = tcp->u_arg[1]; local
13 printflags(swap_flags, flags & ~SWAP_FLAG_PRIO_MASK,
15 if (flags & SWAP_FLAG_PREFER)
16 tprintf("|%d", flags & SWAP_FLAG_PRIO_MASK);
  /frameworks/base/core/java/android/app/
IUiModeManager.aidl 28 void enableCarMode(int flags);
33 void disableCarMode(int flags);
  /libcore/ojluni/src/main/java/java/util/
DuplicateFormatFlagsException.java 29 * Unchecked exception thrown when duplicate flags are provided in the format
42 private String flags; field in class:DuplicateFormatFlagsException
45 * Constructs an instance of this class with the specified flags.
48 * The set of format flags which contain a duplicate flag.
53 this.flags = f;
57 * Returns the set of flags which contains a duplicate flag.
59 * @return The flags
62 return flags;
66 return String.format("Flags = '%s'", flags);
    [all...]
IllegalFormatFlagsException.java 29 * Unchecked exception thrown when an illegal combination flags is given.
41 private String flags; field in class:IllegalFormatFlagsException
44 * Constructs an instance of this class with the specified flags.
47 * The set of format flags which contain an illegal combination
52 this.flags = f;
56 * Returns the set of flags which contains an illegal combination.
58 * @return The flags
61 return flags;
65 return "Flags = '" + flags + "'"
    [all...]
UnknownFormatFlagsException.java 41 private String flags; field in class:UnknownFormatFlagsException
44 * Constructs an instance of this class with the specified flags.
47 * The set of format flags which contain an unknown flag
52 this.flags = f;
56 * Returns the set of flags which contains an unknown flag.
58 * @return The flags
61 return flags;
66 return "Flags = " + flags;
  /external/toybox/toys/android/
restorecon.c 34 int flags = 0; local
36 if (toys.optflags & FLAG_D) flags |= SELINUX_ANDROID_RESTORECON_DATADATA;
37 if (toys.optflags & FLAG_F) flags |= SELINUX_ANDROID_RESTORECON_FORCE;
39 flags |= SELINUX_ANDROID_RESTORECON_RECURSE;
40 if (toys.optflags & FLAG_n) flags |= SELINUX_ANDROID_RESTORECON_NOCHANGE;
41 if (toys.optflags & FLAG_v) flags |= SELINUX_ANDROID_RESTORECON_VERBOSE;
44 if (selinux_android_restorecon(*s, flags) < 0)
  /external/curl/lib/
nonblock.c 57 int flags;
58 flags = sfcntl(sockfd, F_GETFL, 0);
60 return sfcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
62 return sfcntl(sockfd, F_SETFL, flags & (~O_NONBLOCK));
67 int flags = nonblock ? 1 : 0;
68 return ioctl(sockfd, FIONBIO, &flags);
73 unsigned long flags = nonblock ? 1UL : 0UL;
74 return ioctlsocket(sockfd, FIONBIO, &flags);
79 long flags = nonblock ? 1L : 0L;
80 return IoctlSocket(sockfd, FIONBIO, (char *)&flags);
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /external/bison/lib/
cloexec.c 35 open or pipe2 that accept flags like O_CLOEXEC to create DESC
43 int flags = fcntl (desc, F_GETFD, 0); local
45 if (0 <= flags)
47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
49 if (flags == newflags
  /external/valgrind/VEX/test/
test-amd64-muldiv.h 4 int64 res, s1, s0, flags; local
8 flags = 0;
14 : "=a" (res), "=g" (flags)
15 : "q" (s1), "0" (res), "1" (flags));
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
22 int64 res, s1, flags, resh; local
26 flags = 0;
32 : "=a" (res), "=g" (flags), "=d" (resh)
33 : "q" (s1), "0" (res), "1" (flags), "2" (resh));
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK)
40 int64 res, s1, flags, resh; local
58 int64 res, s1, flags, resh; local
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)

Completed in 937 milliseconds

12 3 4 5 6 7 8 91011>>