Searched refs:mode (Results 401 - 425 of 3488) sorted by relevance

<<11121314151617181920>>

/external/kernel-headers/original/uapi/linux/hsi/
H A Dhsi_char.h51 uint32_t mode; member in struct:hsc_rx_config
57 uint32_t mode; member in struct:hsc_tx_config
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_hashlimit.h28 __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */ member in struct:hashlimit_cfg
52 __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */ member in struct:hashlimit_cfg1
H A Dxt_policy.h24 mode:1, member in struct:xt_policy_spec
57 __u8 mode; member in struct:xt_policy_elem
/external/libchrome/base/test/
H A Dtest_io_thread.cc23 TestIOThread::TestIOThread(Mode mode) argument
25 switch (mode) {
32 CHECK(false) << "Invalid mode";
/external/libchrome/sandbox/linux/syscall_broker/
H A Dbroker_host.cc44 // Hardcode mode to rw------- when creating files.
45 int mode; local
47 mode = 0600;
49 mode = 0;
53 return open(pathname, flags, mode);
55 return syscall(__NR_openat, AT_FDCWD, pathname, flags, mode);
92 // Perform access(2) on |requested_filename| with mode |mode| if allowed by our
96 int mode,
101 requested_filename.c_str(), mode,
94 AccessFileForIPC(const BrokerPolicy& policy, const std::string& requested_filename, int mode, base::Pickle* write_pickle) argument
[all...]
/external/libevent/include/event2/
H A Dthread.h111 /** Acquire an already-allocated lock at 'lock' with mode 'mode'.
113 int (*lock)(unsigned mode, void *lock);
114 /** Release a lock at 'lock' using mode 'mode'. Returns 0 on success,
116 int (*unlock)(unsigned mode, void *lock);
/external/libnl/lib/netfilter/
H A Dlog.c118 struct nfulnl_msg_config_mode mode; local
122 mode.copy_mode = NFULNL_COPY_NONE;
125 mode.copy_mode = NFULNL_COPY_META;
128 mode.copy_mode = NFULNL_COPY_PACKET;
131 mode.copy_range = htonl(nfnl_log_get_copy_range(log));
132 mode._pad = 0;
134 if (nla_put(msg, NFULA_CFG_MODE, sizeof(mode), &mode) < 0)
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h48 const PREDICTION_MODE mode = get_y_mode(mi, block_idx); local
49 return &vp9_scan_orders[tx_size][intra_mode_to_tx_type_lookup[mode]];
/external/libxml2/os400/
H A Dwrappers.h50 extern gzFile _lx_gzopen(const char * path, const char * mode);
51 extern gzFile _lx_gzdopen(int fd, const char * mode);
/external/llvm/test/MC/ARM/
H A Dthumb2-dsp-diag.s9 @ CHECK-ERRORS: error: instruction requires: arm-mode
10 @ CHECK-ERRORS: error: instruction requires: arm-mode
11 @ CHECK-ERRORS: error: instruction requires: arm-mode
12 @ CHECK-ERRORS: error: instruction requires: arm-mode
25 @ CHECK-ERRORS: error: instruction requires: arm-mode
26 @ CHECK-ERRORS: error: instruction requires: arm-mode
27 @ CHECK-ERRORS: error: instruction requires: arm-mode
28 @ CHECK-ERRORS: error: instruction requires: arm-mode
/external/llvm/test/MC/Mips/
H A Dcprestore-warning-unused.s10 # CHECK: :[[@LINE-1]]:3: warning: no .cprestore used in PIC mode
/external/llvm/test/MC/PowerPC/
H A Dppc32-ba.s3 # Check that large immediates in 32bit mode are accepted.
/external/mesa3d/src/mapi/shared-glapi/
H A DSConscript8 def mapi_objects(env, printer, mode):
9 """Return mapi objects built for the given printer and mode."""
34 '--printer %s --mode lib $SOURCE > $TARGET' % (printer),
43 cppdefines = mapi_defines[mode] + [
48 if mode == 'glapi':
59 for s in mapi_sources[mode]:
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_util.c40 GLuint brw_translate_blend_equation( GLenum mode )
42 switch (mode) {
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfTileDescriptionAttribute.cpp63 unsigned char tmp = _value.mode | (_value.roundingMode << 4);
79 _value.mode = LevelMode (tmp & 0x0f);
/external/opencv3/modules/imgproc/perf/opencl/
H A Dperf_3vs4.cpp34 const int mode = get<2>(params); local
41 if (mode == Pure)
45 else if (mode == Split)
65 else if (mode == Convert)
87 const int mode = get<2>(params); local
95 if (mode == Pure)
99 else if (mode == Split)
119 else if (mode == Convert)
/external/protobuf/src/google/protobuf/testing/
H A Dfile.h67 static bool CreateDir(const string& name, int mode);
70 static bool RecursivelyCreateDir(const string& path, int mode);
/external/skia/include/core/
H A DSkXfermode.h119 * returns true and sets (if not null) mode accordingly. Otherwise it
120 * returns false and ignores the mode parameter.
122 virtual bool asMode(Mode* mode) const;
125 * The same as calling xfermode->asMode(mode), except that this also checks
128 static bool AsMode(const SkXfermode*, Mode* mode);
140 static bool IsMode(const SkXfermode* xfer, Mode mode);
142 /** Return an SkXfermode object for the specified mode.
144 static SkXfermode* Create(Mode mode);
147 porter-duff transfer mode.
149 static SkXfermodeProc GetProc(Mode mode);
163 IsMode(const SkXfermode* xfer, Mode* mode) argument
[all...]
/external/skia/src/images/
H A DSkImageDecoder.cpp129 Mode mode) {
138 const Result result = this->onDecode(stream, &tmp, mode);
147 bool SkImageDecoder::DecodeFile(const char file[], SkBitmap* bm, SkColorType pref, Mode mode, argument
154 if (SkImageDecoder::DecodeStream(stream, bm, pref, mode, format)) {
165 Mode mode, Format* format) {
172 return SkImageDecoder::DecodeStream(&stream, bm, pref, mode, format);
176 Mode mode, Format* format) {
184 success = codec->decode(stream, bm, pref, mode) != kFailure;
128 decode(SkStream* stream, SkBitmap* bm, SkColorType pref, Mode mode) argument
164 DecodeMemory(const void* buffer, size_t size, SkBitmap* bm, SkColorType pref, Mode mode, Format* format) argument
175 DecodeStream(SkStreamRewindable* stream, SkBitmap* bm, SkColorType pref, Mode mode, Format* format) argument
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DFileUtils.java50 public static int chmod(File path, int mode) throws Exception { argument
54 return (Integer) setPermissions.invoke(null, path.getAbsolutePath(), mode, -1, -1);
57 public static boolean recursiveChmod(File root, int mode) throws Exception { argument
58 boolean success = chmod(root, mode) == 0;
61 success = recursiveChmod(path, mode);
63 success &= (chmod(path, mode) == 0);
109 public static boolean makeDirectories(File directory, int mode) { argument
122 recursiveChmod(parent, mode);
/external/strace/
H A Dtravis-ci.sh18 ./configure --enable-maintainer-mode ${ENABLE_GCC_WERROR-} ${DISTCHECK_CONFIGURE_FLAGS-}
/external/toybox/toys/lsb/
H A Dmknod.c7 USE_MKNOD(NEWTOY(mknod, "<2>4m(mode):"USE_MKNOD_Z("Z:"), TOYFLAG_BIN|TOYFLAG_UMASK))
42 int mode = TT.m ? string_to_mode(TT.m, 0777) : 0660; local
56 if (mknod(*toys.optargs, mode|modes[type], makedev(major, minor)))
/external/v8/src/
H A Dcode-factory.h46 ConvertReceiverMode mode = ConvertReceiverMode::kAny);
49 ConvertReceiverMode mode = ConvertReceiverMode::kAny);
50 static Callable StoreIC(Isolate* isolate, LanguageMode mode);
51 static Callable StoreICInOptimizedCode(Isolate* isolate, LanguageMode mode,
53 static Callable KeyedStoreIC(Isolate* isolate, LanguageMode mode);
55 Isolate* isolate, LanguageMode mode,
105 ConvertReceiverMode mode = ConvertReceiverMode::kAny);
107 Isolate* isolate, ConvertReceiverMode mode = ConvertReceiverMode::kAny);
/external/v8/test/mjsunit/harmony/
H A Ddefault-parameters-debug.js19 assertEquals('default', exec_state.frame(1).evaluate('mode').value());
48 function f(a = function modeFn(mode) { debugger; return mode; },
/external/valgrind/none/tests/s390x/
H A Dfixbr.c9 /* Test "fixbr" with rounding mode given in insn (m3 field)
46 set_rounding_mode(unsigned mode) argument
48 register unsigned r asm("1") = mode;

Completed in 636 milliseconds

<<11121314151617181920>>