HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 1 - 25 of 12046) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
IllegalFormatFlagsException.java 23 * the format flags is illegal.
30 private final String flags; field in class:IllegalFormatFlagsException
34 * flags.
36 * @param flags
37 * the specified flags.
39 public IllegalFormatFlagsException(String flags) {
40 if (flags == null) {
41 throw new NullPointerException("flags == null");
43 this.flags = flags;
    [all...]
  /external/elfutils/libebl/
eblmachineflagcheck.c 59 ebl_machine_flag_check (ebl, flags)
61 Elf64_Word flags;
63 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
eblmachinesectionflagcheck.c 1 /* Check SHF_MASKPROC flags.
58 ebl_machine_section_flag_check (ebl, flags)
60 GElf_Xword flags;
62 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
recvmsg.c 8 ssize_t recvmsg(int fd, struct msghdr* msg, int flags) {
9 return ki_recvmsg(fd, msg, flags);
recv.c 10 ssize_t recv(int fd, void* buf, size_t len, int flags) {
11 return ki_recv(fd, buf, len, flags);
send.c 10 ssize_t send(int fd, const void* buf, size_t len, int flags) {
11 return ki_send(fd, buf, len, flags);
sendmsg.c 10 ssize_t sendmsg(int fd, const struct msghdr* msg, int flags) {
11 return ki_sendmsg(fd, msg, flags);
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audiodev_c.h 25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
  /external/chromium_org/content/common/
view_message_enums.h 10 // Values that may be OR'd together to form the 'flags' parameter of a
18 static bool is_resize_ack(int flags) {
19 return (flags & IS_RESIZE_ACK) != 0;
21 static bool is_restore_ack(int flags) {
22 return (flags & IS_RESTORE_ACK) != 0;
24 static bool is_repaint_ack(int flags) {
25 return (flags & IS_REPAINT_ACK) != 0;
  /external/chromium_org/sandbox/win/src/
process_mitigations.h 17 bool ApplyProcessMitigationsToCurrentProcess(MitigationFlags flags);
19 // Returns the flags that must be enforced after startup for the current OS
21 MitigationFlags FilterPostStartupProcessMitigations(MitigationFlags flags);
23 // Converts sandbox flags to the PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES
24 // policy flags used by UpdateProcThreadAttribute(). The size field varies
27 void ConvertProcessMitigationsToPolicy(MitigationFlags flags,
33 MitigationFlags flags);
35 // Returns true if all the supplied flags can be set after a process starts.
36 bool CanSetProcessMitigationsPostStartup(MitigationFlags flags);
38 // Returns true if all the supplied flags can be set before a process starts
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast_type.cpp 52 return this->qualifier.flags.i != 0;
57 return this->flags.q.smooth
58 || this->flags.q.flat
59 || this->flags.q.noperspective;
65 if (this->flags.q.smooth)
67 else if (this->flags.q.flat)
69 else if (this->flags.q.noperspective)
81 ubo_mat_mask.flags.i = 0;
82 ubo_mat_mask.flags.q.row_major = 1;
83 ubo_mat_mask.flags.q.column_major = 1
    [all...]
  /external/mesa3d/src/glsl/
ast_type.cpp 52 return this->qualifier.flags.i != 0;
57 return this->flags.q.smooth
58 || this->flags.q.flat
59 || this->flags.q.noperspective;
65 if (this->flags.q.smooth)
67 else if (this->flags.q.flat)
69 else if (this->flags.q.noperspective)
81 ubo_mat_mask.flags.i = 0;
82 ubo_mat_mask.flags.q.row_major = 1;
83 ubo_mat_mask.flags.q.column_major = 1
    [all...]
  /external/smack/src/org/xbill/DNS/
Flags.java 6 * Constants and functions relating to flags in the DNS header.
11 public final class Flags {
13 private static Mnemonic flags = new Mnemonic("DNS Header Flag", field in class:Flags
41 flags.setMaximum(0xF);
42 flags.setPrefix("FLAG");
43 flags.setNumericAllowed(true);
45 flags.add(QR, "qr");
46 flags.add(AA, "aa");
47 flags.add(TC, "tc");
48 flags.add(RD, "rd")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternErrorTest.java 41 // flags = 0 should raise no exception
42 int flags = 0; local
43 Pattern.compile("foo", flags);
45 // check that all valid flags accepted without exception
46 flags |= Pattern.UNIX_LINES;
47 flags |= Pattern.CASE_INSENSITIVE;
48 flags |= Pattern.MULTILINE;
49 flags |= Pattern.CANON_EQ;
50 flags |= Pattern.COMMENTS;
51 flags |= Pattern.DOTALL
    [all...]
  /development/ndk/sources/android/libportable/arch-x86/
open.c 24 static inline int x86_change_flags(int flags)
26 int x86flags = flags & O_ACCMODE_PORTABLE;
27 if (flags & O_CREAT_PORTABLE)
29 if (flags & O_EXCL_PORTABLE)
31 if (flags & O_NOCTTY_PORTABLE)
33 if (flags & O_TRUNC_PORTABLE)
35 if (flags & O_APPEND_PORTABLE)
37 if (flags & O_NONBLOCK_PORTABLE)
39 if (flags & O_SYNC_PORTABLE)
41 if (flags & FASYNC_PORTABLE
    [all...]
  /bionic/libc/bionic/
open.c 36 int open(const char *pathname, int flags, ...)
40 flags |= O_LARGEFILE;
42 if (flags & O_CREAT)
46 va_start(args, flags);
51 return __open(pathname, flags, mode);
54 int __open_2(const char *pathname, int flags) {
55 if (__predict_false(flags & O_CREAT)) {
59 flags |= O_LARGEFILE;
61 return __open(pathname, flags, 0);
openat.c 36 int openat(int fd, const char *pathname, int flags, ...)
40 flags |= O_LARGEFILE;
42 if (flags & O_CREAT)
46 va_start(args, flags);
51 return __openat(fd, pathname, flags, mode);
54 int __openat_2(int fd, const char *pathname, int flags)
56 if (flags & O_CREAT) {
60 flags |= O_LARGEFILE;
62 return __openat(fd, pathname, flags, 0);
  /external/chromium/chrome/browser/
power_save_blocker_win.cc 15 DWORD flags = ES_CONTINUOUS; local
18 flags |= ES_SYSTEM_REQUIRED;
20 SetThreadExecutionState(flags);
  /external/compiler-rt/BlocksRuntime/tests/
flagsisa.c 14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
  /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...]
  /dalvik/dx/src/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...]
  /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...]
  /development/ndk/sources/android/libportable/arch-mips/
open.c 34 static inline int open_flags_pton(int flags)
36 int mipsflags = flags & O_ACCMODE_PORTABLE;
38 ALOGV("%s(flags:0x%x) {", __func__, flags);
40 if (flags & O_CREAT_PORTABLE)
42 if (flags & O_EXCL_PORTABLE)
44 if (flags & O_NOCTTY_PORTABLE)
46 if (flags & O_TRUNC_PORTABLE)
48 if (flags & O_APPEND_PORTABLE)
50 if (flags & O_NONBLOCK_PORTABLE
    [all...]
  /external/libvpx/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...]
  /external/kernel-headers/original/linux/
irqflags.h 4 * IRQ flags tracing: follow the state of the hardirq and softirq flags and
52 #define local_irq_save(flags) \
53 do { raw_local_irq_save(flags); trace_hardirqs_off(); } while (0)
55 #define local_irq_restore(flags) \
57 if (raw_irqs_disabled_flags(flags)) { \
58 raw_local_irq_restore(flags); \
62 raw_local_irq_restore(flags); \
72 # define raw_local_irq_save(flags) local_irq_save(flags)
    [all...]

Completed in 1196 milliseconds

1 2 3 4 5 6 7 8 91011>>