HomeSort by relevance Sort by last modified time
    Searched defs:mode (Results 426 - 450 of 3517) sorted by null

<<11121314151617181920>>

  /bionic/libc/kernel/uapi/linux/
cramfs_fs.h 32 __u32 mode : CRAMFS_MODE_WIDTH, uid : CRAMFS_UID_WIDTH; member in struct:cramfs_inode
ipc.h 29 __kernel_mode_t mode; member in struct:__kernel_legacy_ipc_perm
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_hashlimit.h 38 __u32 mode; member in struct:hashlimit_cfg
56 __u32 mode; member in struct:hashlimit_cfg1
68 __u32 mode; member in struct:hashlimit_cfg2
78 __u32 mode; member in struct:hashlimit_cfg3
xt_policy.h 36 __u8 saddr : 1, daddr : 1, proto : 1, mode : 1, spi : 1, reqid : 1; member in struct:xt_policy_spec
54 __u8 mode; member in struct:xt_policy_elem
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 157 final int mode; local
160 mode = ActionBar.NAVIGATION_MODE_TABS;
163 mode = ActionBar.NAVIGATION_MODE_LIST;
166 mode = ActionBar.NAVIGATION_MODE_STANDARD;
168 bar.setNavigationMode(mode);
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/io/
io_storage.h 47 unsigned int mode; member in struct:io_file_spec
89 int io_seek(uintptr_t handle, io_seek_mode_t mode, ssize_t offset);
  /device/linaro/bootloader/arm-trusted-firmware/lib/semihosting/
semihosting.c 21 unsigned long mode; member in struct:__anon4079
46 long semihosting_file_open(const char *file_name, size_t mode)
51 open_block.mode = mode;
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/
bl31_plat_setup.c 139 /* set big cores arm64 boot mode */
143 /* set LITTLE cores arm64 boot mode */
339 unsigned int mode; local
341 mode = 0;
346 /* Figure out what mode we enter the non-secure world in */
349 mode = MODE_EL2;
352 mode = MODE_EL1;
357 SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
383 unsigned int mode; local
385 mode = 0
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/qemu/
qemu_bl2_setup.c 211 unsigned int mode; local
214 /* Figure out what mode we enter the non-secure world in */
215 mode = EL_IMPLEMENTED(2) ? MODE_EL2 : MODE_EL1;
222 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
  /external/aac/libSBRenc/src/
tran_det.h 124 INT mode; member in struct:__anon14081
  /external/autotest/client/cros/cellular/wardmodem/
at_transceiver.py 18 Enum to specify what mode the ATTransceiver is operating in.
29 modem. Frankly, wardmodem isn't running in this mode.
147 def mode(self): member in class:ATTransceiver
157 @mode.setter
158 def mode(self, value): member in class:ATTransceiver
160 Set mode.
167 'Can not switch to %s mode. No modem port provided.',
170 self._logger.info('Set mode to %s',
259 assert self.mode != ATTransceiverMode.WARDMODEM
261 if self.mode == ATTransceiverMode.PASS_THROUGH
    [all...]
  /external/autotest/client/deps/fakegudev/src/
fakesyscalls.c 196 mode_t mode = S_IRUSR; /* Make compiler happy. Remain restrictive. */ local
212 mode = va_arg (ap, mode_t);
216 pathname, flags, mode, redirection, flags, mode);
217 return realfunc (redirection, flags, mode);
227 creat (const char *pathname, mode_t mode)
240 pathname, mode, redirection, mode);
245 return realfunc (redirection, mode);
  /external/autotest/frontend/client/src/autotest/moblab/wizard/
WizardCard.java 9 import autotest.moblab.wizard.ConfigWizard.Mode;
15 * modes - currently view mode and edit mode. Each mode has its own UI and title. A card is used to
22 private ConfigWizard.Mode currentMode;
27 currentMode = ConfigWizard.Mode.View;
43 * Switches to a mode and update the UI.
45 * @param mode the mode to switch to.
47 * @return the root UI widget for the new mode
141 Mode mode = getMode(); local
    [all...]
  /external/boringssl/src/fipstools/
cavp_aes_test.cc 33 enum Mode {
37 Mode mode; member in struct:__anon14354::TestCtx
58 if (!ctx->has_iv) { // ECB mode
161 if (ctx->mode == TestCtx::kKAT) {
169 } else { // ctx->mode == kMCT
197 enum TestCtx::Mode test_mode;
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliEncoderChannelTest.java 61 final TestMode mode; field in class:BrotliEncoderChannelTest.ChannleTestCase
62 ChannleTestCase(String entryName, TestMode mode) {
63 super("BrotliEncoderChannelTest." + entryName + "." + mode.name());
65 this.mode = mode;
70 BrotliEncoderChannelTest.run(entryName, mode);
74 private static void run(String entryName, TestMode mode) throws Throwable {
86 if ((mode == TestMode.WRITE_CHUNKS) && (original.length <= CHUNK_SIZE)) {
94 switch (mode) {
BrotliOutputStreamTest.java 61 final TestMode mode; field in class:BrotliOutputStreamTest.StreamTestCase
62 StreamTestCase(String entryName, TestMode mode) {
63 super("BrotliOutputStreamTest." + entryName + "." + mode.name());
65 this.mode = mode;
70 BrotliOutputStreamTest.run(entryName, mode);
74 private static void run(String entryName, TestMode mode) throws Throwable {
86 if ((mode == TestMode.WRITE_CHUNKS) && (original.length <= CHUNK_SIZE)) {
93 switch (mode) {
  /external/capstone/bindings/ocaml/
ocaml.c 629 cs_mode mode = 0; local
668 mode |= CS_MODE_LITTLE_ENDIAN;
671 mode |= CS_MODE_ARM;
674 mode |= CS_MODE_16;
677 mode |= CS_MODE_32;
680 mode |= CS_MODE_64;
683 mode |= CS_MODE_THUMB;
686 mode |= CS_MODE_MCLASS;
689 mode |= CS_MODE_V8;
692 mode |= CS_MODE_MICRO
760 cs_mode mode = 0; local
    [all...]
  /external/capstone/
cs_priv.h 35 cs_mode mode; member in struct:cs_struct
  /external/capstone/tests/
test_basic.c 12 cs_mode mode; member in struct:platform
60 cs_mode mode; member in struct:platform
231 err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
test_iter.c 13 cs_mode mode; member in struct:platform
193 err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
  /external/clang/test/Sema/
type-spec-struct-union.c 57 } mode; member in struct:bar_baz
64 z->baz->mode = z->baz->nowrap ? HOP : SQUAT;
  /external/deqp/framework/common/
tcuAstcUtil.cpp 114 ISEMode mode; member in struct:tcu::astc::__anon18072::ISEParams
117 ISEParams (ISEMode mode_, int numBits_) : mode(mode_), numBits(numBits_) {}
122 switch (iseParams.mode)
298 deUint32 tq; //!< Trit or quint value, depending on ISE mode.
302 // Data from an ASTC block's "block mode" part (i.e. bits [0,10]).
325 inline int computeNumWeights (const ASTCBlockMode& mode)
327 return mode.weightGridWidth * mode.weightGridHeight * (mode.isDualPlane ? 2 : 1);
418 ISEMode& m = blockMode.weightISEParams.mode;
    [all...]
  /external/devlib/devlib/instrument/
__init__.py 267 mode = 0 variable in class:Instrument
  /external/e2fsprogs/debugfs/
dump.c 40 * The mode_xlate function translates a linux mode into a native-OS mode_t.
60 mode_t mode = 0; local
65 mode |= mode_table[i].mask;
67 return mode;
  /external/elfutils/lib/
color.c 64 /* Coloring mode. */
101 enum color_enum mode; member in struct:__anon20054
119 color_mode = values[i].mode;

Completed in 1044 milliseconds

<<11121314151617181920>>