HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 726 - 750 of 3921) sorted by null

<<21222324252627282930>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
blkdev.h 123 unsigned long flags; member in struct:request
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
413 #define blk_pm_suspend_request(rq) ((rq)->flags & REQ_PM_SUSPEND)
414 #define blk_pm_resume_request(rq) ((rq)->flags & REQ_PM_RESUME)
415 #define blk_pm_request(rq) ((rq)->flags & (REQ_PM_SUSPEND | REQ_PM_RESUME))
417 #define blk_sorted_rq(rq) ((rq)->flags & REQ_SORTED)
418 #define blk_barrier_rq(rq) ((rq)->flags & REQ_HARDBARRIER
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 123 unsigned long flags; member in struct:request
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
413 #define blk_pm_suspend_request(rq) ((rq)->flags & REQ_PM_SUSPEND)
414 #define blk_pm_resume_request(rq) ((rq)->flags & REQ_PM_RESUME)
415 #define blk_pm_request(rq) ((rq)->flags & (REQ_PM_SUSPEND | REQ_PM_RESUME))
417 #define blk_sorted_rq(rq) ((rq)->flags & REQ_SORTED)
418 #define blk_barrier_rq(rq) ((rq)->flags & REQ_HARDBARRIER
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
blkdev.h 123 unsigned long flags; member in struct:request
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
413 #define blk_pm_suspend_request(rq) ((rq)->flags & REQ_PM_SUSPEND)
414 #define blk_pm_resume_request(rq) ((rq)->flags & REQ_PM_RESUME)
415 #define blk_pm_request(rq) ((rq)->flags & (REQ_PM_SUSPEND | REQ_PM_RESUME))
417 #define blk_sorted_rq(rq) ((rq)->flags & REQ_SORTED)
418 #define blk_barrier_rq(rq) ((rq)->flags & REQ_HARDBARRIER
    [all...]
  /external/openssl/crypto/evp/
evp_locl.h 118 cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits==1) && !(ctx->flags & EVP_CIPH_FLAG_LENGTH_BITS) ?inl*8:inl), &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num, ctx->encrypt);\
134 key_len, iv_len, flags, init_key, cleanup, \
138 flags | EVP_CIPH_##MODE##_MODE, \
150 iv_len, flags, init_key, cleanup, set_asn1, \
153 iv_len, flags, init_key, cleanup, set_asn1, get_asn1, ctrl)
156 iv_len, cbits, flags, init_key, cleanup, \
159 key_len, iv_len, flags, init_key, cleanup, set_asn1, \
163 iv_len, cbits, flags, init_key, cleanup, \
166 key_len, iv_len, flags, init_key, cleanup, set_asn1, \
170 flags, init_key, cleanup, set_asn1,
294 int flags; member in struct:evp_pkey_method_st
    [all...]
  /external/openssl/crypto/x509v3/
pcy_tree.c 76 if ( (lev->flags & X509_V_FLAG_INHIBIT_MAP)
77 || !(node->data->flags & POLICY_DATA_FLAG_MAP_MASK))
112 BIO_printf(err, "Level %ld, flags = %x\n",
113 plev - tree->levels, plev->flags);
119 BIO_printf(err, " Flags: %x\n", node->data->flags);
144 unsigned int flags)
161 flags |= X509_V_FLAG_INHIBIT_MAP;
164 if (flags & X509_V_FLAG_EXPLICIT_POLICY)
169 if (flags & X509_V_FLAG_INHIBIT_ANY
    [all...]
  /external/quake/quake/src/QW/client/
r_alias.c 91 int i, flags, frame, numv; local
151 viewpts[i].flags = ALIAS_Z_CLIP;
158 viewpts[i].flags = 0;
184 if (pv0->flags ^ pv1->flags)
193 viewpts[numv].flags = 0;
207 if (viewpts[i].flags & ALIAS_Z_CLIP)
216 flags = 0;
219 flags |= ALIAS_LEFT_CLIP;
221 flags |= ALIAS_TOP_CLIP
    [all...]
  /external/quake/quake/src/WinQuake/
r_alias.cpp 91 int i, flags, frame, numv; local
151 viewpts[i].flags = ALIAS_Z_CLIP;
158 viewpts[i].flags = 0;
184 if (pv0->flags ^ pv1->flags)
193 viewpts[numv].flags = 0;
207 if (viewpts[i].flags & ALIAS_Z_CLIP)
216 flags = 0;
219 flags |= ALIAS_LEFT_CLIP;
221 flags |= ALIAS_TOP_CLIP;
    [all...]
  /external/chromium/net/base/
file_stream_unittest.cc 51 int flags = base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_READ; local
53 temp_file_path().ToWStringHack(), flags, &created);
56 net::FileStream read_stream(file, flags);
67 flags = base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_WRITE;
69 flags, &created);
71 net::FileStream write_stream(file, flags);
107 int flags = base::PLATFORM_FILE_OPEN | local
109 int rv = stream.Open(temp_file_path(), flags);
137 int flags = base::PLATFORM_FILE_OPEN | local
140 int rv = stream.Open(temp_file_path(), flags);
172 int flags = base::PLATFORM_FILE_OPEN | local
202 int flags = base::PLATFORM_FILE_OPEN | local
237 int flags = base::PLATFORM_FILE_OPEN | local
272 int flags = base::PLATFORM_FILE_OPEN | local
295 int flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
316 int flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
348 int flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
380 int flags = base::PLATFORM_FILE_OPEN | local
409 int flags = base::PLATFORM_FILE_OPEN | local
444 int flags = base::PLATFORM_FILE_OPEN | local
483 int flags = base::PLATFORM_FILE_OPEN | local
531 int flags = base::PLATFORM_FILE_OPEN | local
586 int flags = base::PLATFORM_FILE_OPEN | local
736 int flags = base::PLATFORM_FILE_OPEN | local
838 int flags = base::PLATFORM_FILE_OPEN | local
867 int flags = base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_WRITE; local
    [all...]
  /external/tcpdump/
print-fr.c 100 /* Finds out Q.922 address length, DLCI and flags. Returns 0 on success
101 * save the flags dep. on address length
104 u_int *addr_len, u_int8_t *flags)
112 flags[0] = p[0] & 0x02; /* populate the first flag fields */
113 flags[1] = p[1] & 0x0c;
114 flags[2] = 0; /* clear the rest of the flags */
115 flags[3] = 0;
131 flags[3] = p[0] & 0x02;
141 /* Frame Relay packet structure, with flags and CRC remove
229 u_int8_t flags[4]; local
550 u_int16_t sequence_num, flags; local
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_luni_platform_OSFileSystem.cpp 75 static int EsTranslateOpenFlags(int flags) {
78 if (flags & HyOpenAppend) {
81 if (flags & HyOpenTruncate) {
84 if (flags & HyOpenCreate) {
87 if (flags & HyOpenCreateNew) {
91 if (flags & HyOpenSync) {
95 if (flags & HyOpenRead) {
96 if (flags & HyOpenWrite) {
101 if (flags & HyOpenWrite) {
378 int flags = 0 local
    [all...]
  /development/simulator/app/
Pipe.cpp 302 int flags; local
304 if (fcntl(mReadHandle, F_GETFL, &flags) == -1) {
305 LOG(LOG_ERROR, "pipe", "couldn't get flags for pipe read fd\n");
309 flags |= O_NONBLOCK;
311 flags &= ~(O_NONBLOCK);
312 if (fcntl(mReadHandle, F_SETFL, &flags) == -1) {
313 LOG(LOG_ERROR, "pipe", "couldn't set flags for pipe read fd\n");
334 int flags; local
336 if (fcntl(mWriteHandle, F_GETFL, &flags) == -1) {
338 "Warning: couldn't get flags for pipe write fd (errno=%d)\n"
    [all...]
  /external/bluetooth/bluez/gdbus/
mainloop.c 97 unsigned int flags = 0; local
101 if (cond & G_IO_IN) flags |= DBUS_WATCH_READABLE;
102 if (cond & G_IO_OUT) flags |= DBUS_WATCH_WRITABLE;
103 if (cond & G_IO_HUP) flags |= DBUS_WATCH_HANGUP;
104 if (cond & G_IO_ERR) flags |= DBUS_WATCH_ERROR;
106 dbus_watch_handle(info->watch, flags);
133 unsigned int flags; local
149 flags = dbus_watch_get_flags(watch);
151 if (flags & DBUS_WATCH_READABLE) cond |= G_IO_IN;
152 if (flags & DBUS_WATCH_WRITABLE) cond |= G_IO_OUT
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosvideo.c 54 static SDL_Rect **RISCOS_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
55 static SDL_Surface *RISCOS_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
65 extern SDL_Surface *FULLSCREEN_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
71 extern SDL_Surface *WIMP_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
237 SDL_Rect **RISCOS_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags)
239 if (flags & SDL_FULLSCREEN)
252 int width, int height, int bpp, Uint32 flags)
254 if (flags & SDL_FULLSCREEN)
260 return FULLSCREEN_SetVideoMode(this, current, width, height, bpp, flags);
264 return WIMP_SetVideoMode(this, current, width, height, bpp, flags);
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 58 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
83 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
115 * in a new process. Ideally these flags shouldn't be part of the
174 if ((hnd->flags & private_handle_t::PRIV_FLAGS_USES_PMEM) ||
175 (hnd->flags & private_handle_t::PRIV_FLAGS_USES_PMEM_ADSP)) {
247 (hnd->flags & pmemMask) &&
248 !(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
249 hnd->flags |= private_handle_t::PRIV_FLAGS_NEEDS_FLUSH;
281 if (hnd->flags & private_handle_t::PRIV_FLAGS_NEEDS_FLUSH) {
290 hnd->flags &= ~private_handle_t::PRIV_FLAGS_NEEDS_FLUSH
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
FormatDateRangeTest.java 36 public int flags; field in class:FormatDateRangeTest.DateTest
41 int flags, String output) {
42 if ((flags & DateUtils.FORMAT_UTC) != 0) {
62 this.flags = flags;
68 int flags, String output) {
71 flags, output);
166 // Tests that year isn't shown by default with no year flags when time is the current year:
171 // Tests that the year is shown by default with no year flags when time isn't the current year:
192 int flags = dateTest.flags local
    [all...]
  /external/iptables/extensions/
libip6t_hashlimit.c 153 parse(int c, char **argv, int invert, unsigned int *flags,
168 *flags |= PARAM_LIMIT;
177 *flags |= PARAM_BURST;
185 *flags |= PARAM_SIZE;
193 *flags |= PARAM_MAX;
203 *flags |= PARAM_GCINTERVAL;
212 *flags |= PARAM_EXPIRE;
219 *flags |= PARAM_MODE;
226 *flags |= PARAM_NAME;
240 static void final_check(unsigned int flags)
    [all...]
libipt_hashlimit.c 153 parse(int c, char **argv, int invert, unsigned int *flags,
168 *flags |= PARAM_LIMIT;
177 *flags |= PARAM_BURST;
185 *flags |= PARAM_SIZE;
193 *flags |= PARAM_MAX;
203 *flags |= PARAM_GCINTERVAL;
212 *flags |= PARAM_EXPIRE;
219 *flags |= PARAM_MODE;
226 *flags |= PARAM_NAME;
240 static void final_check(unsigned int flags)
    [all...]
libip6t_sctp.c 67 " --chunk-types [!] (all|any|none) (chunktype[:flags])+ match if all, any or none of\n"
159 "Number of chunk types with flags exceeds currently allowed limit."
219 DEBUGP("Chunk flags %s\n", chunk_flags);
234 "Invalid flags for chunk type %d\n", i);
265 parse(int c, char **argv, int invert, unsigned int *flags,
275 if (*flags & XT_SCTP_SRC_PORTS)
278 einfo->flags |= XT_SCTP_SRC_PORTS;
283 *flags |= XT_SCTP_SRC_PORTS;
287 if (*flags & XT_SCTP_DEST_PORTS)
290 einfo->flags |= XT_SCTP_DEST_PORTS
    [all...]
  /system/core/sdcard/
fuse.h 29 * - add file flags field to fuse_read_in and fuse_write_in
140 * Flags returned by the OPEN request
151 * INIT request/reply flags
165 * CUSE INIT request/reply flags
172 * Release flags
177 * Getattr flags
182 * Lock flags
187 * WRITE flags
196 * Read flags
201 * Ioctl flags
350 __u32 flags; member in struct:fuse_open_in
355 __u32 flags; member in struct:fuse_create_in
369 __u32 flags; member in struct:fuse_release_in
387 __u32 flags; member in struct:fuse_read_in
399 __u32 flags; member in struct:fuse_write_in
422 __u32 flags; member in struct:fuse_setxattr_in
456 __u32 flags; member in struct:fuse_init_in
463 __u32 flags; member in struct:fuse_init_out
475 __u32 flags; member in struct:cuse_init_in
482 __u32 flags; member in struct:cuse_init_out
506 __u32 flags; member in struct:fuse_ioctl_in
515 __u32 flags; member in struct:fuse_ioctl_out
523 __u32 flags; member in struct:fuse_poll_in
    [all...]
  /external/dnsmasq/src/
dhcp.c 287 else if ((ntohs(mess->flags) & 0x8000) || mess->hlen == 0 ||
319 else if ((ntohs(mess->flags) & 0x8000) || mess->hlen != ETHER_ADDR_LEN || mess->htype != ARPHRD_ETHER)
375 if (!(context->flags & CONTEXT_NETMASK) &&
405 if (!(context->flags & CONTEXT_BRDCAST))
418 if (!(context->flags & CONTEXT_BRDCAST))
448 if (!(tmp->flags & CONTEXT_STATIC) &&
476 (tmp->flags & CONTEXT_STATIC))
497 if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr)
549 if (c->flags & CONTEXT_STATIC)
639 if (!(config->flags & CONFIG_ADDR)
721 unsigned int flags; local
    [all...]
  /external/stlport/src/
num_put_float.cpp 398 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier);
480 // according to the specified precision and format flags. This is
488 ios_base::fmtflags flags,
493 else if (flags & ios_base::showpos)
505 if (precision != 0 || flags & ios_base::showpoint) {
542 *--suffix = flags & ios_base::uppercase ? 'E' : 'e';
551 ios_base::fmtflags flags,
555 else if ( flags & ios_base::showpos )
568 if ( flags & ios_base::showpoint || precision > 0 ) {
614 static size_t __format_nan_or_inf(__iostring& buf, _FloatT x, ios_base::fmtflags flags) {
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebsettings.cpp 225 GParamFlags flags = (GParamFlags)(WEBKIT_PARAM_READWRITE | G_PARAM_CONSTRUCT); local
234 flags));
243 flags));
252 flags));
261 flags));
270 flags));
279 flags));
288 flags));
297 flags));
306 flags));
    [all...]
  /ndk/sources/android/stlport/src/
num_put_float.cpp 398 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier);
480 // according to the specified precision and format flags. This is
488 ios_base::fmtflags flags,
493 else if (flags & ios_base::showpos)
505 if (precision != 0 || flags & ios_base::showpoint) {
542 *--suffix = flags & ios_base::uppercase ? 'E' : 'e';
551 ios_base::fmtflags flags,
555 else if ( flags & ios_base::showpos )
568 if ( flags & ios_base::showpoint || precision > 0 ) {
614 static size_t __format_nan_or_inf(__iostring& buf, _FloatT x, ios_base::fmtflags flags) {
    [all...]
  /system/core/sh/
eval.c 87 /* flags in argument to evaltree */
220 evaltree(union node *n, int flags)
231 getpid(), n, n->type, flags));
234 evaltree(n->nbinary.ch1, flags & EV_TESTED);
237 evaltree(n->nbinary.ch2, flags);
243 evaltree(n->nbinary.ch2, flags);
249 evaltree(n->nbinary.ch2, flags);
254 evaltree(n->nredir.n, flags);
258 evalsubshell(n, flags);
261 evalsubshell(n, flags);
    [all...]
  /external/bluetooth/glib/glib/
giounix.c 91 GIOFlags flags,
364 GIOFlags flags,
372 if (flags & G_IO_FLAG_APPEND)
374 if (flags & G_IO_FLAG_NONBLOCK)
396 GIOFlags flags = 0; local
405 g_warning (G_STRLOC "Error while getting flags for FD: %s (%d)\n",
411 flags |= G_IO_FLAG_APPEND;
417 flags |= G_IO_FLAG_NONBLOCK;
437 return flags;
445 int fid, flags; local
    [all...]

Completed in 572 milliseconds

<<21222324252627282930>>