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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
Xform.c 23 /** Translate the Open flags into a Uefi Open Modes value.
25 The Open Flags are:
43 UINT64 flags; local
46 flags = (UINT64)((oflags & O_ACCMODE) + 1); // Handle the Read/Write flags
47 if(flags & EFI_FILE_MODE_WRITE) { // Asking for write only?
49 flags = EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE;
53 // We just set the flags here since the only valid EFI mode with create
55 flags = EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE;
57 return flags;
93 UINT64 flags = 0; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_flags.h 12 // ASan runtime flags.
32 struct Flags {
40 extern Flags asan_flags_dont_use_directly;
41 inline Flags *flags() { function in namespace:__asan
  /external/deqp/framework/delibs/dethread/
deSemaphore.h 38 deUint32 flags; member in struct:deSemaphoreAttributes_s
  /external/libnfnetlink/utils/
iftest.c 16 unsigned int flags; local
41 if (nlif_get_ifflags(h, idx, &flags) == -1) {
42 fprintf(stderr, "Cannot get flags for device `%s'\n", argv[1]);
47 flags & IFF_RUNNING ? "RUNNING" : "NOT RUNNING",
48 flags & IFF_UP ? "UP" : "DOWN");
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
15-1-buildonly.c 10 int flags; variable
17 flags = t.sa_flags;
19-1.c 11 int flags; variable
17 flags = t.ss_flags;
  /external/skia/dm/
DMGpuSupport.h 38 uint32_t flags = useDIText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag : 0; local
39 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
  /external/skqp/dm/
DMGpuSupport.h 38 uint32_t flags = useDIText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag : 0; local
39 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
  /external/tcpdump/
print-vxlan.c 50 uint8_t flags; local
58 flags = *bp;
65 ND_PRINT((ndo, "flags [%s] (0x%02x), ", flags & 0x08 ? "I" : ".", flags));
  /external/v8/
.ycm_extra_conf.py 27 # * Right now, we only pull the -I and -D flags. That seems to be sufficient
42 # Flags from YCM's default config.
43 flags = [ variable
121 # do is try to use the default flags.
125 # try to use the default flags.
154 # Parse flags that are important for YCM's purposes.
168 # These flags causes libclang (3.3) to crash. Remove it until things
184 'flags': (List of Strings) Command line flags.
189 final_flags = flags + v8_flag
    [all...]
  /frameworks/native/libs/vr/libdvr/tests/
dvr_api_test.h 10 int flags = RTLD_NOW | RTLD_LOCAL; variable
16 flags |= RTLD_NODELETE;
17 platform_handle_ = dlopen("libdvr.so", flags);
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_rpfilter.h 29 __u8 flags; member in struct:xt_rpfilter_info
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
makebuf.c 52 int flags; local
61 flags = __swhatbuf(fp, &size, &couldbetty);
68 flags |= __SMBF;
72 flags |= __SLBF;
73 fp->_flags |= flags;
  /build/soong/cc/
tidy.go 29 // Extra flags to pass to clang-tidy
51 func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags { func
57 return flags
62 return flags
66 if !flags.Clang {
67 return flags
70 flags.Tidy = tru
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 68 int flags, oflags, fdflags, tmp; local
72 if ((flags = __sflags(mode, &oflags)) == 0)
97 fp->_flags = (unsigned short)flags;
fopen.c 64 int flags, oflags; local
67 if ((flags = __sflags(mode, &oflags)) == 0)
88 fp->_flags = (unsigned short)flags;
makebuf.c 71 int flags; local
83 flags = __swhatbuf(fp, &size, &couldbetty);
92 flags |= __SMBF;
96 flags |= __SLBF;
97 fp->_flags |= flags;
  /external/autotest/client/site_tests/security_Minijail_seccomp/src/
open.c 30 int flags; local
35 flags = O_RDONLY;
39 flags = O_WRONLY;
43 flags = O_RDWR;
50 int fd = syscall(__NR_open, path, flags);
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 7 int flags; member in struct:__anon15783
  /external/compiler-rt/lib/ubsan/
ubsan_flags.h 10 // Runtime flags for UndefinedBehaviorSanitizer.
24 struct Flags {
32 extern Flags ubsan_flags;
33 inline Flags *flags() { return &ubsan_flags; } function in namespace:__ubsan
36 void RegisterUbsanFlags(FlagParser *parser, Flags *f);
  /external/iptables/include/linux/netfilter/
xt_rpfilter.h 14 __u8 flags; member in struct:xt_rpfilter_info
  /external/libnetfilter_conntrack/src/expect/
parse.c 15 uint16_t flags = nlh->nlmsg_flags; local
19 if (flags & (NLM_F_CREATE|NLM_F_EXCL))
78 exp->flags =
  /external/libnl/python/netlink/route/links/
vlan.py 30 def flags(self): member in class:VLANLink
31 """ VLAN flags
32 Setting this property will *Not* reset flags to value you supply in
34 link.flags = '+xxx' # add xxx flag
35 link.flags = 'xxx' # exactly the same
36 link.flags = '-xxx' # remove xxx flag
37 link.flags = [ '+xxx', '-yyy' ] # list operation
39 flags = capi.rtnl_link_vlan_get_flags(self._link)
40 return capi.rtnl_link_vlan_flags2str(flags, 256)[0].split(',')
53 @flags.sette
54 def flags(self, value): member in class:VLANLink
    [all...]
  /external/mesa3d/src/glx/
dri2.h 46 unsigned int flags; member in struct:__anon30300
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_debug.c 90 uint64_t flags[] = { local
99 return flags[stage];

Completed in 613 milliseconds

12 3 4 5 6 7 8 91011>>