/bionic/libc/kernel/arch-sh/asm/ |
irqflags.h | 17 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0) 19 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
|
/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) { 43 this.flags = flags; 47 * Returns the flags that are illegal [all...] |
DuplicateFormatFlagsException.java | 20 * The unchecked exception will be thrown out if there are duplicate flags given 29 private final String flags; field in class:DuplicateFormatFlagsException 32 * Constructs a new {@code DuplicateFormatFlagsException} with the flags 36 * the format flags that contain a duplicate flag. 42 flags = f; 46 * Returns the format flags that contain a duplicate flag. 48 * @return the format flags that contain a duplicate flag. 51 return flags; 56 return flags;
|
UnknownFormatFlagsException.java | 29 private final String flags; field in class:UnknownFormatFlagsException 33 * flags. 36 * the specified flags. 42 flags = f; 46 * Returns the flags associated with the exception. 48 * @return the flags associated with the exception. 51 return flags; 56 return "Flags: " + flags;
|
/external/elfutils/libebl/ |
eblmachineflagcheck.c | 23 ebl_machine_flag_check (ebl, flags) 25 Elf64_Word flags; 27 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_audiodev_c.h | 25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
|
/bionic/libc/unistd/ |
open.c | 34 int open(const char *pathname, int flags, ...) 39 flags |= O_LARGEFILE; 42 if (flags & O_CREAT) 46 va_start(args, flags); 51 return __open(pathname, flags, mode);
|
openat.c | 34 int openat(int fd, const char *pathname, int flags, ...) 39 flags |= O_LARGEFILE; 42 if (flags & O_CREAT) 46 va_start(args, flags); 51 return __openat(fd, pathname, flags, mode);
|
fnmatch.c | 54 fnmatch(const char *pattern, const char *string, int flags) 63 if ((flags & FNM_LEADING_DIR) && *string == '/') 69 if (*string == '/' && (flags & FNM_PATHNAME)) 71 if (*string == '.' && (flags & FNM_PERIOD) && 73 ((flags & FNM_PATHNAME) && *(string - 1) == '/'))) 83 if (*string == '.' && (flags & FNM_PERIOD) && 85 ((flags & FNM_PATHNAME) && *(string - 1) == '/'))) 90 if (flags & FNM_PATHNAME) 91 return ((flags & FNM_LEADING_DIR) || 96 } else if (c == '/' && (flags & FNM_PATHNAME)) [all...] |
recv.c | 31 ssize_t recv(int socket, void *buf, size_t buflen, unsigned int flags) 33 return recvfrom(socket, buf, buflen, flags, NULL, 0);
|
/external/skia/src/opts/ |
SkBlitRow_opts_none.cpp | 5 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) { 9 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) { 13 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
|
/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/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...] |
/external/chromium/base/ |
platform_file_win.cc | 13 int flags, 17 if (flags & PLATFORM_FILE_OPEN) 20 if (flags & PLATFORM_FILE_CREATE) { 25 if (flags & PLATFORM_FILE_OPEN_ALWAYS) { 30 if (flags & PLATFORM_FILE_CREATE_ALWAYS) { 40 DWORD access = (flags & PLATFORM_FILE_READ) ? GENERIC_READ : 0; 41 if (flags & PLATFORM_FILE_WRITE) 44 DWORD sharing = (flags & PLATFORM_FILE_EXCLUSIVE_READ) ? 0 : FILE_SHARE_READ; 45 if (!(flags & PLATFORM_FILE_EXCLUSIVE_WRITE)) 49 if (flags & PLATFORM_FILE_ASYNC [all...] |
platform_file_posix.cc | 18 PlatformFile CreatePlatformFile(const FilePath& name, int flags, 21 if (flags & PLATFORM_FILE_CREATE) 24 if (flags & PLATFORM_FILE_CREATE_ALWAYS) { 29 if (!open_flags && !(flags & PLATFORM_FILE_OPEN) && 30 !(flags & PLATFORM_FILE_OPEN_ALWAYS)) { 36 if (flags & PLATFORM_FILE_WRITE && flags & PLATFORM_FILE_READ) { 38 } else if (flags & PLATFORM_FILE_WRITE) { 40 } else if (!(flags & PLATFORM_FILE_READ)) { 48 if (flags & PLATFORM_FILE_OPEN_ALWAYS) [all...] |
/frameworks/base/core/java/android/app/ |
IUiModeManager.aidl | 28 void enableCarMode(int flags); 33 void disableCarMode(int flags);
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeIDN.java | 20 public static String toASCII(String s, int flags) { 21 return convert(s, flags, true); 24 public static String toUnicode(String s, int flags) { 26 return convert(s, flags, false); 35 private static String convert(String s, int flags, boolean toAscii) { 39 return convertImpl(s, flags, toAscii); 41 private static native String convertImpl(String s, int flags, boolean toAscii);
|
/bionic/libc/kernel/arch-x86/asm/ |
irqflags_32.h | 14 #include <asm/processor-flags.h> 27 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0) 28 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
|
/development/ndk/platforms/android-5/arch-x86/include/asm/ |
irqflags_32.h | 14 #include <asm/processor-flags.h> 27 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0) 28 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/ |
irqflags_32.h | 14 #include <asm/processor-flags.h> 27 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0) 28 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/ |
irqflags_32.h | 14 #include <asm/processor-flags.h> 27 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0) 28 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
|
/external/elfutils/libelf/ |
elf_flagdata.c | 29 elf_flagdata (data, cmd, flags) 32 unsigned int flags; 49 result = (data_scn->s->flags |= (flags & ELF_F_DIRTY)); 51 result = (data_scn->s->flags &= ~(flags & ELF_F_DIRTY));
|
elf_flagelf.c | 1 /* Manipulate ELF file flags. 29 elf_flagelf (elf, cmd, flags) 32 unsigned int flags; 46 result = (elf->flags 47 |= (flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE))); 49 result = (elf->flags 50 &= ~(flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE)));
|
elf_flagscn.c | 1 /* Manipulate ELF section flags. 29 elf_flagscn (scn, cmd, flags) 32 unsigned int flags; 46 result = (scn->flags |= (flags & ELF_F_DIRTY)); 48 result = (scn->flags &= ~(flags & ELF_F_DIRTY));
|
/external/kernel-headers/original/asm-x86/ |
irqflags_32.h | 4 * IRQ flags handling 12 #include <asm/processor-flags.h> 60 static inline void raw_local_irq_restore(unsigned long flags) 62 native_restore_fl(flags); 98 unsigned long flags = __raw_local_save_flags(); local 102 return flags; 115 #define raw_local_save_flags(flags) \ 116 do { (flags) = __raw_local_save_flags(); } while (0) 118 #define raw_local_irq_save(flags) \ 119 do { (flags) = __raw_local_irq_save(); } while (0 128 unsigned long flags = __raw_local_save_flags(); local 149 unsigned long flags = __raw_local_save_flags(); local [all...] |